        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        :root {
            --primary-teal: #0e6989;
            --secondary-teal: #1a7ca3;
            --light-teal: #4db6d6;
            --dark-teal: #0a4d66;
            --accent-teal: #2196a8;
            --warm-grey: #4f4f4f;
            --light-grey: #f8f9fa;
            --white: #ffffff;
            --success-teal: #0e6989;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--warm-grey);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        /* Header */
        header {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            color: var(--warm-grey);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .nav-link:hover {
            color: var(--primary-teal);
        }

        .logo {
            height: 65px;
            width: auto;
        }

        .logo img {
            height: 100%;
            width: auto;
        }

        .nav-cta {
            background: var(--primary-teal);
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .nav-cta:hover {
            background: #2980b9;
        }

        /* Hero Section */
        .hero {
            position: relative;
            background-image: 
                linear-gradient(135deg, rgba(45, 156, 219, 0.4), rgba(86, 204, 242, 0.3)),
                url('Images/clinic-interior1.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            color: white;
            padding: 120px 0 80px;
            text-align: left;
            min-height: 70vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(45, 156, 219, 0.3), rgba(86, 204, 242, 0.2));
            z-index: 1;
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
            max-width: 60%;
            text-align: left;
            line-height: 1.1;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            max-width: 60%;
            text-align: left;
        }

        .cta-button {
            background: var(--accent-teal);
            color: white;
            padding: 18px 36px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-block;
            margin: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            background: #e67e22;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .cta-secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .cta-secondary:hover {
            background: white;
            color: var(--primary-teal);
        }

        /* Opening Soon */
        .opening-soon {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            text-align: center;
        }

        .announcement-badge {
            display: inline-block;
            background: var(--accent-teal);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1.5rem;
        }

        .opening-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--warm-grey);
            margin-bottom: 1rem;
            font-family: 'Poppins', sans-serif;
        }

        .opening-subtitle {
            font-size: 1.2rem;
            color: var(--warm-grey);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .opening-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .opening-feature {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .opening-feature:hover {
            transform: translateY(-5px);
        }

        .opening-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 1.5rem;
            color: var(--primary-teal);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .opening-icon svg {
            width: 32px;
            height: 32px;
        }

        .opening-feature h3 {
            color: var(--primary-teal);
            margin-bottom: 1rem;
            font-family: 'Poppins', sans-serif;
        }

        .opening-feature p {
            color: var(--warm-grey);
            line-height: 1.6;
        }

        /* How It Works */
        .how-it-works {
            padding: 80px 0;
            background: var(--light-grey);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--warm-grey);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .step {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: left;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .step-icon {
            background: white;
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            border: 2px solid var(--primary-teal);
        }

        .step-icon svg {
            width: 28px;
            height: 28px;
            fill: var(--primary-teal);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--warm-grey);
            margin-top: -2.7rem;
            margin-bottom: 3rem;
            opacity: 0.8;
        }

        /* What's Included */
        .whats-included {
            padding: 80px 0;
        }

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

        .benefit-item {
            display: flex;
            align-items: flex-start;
            padding: 1rem;
        }

        .check-icon {
            background: var(--success-teal);
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
            font-size: 14px;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 80px 0;
            background: var(--light-grey);
        }

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

        .feature {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .feature h3 {
            color: var(--primary-teal);
            margin-bottom: 1rem;
        }

        /* Pricing */
        .pricing {
            padding: 80px 0;
        }

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

        .pricing-card {
            background: white;
            border: 2px solid #e1e8ed;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            border-color: var(--primary-teal);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .pricing-card.featured {
            border-color: var(--primary-teal);
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-teal);
            margin: 1rem 0;
        }

        .price span {
            font-size: 1rem;
            color: var(--warm-grey);
        }

        /* FAQ */
        .faq {
            padding: 80px 0;
        }

        .faq-item {
            margin-bottom: 1rem;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            background: white;
            color: var(--warm-grey);
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            font-weight: 500;
            font-size: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.2s ease;
            border: none;
            width: 100%;
            text-align: left;
        }

        .faq-question:hover {
            background: #f9fafb;
        }

        .faq-icon {
            font-size: 1.25rem;
            font-weight: 300;
            transition: transform 0.2s ease;
            color: #9ca3af;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 1.5rem 1.25rem 1.5rem;
            background: white;
            color: #6b7280;
            line-height: 1.6;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
            animation: fadeIn 0.2s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .faq-section-header {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-teal);
            margin: 2.5rem 0 1.5rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light-grey);
            font-family: 'Poppins', sans-serif;
        }

        .faq-section-header:first-of-type {
            margin-top: 1rem;
        }

        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

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

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero {
                background-attachment: scroll; /* Fixed backgrounds can cause issues on mobile */
                min-height: 60vh;
                padding: 100px 0 60px;
            }

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

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

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

            .pricing-card.featured {
                transform: none;
            }

            .nav-cta {
                padding: 8px 16px;
                font-size: 0.9rem;
            }

            .nav-links {
                display: none;
            }

            .nav-mobile {
                display: flex;
                gap: 1rem;
                align-items: center;
            }
        }