/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2c7a7b;
            --secondary-color: #4299e1;
            --accent-color: #81e6d9;
            --text-dark: #2d3748;
            --text-light: #718096;
            --bg-light: #f7fafc;
            --white: #ffffff;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--white);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }

        .navbar-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .navbar-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .navbar-menu a:hover {
            color: var(--primary-color);
        }

        /* Hamburger Menu */
        .navbar-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .navbar-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--primary-color);
            transition: all 0.3s ease;
        }

        .navbar-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .navbar-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .navbar-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; /* Adjust size as needed */
    height: auto;
    opacity: 0;
    filter: brightness(0) invert(1); /* Makes the dark SVG white */
    mix-blend-mode: soft-light; /* Helps it blend with the gradient */
    animation: fadeInSvg 3s ease-out 0.5s forwards;
}

@keyframes fadeInSvg {
    to {
        opacity: 0.4; /* Subtle background presence */
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInContent 1s ease-out 2.5s forwards;
}

@keyframes fadeInContent {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Sections */
        section {
            padding: 5rem 0;
        }

        .section-light {
            background: var(--bg-light);
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--text-light);
            margin-bottom: 3rem;
        }

        /* Content Rows */
        .content-row {
            display: flex;
            align-items: center;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        /*.content-row:last-child {
            margin-bottom: 0;
        }*/

        .content-row.reverse {
            flex-direction: row-reverse;
        }

        .content-text {
            flex: 1;
        }

        .content-text h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .content-text p {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .content-image {
            flex: 1;
            position: relative;
            min-width: 0;
            width: 100%;
        }

        .placeholder-image {
            width: 100%;
            min-height: 300px;
            height: 400px;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.25rem;
            font-weight: 500;
        }

       /* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-light);
}

        /* FAQ Accordion */
        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .faq-question {
            padding: 1.5rem;
            background: var(--white);
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            list-style: none;
            transition: background 0.3s ease;
        }

        .faq-question::-webkit-details-marker {
            display: none;
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary-color);
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        details[open] .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-question:hover {
            background: var(--bg-light);
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem;
        }

        .faq-answer p {
            color: var(--text-dark);
            line-height: 1.8;
        }

        .faw-answer ul {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            position: relative;
        }

        .testimonial-quote {
            font-size: 3rem;
            color: var(--accent-color);
            line-height: 1;
            margin-bottom: 1rem;
        }

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

        .testimonial-author {
            font-weight: 600;
            color: var(--primary-color);
        }

        /* Contact Section */
        .contact-content {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .contact-link {
            min-width: 0;
        }

        .contact-item a {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 1.25rem;
            font-weight: 500;
            transition: color 0.3s ease;
            word-break: break-word;
            display: inline-block;
        }

        .contact-item a:hover {
            color: var(--secondary-color);
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: var(--white);
            text-align: center;
            padding: 2rem;
        }

        footer p {
            opacity: 0.8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .content-row,
            .content-row.reverse {
                flex-direction: column;
                gap: 2rem;
            }

            .content-image {
                width: 100%;
                flex: none;
            }

            /* Mobile Navigation */
            .navbar-toggle {
                display: flex;
            }

            .navbar-menu {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                gap: 0;
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }

            .navbar-menu.active {
                max-height: 400px;
            }

            .navbar-menu li {
                border-bottom: 1px solid var(--bg-light);
            }

            .navbar-menu a {
                display: block;
                padding: 1rem 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .placeholder-image {
                height: 300px;
                min-height: 250px;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            /* Contact section mobile improvements */
            .contact-item {
                flex-direction: column;
                text-align: center;
            }

            .contact-link {
                text-align: center;
            }

            .contact-item a {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .navbar-container {
                padding: 1rem;
            }

            .navbar-brand {
                font-size: 1.25rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            section {
                padding: 3rem 0;
            }

            .placeholder-image {
                height: 250px;
                min-height: 200px;
            }

            .contact-item a {
                font-size: 0.95rem;
            }
        }
