
        :root {
            --primary-green: #0F9D58;
            --light-green: #A8E6CF;
            --pale-green: #F4FFF8;
            --dark-text: #2c3e50;
            --light-gray: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }

        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: white !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 10px 0;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-green) !important;
        }

        .navbar-nav .nav-link {
            color: var(--dark-text) !important;
            margin: 0 15px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-green) !important;
        }

        .cta-btn {
            background: var(--primary-green);
            color: white !important;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            font-weight: 600;
        }

        .cta-btn:hover {
            background: #0a7a44;
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(15, 157, 88, 0.3);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--pale-green) 0%, var(--light-green) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.pexels.com/photos/40568/medical-appointment-medicine-healthcare-40568.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover;
            opacity: 0.1;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size:5rem;
            font-weight: bold;
            color: var(--primary-green);
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--dark-text);
            margin-bottom: 30px;
        }

        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-green);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary-green);
        }

        /* About Section */
        .about-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-content {
            padding: 20px;
        }

        /* Counter Section */
        .counter-section {
            background: var(--primary-green);
            color: white;
            padding: 60px 0;
        }

        .counter-box {
            text-align: center;
            padding: 20px;
        }

        .counter-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--light-green);
        }

        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .counter-label {
            font-size: 1.1rem;
            text-transform: uppercase;
        }

        /* Vision & Mission */
        .vision-mission-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .vision-mission-card:hover {
            transform: translateY(-5px);
        }

        .vision-mission-icon {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }

        /* Book Service Section */
        .book-service-section {
            background: var(--pale-green);
            padding: 60px 0;
        }

        .book-form {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .form-control, .form-select {
            border: 2px solid var(--light-green);
            border-radius: 5px;
            padding: 12px;
            margin-bottom: 15px;
            transition: border-color 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.2rem rgba(15, 157, 88, 0.25);
        }

        /* Process Steps */
        .process-step {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-5px);
        }

        .process-icon {
            width: 80px;
            height: 80px;
            background: var(--light-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--primary-green);
        }

        /* Why Choose Us */
        .feature-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }

        /* Services Section */
        .service-card {
            background: var(--light-green);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .service-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary-green);
            margin-bottom: 15px;
        }

        .service-desc {
            color: var(--dark-text);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        /* Reviews */
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            position: relative;
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 4rem;
            color: var(--light-green);
            opacity: 0.3;
        }

        .review-stars {
            color: #ffc107;
            margin-bottom: 15px;
        }

        .review-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--dark-text);
        }

        .review-author {
            font-weight: bold;
            color: var(--primary-green);
        }

        .review-location {
            color: #6c757d;
            font-size: 0.9rem;
        }

        /* FAQ */
        .accordion-button {
            background: var(--light-green);
            color: var(--dark-text);
            font-weight: 600;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-green);
            color: white;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-green);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-green) 0%, #0a7a44 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .cta-btn-large {
            background: white;
            color: var(--primary-green) !important;
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            font-weight: 600;
        }

        .cta-btn-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        /* Contact Section */
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding: 20px;
            background: var(--light-green);
            border-radius: 10px;
        }

        .contact-info-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: white;
            font-size: 1.2rem;
        }

        /* Footer */
        footer {
            background: var(--dark-text);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-title {
            color: var(--light-green);
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .footer-link {
            display: block;
            color: #b8c2cc;
            text-decoration: none;
            padding: 5px 0;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--light-green);
        }

        .subscribe-form {
            display: flex;
            margin-top: 20px;
        }

        .subscribe-form input {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 5px 0 0 5px;
        }

        .subscribe-form button {
            background: var(--primary-green);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .subscribe-form button:hover {
            background: #0a7a44;
        }

        .copyright {
            border-top: 1px solid #4a5568;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #b8c2cc;
        }

        .copyright a {
            color: var(--light-green);
            text-decoration: none;
        }

        .copyright a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .navbar-nav {
                text-align: center;
                margin-top: 20px;
            }
        }
