
        /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary-color: #2A9D8F; /* Teal/Healing */
            --secondary-color: #264653; /* Deep Blue/Trust */
            --accent-color: #E9C46A; /* Gold/Warmth */
            --light-bg: #F8F9FA;
            --white: #ffffff;
            --text-dark: #333333;
            --text-light: #666666;
            --success: #2ecc71;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --radius: 8px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--light-bg);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .text-center {
            text-align: center;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }

        .btn-outline:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }

        .section-title {
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* --- HEADER --- */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            color: var(--primary-color);
            font-size: 1.8rem;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            font-weight: 500;
            color: var(--secondary-color);
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--primary-color);
        }

        .hamburger {
            display: none;
            font-size: 1.5rem;
            color: var(--secondary-color);
            cursor: pointer;
        }

        /* --- HERO SECTION --- */
        .hero {
            background: linear-gradient(rgba(38, 70, 83, 0.8), rgba(38, 70, 83, 0.8)), url('../img/hero.webp') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            color: var(--white);
            text-align: center;
            margin-top: -80px; /* Offset header */
            padding-top: 80px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* --- ABOUT US --- */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-img img {
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .feature-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .feature-list i {
            color: var(--primary-color);
        }

        /* --- SERVICES --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(42, 157, 143, 0.1);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
        }

        .service-card h3 {
            font-size: 1.25rem;
        }

        /* --- WHY CHOOSE US --- */
        .why-us {
            background-color: var(--secondary-color);
            color: var(--white);
        }

        .why-us .section-title::after {
            background-color: var(--primary-color);
        }
        
        .why-us h2 {
            color: var(--white);
        }

        .choose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .choose-item {
            text-align: center;
        }

        .choose-item i {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        .choose-item h3 {
            color: var(--white);
            margin-bottom: 10px;
        }

        /* --- INSURANCE PLANS --- */
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .plan-card {
            background: var(--white);
            border: 1px solid #eee;
            border-radius: var(--radius);
            padding: 40px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .plan-card.featured {
            border: 2px solid var(--primary-color);
            transform: scale(1.05);
            z-index: 1;
        }
        
        .plan-card.featured::before {
            content: 'Best Value';
            background-color: var(--primary-color);
            color: var(--white);
            padding: 5px 30px;
            position: absolute;
            top: 20px;
            right: -30px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 600;
        }

        .plan-price {
            font-size: 3rem;
            color: var(--secondary-color);
            font-weight: 700;
            margin: 20px 0;
        }

        .plan-price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-light);
        }

        .plan-features li {
            margin-bottom: 10px;
            color: var(--text-light);
        }

        /* --- BOOK APPOINTMENT & CONTACT --- */
        .appointment-wrapper {
            background-color: var(--white);
            box-shadow: var(--shadow);
            border-radius: var(--radius);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
        }

        .contact-info {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-info h3 {
            color: var(--white);
            margin-bottom: 30px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }

        .info-item i {
            font-size: 1.2rem;
            margin-top: 5px;
        }

        .appointment-form {
            padding: 50px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        /* --- TESTIMONIALS --- */
        .testimonials {
            background-color: #eefcfb;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .client-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .stars {
            color: var(--accent-color);
            margin-bottom: 15px;
        }

        /* --- NEWSLETTER --- */
        .newsletter {
            background-color: var(--secondary-color);
            padding: 60px 0;
            color: var(--white);
        }

        .newsletter h2 {
            color: var(--white);
            margin-bottom: 10px;
        }

        .newsletter-form {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .newsletter-form .form-control {
            background-color: #f4f4f4;
            border: none;
        }
        
        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        .newsletter-btn {
            width: 100%;
            margin-top: 20px;
            background-color: var(--accent-color);
            color: var(--secondary-color);
        }
        
        .newsletter-btn:hover {
            background-color: #d4b05a;
        }

        /* --- FOOTER --- */
        footer {
            background-color: #1a313a;
            color: #ddd;
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
        }
        
        .modal-trigger {
            cursor: pointer;
            color: var(--primary-color);
        }

        /* --- MODALS --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--white);
            width: 90%;
            max-width: 600px;
            padding: 40px;
            border-radius: var(--radius);
            position: relative;
            max-height: 80vh;
            overflow-y: auto;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-light);
        }

        .modal-body h2 {
            color: var(--primary-color);
        }
        
        .modal-body p, .modal-body ul {
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        /* --- TOAST NOTIFICATION --- */
        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--white);
            color: var(--text-dark);
            padding: 20px;
            border-radius: var(--radius);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 3000;
            transform: translateY(150%);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-left: 5px solid var(--success);
        }

        .toast.show {
            transform: translateY(0);
        }

        .toast i {
            color: var(--success);
            font-size: 1.5rem;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 991px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            .appointment-wrapper {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .plan-card.featured {
                transform: none;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 70%;
                height: calc(100vh - 80px);
                background-color: var(--white);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: var(--transition);
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .hamburger {
                display: block;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .hero {
                padding-top: 100px;
            }
        }
    