/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-yellow: #DDFF00;
    --black: #000000;
    --white: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    line-height: 1.2;
    overflow-x: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/assets/images/beach-couple.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.serving-you-page {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/assets/images/beach-sunset-couple.jpg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    padding-left: 2rem;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-right: 1rem;
    z-index: 100;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Hero section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-right: 0;
    padding-top: 4vh;
    background: transparent;
    margin-bottom: 15vh;
}

.hero-content {
    max-width: 800px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: right;
    margin-top: 0;
    margin-left: auto;
    width: 100%;
    position: relative;
    right: -15rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 3rem;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: right;
    white-space: nowrap;
    margin-right: 0;
}

.highlight {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    display: block;
    text-align: right;
    margin-right: 0;
}

.cta-button {
    display: inline-block;
    color: var(--black);
    background-color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-shadow: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: auto;
    min-width: 150px;
    text-align: center;
}

.cta-button:hover {
    background-color: var(--neon-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        background-size: auto 100vh;
        background-position: 15% center;
        background-attachment: fixed;
        min-height: 100vh;
        height: auto;
        overflow-y: auto;
    }

    .logo {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    .hero {
        padding-right: 1rem;
        padding-left: 1rem;
        padding-top: 4vh;
        justify-content: flex-end;
        align-items: flex-start;
        margin-bottom: 0;
        min-height: 90vh;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0;
        margin-top: 0;
        right: 0;
        text-align: right;
        width: 100%;
    }
    
    h1 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: 2rem;
        white-space: normal;
        text-align: right;
    }

    .highlight {
        text-align: right;
    }

    .newsletter-signup {
        margin: 14rem 1rem 2rem;
        padding: 1.5rem;
        right: 0;
        width: calc(100% - 2rem);
        background: rgba(255, 255, 255, 0.2);
        max-width: none;
        position: relative;
        z-index: 2;
    }

    .formkit-form[data-uid="1cdfac3be6"] .formkit-header h2 {
        font-size: 1.3rem !important;
        text-align: right !important;
    }

    .formkit-form[data-uid="1cdfac3be6"] .formkit-subheader {
        text-align: right !important;
    }

    .formkit-form[data-uid="1cdfac3be6"] .formkit-subheader p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }

    .formkit-form[data-uid="1cdfac3be6"] .formkit-fields {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .formkit-form[data-uid="1cdfac3be6"] .formkit-input {
        padding: 0.875rem !important;
    }

    .formkit-form[data-uid="1cdfac3be6"] .formkit-submit {
        width: 100% !important;
        padding: 0.875rem !important;
    }

    .formkit-form[data-uid="1cdfac3be6"] .formkit-guarantee {
        text-align: right !important;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        display: inline-block;
        text-align: center;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeIn 1s ease-out forwards;
}

header {
    background-color: var(--secondary-background);
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
}

nav a:hover {
    color: var(--primary-color);
}

main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

h2 {
    font-size: 2rem;
    margin: 1.5rem 0 1rem;
}

p {
    margin-bottom: 1rem;
}

.blog-list {
    display: grid;
    gap: 2rem;
}

.blog-preview {
    padding: 1.5rem;
    background-color: var(--secondary-background);
    border-radius: 0.5rem;
}

.blog-preview h2 {
    margin-top: 0;
}

.blog-preview time {
    color: #6b7280;
    font-size: 0.875rem;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--secondary-background);
    margin-top: 4rem;
}

/* Featured section with new design */
.featured-in {
    background-color: transparent;
    padding: 0;
    position: relative;
    width: 100%;
    margin: 0 0 1.5rem 0;
}

.featured-in .container {
    background: rgba(242, 235, 230, 0.95);
    position: relative;
    z-index: 2;
    border-radius: 24px;
    padding: 1.5rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: none;
}

.featured-in h2 {
    color: var(--black);
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

/* Content sections */
.content-section {
    padding: 0;
    background: transparent;
    position: relative;
    width: 100%;
    margin: 0 0 1.5rem 0;
}

.content-section .container {
    background: rgba(242, 235, 230, 0.95);
    position: relative;
    z-index: 2;
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 3rem;
}

.content-section .text-content {
    flex: 1;
    color: var(--black);
}

.content-section .text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.content-section .text-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.content-section .media-content {
    flex: 1;
    border-radius: 50%;
    overflow: hidden;
    max-width: 400px;
    max-height: 400px;
    aspect-ratio: 1;
}

.content-section .media-content img,
.content-section .media-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.content-section.reverse .text-content {
    max-width: 400px;
    margin-left: auto;
}

.content-section.reverse .media-content {
    border-radius: 0;
    max-width: none;
    max-height: none;
    aspect-ratio: auto;
}

.content-section.reverse .media-content img {
    border-radius: 0;
    object-fit: contain;
}

@media (max-width: 768px) {
    .featured-in {
        padding: 0;
        margin: 0 1rem 1.5rem 1rem;
    }

    .featured-in .container {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .content-section.reverse .text-content {
        max-width: 100%;
        margin: 0;
    }

    .content-section .text-content h2 {
        font-size: 2rem;
    }

    .content-section .text-content p {
        font-size: 1.1rem;
    }

    .content-section .media-content {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
}

.logo-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    white-space: nowrap;
    padding-bottom: 20px;
}

.logo-grid::-webkit-scrollbar {
    display: none;
}

.logo-grid-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
    color: var(--black);
}

.scroll-button:hover {
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}

.featured-logo {
    height: 45px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: brightness(0);
    flex-shrink: 0;
}

.featured-logo.larger {
    height: 55px;
}

.featured-logo:hover {
    opacity: 1;
    filter: brightness(0);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .featured-in .container {
        margin: 0;
        padding: 2rem 1rem;
    }
    
    .logo-grid {
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .featured-logo {
        height: 35px;
    }
    
    .featured-logo.larger {
        height: 45px;
    }
    
    .scroll-button {
        width: 32px;
        height: 32px;
    }
}

.newsletter-signup {
    margin-top: 10.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 700px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    right: +0rem;
}

/* ConvertKit Form Styles */
.formkit-form[data-uid="1cdfac3be6"] {
    border: none !important;
    background: transparent !important;
    max-width: 100% !important;
}

.formkit-form[data-uid="1cdfac3be6"] .formkit-header {
    margin: 0 0 0.5rem 0 !important;
    text-align: left !important;
}

.formkit-form[data-uid="1cdfac3be6"] .formkit-header h2 {
    color: var(--white) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}

.formkit-form[data-uid="1cdfac3be6"] .formkit-subheader {
    margin: 0 0 1rem 0 !important;
    text-align: left !important;
}

.formkit-form[data-uid="1cdfac3be6"] .formkit-subheader p {
    color: var(--white) !important;
    opacity: 0.8 !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}

.formkit-form[data-uid="1cdfac3be6"] .formkit-input {
    width: 100% !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--white) !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    border-radius: 4px !important;
    font-family: 'Poppins', sans-serif !important;
}

.formkit-form[data-uid="1cdfac3be6"] .formkit-input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.formkit-form[data-uid="1cdfac3be6"] .formkit-fields {
    display: flex !important;
    gap: 1rem !important;
    margin: 0 !important;
}

.formkit-form[data-uid="1cdfac3be6"] .formkit-field {
    flex: 2 !important;
    margin: 0 !important;
}

.formkit-form[data-uid="1cdfac3be6"] .formkit-submit {
    flex: 1 !important;
    background: var(--neon-yellow) !important;
    color: var(--black) !important;
    border: none !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: 'Poppins', sans-serif !important;
    margin: 0 !important;
    min-width: auto !important;
}

.formkit-form[data-uid="1cdfac3be6"] .formkit-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.formkit-form[data-uid="1cdfac3be6"] .formkit-guarantee {
    color: var(--white) !important;
    opacity: 0.7 !important;
    font-size: 0.8rem !important;
    margin-top: 0.5rem !important;
    text-align: left !important;
}

.formkit-form[data-uid="1cdfac3be6"] .formkit-powered-by-convertkit-container {
    margin-top: 0.5rem !important;
    opacity: 0.5 !important;
}

.formkit-form[data-uid="1cdfac3be6"] .formkit-alert {
    color: var(--white) !important;
    margin: 1rem 0 !important;
    padding: 0.5rem !important;
    border-radius: 4px !important;
    text-align: left !important;
    border: none !important;
    background: transparent !important;
}

.formkit-form[data-uid="1cdfac3be6"] .formkit-alert-error {
    color: #ff5757 !important;
}

.formkit-form[data-uid="1cdfac3be6"] .formkit-alert-success {
    color: #57ff57 !important;
}

@media (max-width: 768px) {
    .newsletter-signup {
        margin: 14rem 1rem 2rem;
        padding: 1.5rem;
    }
    
    .formkit-form[data-uid="1cdfac3be6"] .formkit-fields {
        flex-direction: column !important;
    }
    
    .formkit-form[data-uid="1cdfac3be6"] .formkit-submit {
        width: 100% !important;
    }
    
    .formkit-form[data-uid="1cdfac3be6"] .formkit-header h2 {
        font-size: 1.5rem !important;
    }
    
    .formkit-form[data-uid="1cdfac3be6"] .formkit-subheader p {
        font-size: 0.9rem !important;
    }
}

#convertkit-form-loading {
    color: var(--white);
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Testimonial Overlay */
.testimonial-overlay {
    position: relative;
    max-width: 900px;
    margin: -10vh auto 0;
    padding: 2rem;
    background: transparent;
    border-radius: 12px;
    z-index: 2;
}

.testimonial-overlay blockquote {
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 500;
    text-align: center;
    color: var(--black);
    text-shadow: none;
}

.testimonial-overlay cite {
    display: block;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-style: normal;
    text-align: center;
    opacity: 0.9;
    color: var(--black);
}

@media (max-width: 768px) {
    .testimonial-overlay {
        margin: -8vh 1rem 0;
        padding: 1.5rem;
    }
    
    .testimonial-overlay blockquote {
        font-size: 1.2rem;
    }
    
    .testimonial-overlay cite {
        font-size: 1rem;
    }
}

/* Tablet/iPad Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    body {
        background-size: cover;
        background-position: 25% center;
        background-attachment: fixed;
    }

    .hero {
        min-height: 85vh;
        padding-right: 2rem;
        padding-top: 4vh;
        justify-content: flex-end;
    }

    .hero-content {
        max-width: 100%;
        right: -2rem;
        padding-left: 2rem;
        text-align: right;
        width: 65%;
    }

    h1 {
        font-size: clamp(2.5rem, 5vw, 3rem);
        white-space: normal;
        margin-bottom: 2.5rem;
        text-align: right;
    }

    .highlight {
        text-align: right;
    }

    .newsletter-signup {
        margin: 12rem 2rem 3rem auto;
        max-width: 500px;
        padding: 2rem;
        right: -2rem;
    }

    .cta-button {
        margin-right: 0;
    }

    .testimonial-overlay {
        margin: -12vh auto 0;
        padding: 2rem;
        max-width: 800px;
    }

    .testimonial-overlay blockquote {
        font-size: 1.3rem;
    }

    .featured-in .container {
        padding: 2.5rem;
    }

    .logo-grid {
        gap: 3.5rem;
    }

    .featured-logo {
        height: 40px;
    }

    .featured-logo.larger {
        height: 50px;
    }
}

/* Serving You Page Styles */
.serving-you-content {
    max-width: 1200px;
    margin: 8rem auto 4rem;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Override margin for homepage service cards */
body:not(.serving-you-page) .serving-you-content {
    margin: 0 auto 1.5rem;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 3rem;
    background: rgba(242, 235, 230, 0.95);
    border-radius: 12px;
    color: var(--black);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.service-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-card h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--black);
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.service-intro {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 500;
    color: var(--black);
    opacity: 0.9;
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.service-features li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: var(--black);
    font-size: 1.1rem;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--black);
}

.service-card .contact-button {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
}

.service-card .contact-button:hover {
    background-color: var(--neon-yellow);
    color: var(--black);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .serving-you-content {
        margin: 6rem 1rem 2rem;
        padding: 0;
        gap: 1.5rem;
        flex-direction: column;
        align-items: stretch;
        width: auto;
    }

    .service-card {
        width: 100%;
        max-width: none;
        min-width: 0;
        margin: 0;
        padding: 2.5rem;
        background: rgba(255, 250, 248, 0.98);
        border-radius: 24px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .service-card h2 {
        font-size: 2rem;
        font-weight: 700;
        text-align: left;
        padding: 0;
        margin: 0;
        line-height: 1.2;
    }

    .service-intro {
        font-size: 1.25rem;
        text-align: left;
        padding: 0;
        line-height: 1.4;
        margin: 0.5rem 0 1rem;
    }

    .service-features {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .service-features li {
        font-size: 1.1rem;
        text-align: left;
        padding-left: 1.2rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }

    .service-card .contact-button {
        width: 100%;
        text-align: center;
        margin-top: 1.5rem;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        background-color: var(--black);
        color: var(--white);
        text-decoration: none;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .service-card .contact-button:hover {
        background-color: var(--neon-yellow);
        color: var(--black);
        transform: translateY(-2px);
    }

    /* Testimonials section mobile adjustments */
    .testimonials {
        padding: 4rem 1rem 2rem;
        margin: 2rem auto 0;
        width: 100%;
    }

    .testimonials .container {
        background: rgba(242, 235, 230, 0.95);
        padding: 3rem 1rem 2rem;
        border-radius: 12px;
        margin: 0;
        width: calc(100% - 2rem);
    }

    .testimonial-grid-wrapper {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .testimonial-grid {
        display: flex;
        padding: 0;
        margin: 0;
        width: 100%;
        overflow-x: hidden;
        scroll-snap-type: x mandatory;
        gap: 1rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
        width: 100%;
        padding: 1.5rem;
        margin: 0;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        scroll-snap-align: center;
    }

    .scroll-button {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.1);
        border: none;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        color: var(--black);
    }

    .scroll-left {
        left: 0;
    }

    .scroll-right {
        right: 0;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 0;
    background: transparent;
    position: relative;
    width: 100%;
    margin: 0 0 1.5rem 0;
}

.testimonials .container {
    background: rgba(242, 235, 230, 0.95);
    position: relative;
    z-index: 2;
    border-radius: 24px;
    padding: 3rem 2rem;
    margin: 0 auto;
    max-width: 1440px;
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -60px;
    left: calc(50% - 380px);
    transform: translateX(-50%);
    border: 4px solid rgba(242, 235, 230, 0.95);
    z-index: 3;
    will-change: transform;
    backface-visibility: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.testimonials h2 {
    color: var(--black);
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    font-family: 'Poppins', sans-serif;
}

.testimonial-grid-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.testimonial-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 450px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--black);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--black);
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
}

.testimonial-role {
    font-size: 0.95rem;
    color: var(--black);
    opacity: 0.8;
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
    color: var(--black);
}

.scroll-button:hover {
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 0;
        margin: 0 1rem 1.5rem 1rem;
        width: auto;
    }

    .testimonials .container {
        padding: 3rem 1.5rem 2rem;
        border-radius: 24px;
        margin: 0;
        width: 100%;
    }

    .testimonial-image {
        width: 120px;
        height: 120px;
        top: -60px;
        left: calc(50% - 190px);
        transform: translateX(-50%);
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .testimonial-author {
        font-size: 1.1rem;
        text-align: center;
        width: 100%;
        margin-bottom: 0.25rem;
        font-weight: 600;
    }

    .testimonial-role {
        font-size: 0.95rem;
        text-align: center;
        width: 100%;
        opacity: 0.8;
    }

    .scroll-button {
        display: none;
    }

    .testimonials h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        text-align: center;
    }
}

/* Tablet/iPad Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    body {
        background-size: cover;
        background-position: 25% center;
        background-attachment: fixed;
    }

    .hero {
        min-height: 85vh;
        padding-right: 2rem;
        padding-top: 4vh;
        justify-content: flex-end;
    }

    .hero-content {
        max-width: 100%;
        right: -2rem;
        padding-left: 2rem;
        text-align: right;
        width: 65%;
    }

    h1 {
        font-size: clamp(2.5rem, 5vw, 3rem);
        white-space: normal;
        margin-bottom: 2.5rem;
        text-align: right;
    }

    .highlight {
        text-align: right;
    }

    .newsletter-signup {
        margin: 12rem 2rem 3rem auto;
        max-width: 500px;
        padding: 2rem;
        right: -2rem;
    }

    .cta-button {
        margin-right: 0;
    }

    .testimonial-overlay {
        margin: -12vh auto 0;
        padding: 2rem;
        max-width: 800px;
    }

    .testimonial-overlay blockquote {
        font-size: 1.3rem;
    }

    .featured-in .container {
        padding: 2.5rem;
    }

    .logo-grid {
        gap: 3.5rem;
    }

    .featured-logo {
        height: 40px;
    }

    .featured-logo.larger {
        height: 50px;
    }
}

/* Help section */
.help-section {
    padding: 0;
    background: transparent;
    position: relative;
    width: 100%;
    margin: 0 0 1.5rem 0;
}

.help-section .container {
    background: rgba(242, 235, 230, 0.95);
    position: relative;
    z-index: 2;
    border-radius: 24px;
    padding: 1.5rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.help-section .cta-button {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    background-color: var(--black);
    color: var(--white);
}

.help-section .cta-button:hover {
    background-color: var(--neon-yellow);
    color: var(--black);
}

@media (max-width: 768px) {
    .help-section {
        margin: 0 1rem 1.5rem 1rem;
    }
    
    .help-section .container {
        padding: 1.2rem;
    }
    
    .help-section .cta-button {
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

/* Testimonials Section */
.testimonial-grid-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.testimonial-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 450px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--black);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--black);
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
}

.testimonial-role {
    font-size: 0.95rem;
    color: var(--black);
    opacity: 0.8;
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
    color: var(--black);
}

.scroll-button:hover {
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 0;
        margin: 0 1rem 1.5rem 1rem;
        width: auto;
    }

    .testimonials .container {
        padding: 3rem 1.5rem 2rem;
        border-radius: 24px;
        margin: 0;
        width: 100%;
    }

    .testimonial-image {
        width: 120px;
        height: 120px;
        top: -60px;
        left: calc(50% - 190px);
        transform: translateX(-50%);
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .testimonial-author {
        font-size: 1.1rem;
        text-align: center;
        width: 100%;
        margin-bottom: 0.25rem;
        font-weight: 600;
    }

    .testimonial-role {
        font-size: 0.95rem;
        text-align: center;
        width: 100%;
        opacity: 0.8;
    }

    .scroll-button {
        display: none;
    }

    .testimonials h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        text-align: center;
    }
}

/* Tablet/iPad Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    body {
        background-size: cover;
        background-position: 25% center;
        background-attachment: fixed;
    }

    .hero {
        min-height: 85vh;
        padding-right: 2rem;
        padding-top: 4vh;
        justify-content: flex-end;
    }

    .hero-content {
        max-width: 100%;
        right: -2rem;
        padding-left: 2rem;
        text-align: right;
        width: 65%;
    }

    h1 {
        font-size: clamp(2.5rem, 5vw, 3rem);
        white-space: normal;
        margin-bottom: 2.5rem;
        text-align: right;
    }

    .highlight {
        text-align: right;
    }

    .newsletter-signup {
        margin: 12rem 2rem 3rem auto;
        max-width: 500px;
        padding: 2rem;
        right: -2rem;
    }

    .cta-button {
        margin-right: 0;
    }

    .testimonial-overlay {
        margin: -12vh auto 0;
        padding: 2rem;
        max-width: 800px;
    }

    .testimonial-overlay blockquote {
        font-size: 1.3rem;
    }

    .featured-in .container {
        padding: 2.5rem;
    }

    .logo-grid {
        gap: 3.5rem;
    }

    .featured-logo {
        height: 40px;
    }

    .featured-logo.larger {
        height: 50px;
    }
}

/* Footer Styles */
.site-footer {
    background: rgba(242, 235, 230, 0.95);
    padding: 3rem 0;
    margin-top: auto;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: var(--black);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--black);
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.2);
}

.social-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-credits {
    color: var(--black);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-credits a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
}

.footer-credits a:hover {
    opacity: 0.7;
}

.footer-policies {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
}

.footer-policies a {
    color: var(--black);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-policies a:hover {
    opacity: 1;
}

.footer-policies .separator {
    color: var(--black);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .footer-bottom {
        gap: 1.5rem;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background: transparent;
}

.contact-form-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    margin: 0 auto;
    background: rgba(242, 235, 230, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    width: 100%;
    max-width: none;
}

.contact-form .formkit-header h2 {
    color: var(--black) !important;
    font-size: 2rem !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
}

.contact-form .formkit-subheader {
    text-align: center !important;
    margin-bottom: 2rem !important;
}

.contact-form .formkit-subheader p {
    color: var(--black) !important;
    font-size: 1.1rem !important;
    opacity: 0.9 !important;
}

.contact-form .formkit-fields {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
}

.contact-form .formkit-input {
    width: 100% !important;
    padding: 1rem !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    color: var(--black) !important;
    font-size: 1rem !important;
    font-family: 'Poppins', sans-serif !important;
}

.contact-form textarea.formkit-input {
    min-height: 120px !important;
    resize: vertical !important;
}

.contact-form .formkit-submit {
    width: 100% !important;
    padding: 1rem !important;
    background: var(--black) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 1rem !important;
}

.contact-form .formkit-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

.contact-form .formkit-guarantee {
    text-align: center !important;
    color: var(--black) !important;
    opacity: 0.7 !important;
    font-size: 0.9rem !important;
    margin-top: 1.5rem !important;
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 2rem 1rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-form .formkit-header h2 {
        font-size: 1.75rem !important;
    }

    .contact-form .formkit-subheader p {
        font-size: 1rem !important;
    }
} 

/* Video Showcase Section */
.video-showcase {
    padding: 4rem 0;
    background: transparent;
}

.video-showcase .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--black);
    font-family: 'Poppins', sans-serif;
}

.video-carousel {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.video-item {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: rgba(242, 235, 230, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.video-item:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
    text-align: center;
}

.video-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.video-info p {
    font-size: 1rem;
    color: var(--black);
    opacity: 0.8;
    margin: 0;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.video-modal iframe {
    border: none;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .video-showcase {
        padding: 2rem 0;
    }

    .video-showcase .container {
        padding: 0 1rem;
    }

    .video-showcase h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .video-carousel {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .video-item {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }

    .video-thumbnail {
        height: 200px;
    }

    .video-info {
        padding: 1rem;
    }

    .video-info h3 {
        font-size: 1.25rem;
    }
} 

/* Privacy Policy Page Styles */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.policy-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
    text-align: center;
}

.policy-content .last-updated {
    text-align: center;
    color: var(--black);
    opacity: 0.7;
    margin-bottom: 3rem;
    font-style: italic;
}

.policy-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: var(--black);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.policy-content p {
    margin-bottom: 1rem;
    color: var(--black);
}

.policy-content ul {
    margin: 1rem 0 1rem 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    color: var(--black);
}

.policy-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Disclaimer Page Specific Styles */
.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: left;
}

.disclaimer-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--black);
    text-align: center;
}

.disclaimer-content p {
    margin-bottom: 1.5rem;
    color: var(--black);
    text-align: left;
}

.disclaimer-content ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.disclaimer-content li {
    margin-bottom: 0.75rem;
    color: var(--black);
    text-align: left;
}

/* Force override any conflicting styles */
body .disclaimer-content {
    max-width: 800px !important;
    margin: 0 auto !important;
    text-align: left !important;
    padding: 0 2rem !important;
}

body .disclaimer-content p {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body .disclaimer-content ul {
    text-align: left !important;
    margin-left: 2rem !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body .disclaimer-content li {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Override content-section flexbox for disclaimer page */
body .content-section .disclaimer-content {
    flex: none !important;
    width: 100% !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important; /* Added this for consistency */
}

/* Make main H1 headings smaller on policy and disclaimer pages */
body .content-section h1 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    color: var(--black) !important;
    text-align: center !important;
}

/* Make H2 section headings smaller too */
body .content-section h2 {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin: 1.5rem 0 1rem 0 !important;
    color: var(--black) !important;
}

body .content-section p { /* Added this for consistency */
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Override the container flexbox layout for disclaimer */
body .content-section:has(.disclaimer-content) .container {
    display: block !important;
    flex-direction: unset !important;
    align-items: unset !important;
    justify-content: unset !important;
    gap: unset !important;
}

/* Override the container flexbox layout for privacy policy */
body .content-section:has(.policy-content) .container {
    display: block !important;
    flex-direction: unset !important;
    align-items: unset !important;
    justify-content: unset !important;
    gap: unset !important;
}

/* Ensure policy content displays properly */
body .content-section .policy-content {
    flex: none !important;
    width: 100% !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

@media (max-width: 768px) {
    .policy-content h1,
    .disclaimer-content h1 {
        font-size: 2rem;
    }
    
    .policy-content h2 {
        font-size: 1.25rem;
    }
    
    .policy-content,
    .disclaimer-content {
        padding: 0 1rem;
    }
} 