
        :root {
            --primary-green: #009F6B;
            --light-green: #66FF9C;
            --bg-light: #F6FFFB;
            --dark-green: #003A2D;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        
        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 1.5rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--primary-green) !important;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-green) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-green) !important;
        }
        
        .btn-cta {
            background: var(--primary-green);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-cta:hover {
            background: var(--dark-green);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
            padding: 100px 0 80px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--dark-green);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-desc {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dark-green);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary-green);
        }
        
        /* About Section */
        .about-image {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--primary-green);
            color: white;
            padding: 60px 0;
        }
        
        .counter-box {
            text-align: center;
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--light-green);
        }
        
        .counter-label {
            font-size: 1.1rem;
            margin-top: 0.5rem;
        }
        
        /* Vision Mission */
        .vision-mission-card {
            background: var(--bg-light);
            padding: 2rem;
            border-radius: 15px;
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-5px);
        }
        
        /* Work Process */
        .process-step {
            text-align: center;
            padding: 2rem;
            position: relative;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2rem;
        }
        
        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 2rem;
            transition: all 0.3s ease;
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        /* Services Cards */
        .service-card {
            background: var(--bg-light);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-body {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-title {
            font-weight: bold;
            color: var(--dark-green);
            margin-bottom: 1rem;
        }
        
        /* Reviews */
        .review-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
        }
        
        .review-stars {
            color: #ffc107;
            margin-bottom: 1rem;
        }
        
        /* FAQ */
        .accordion-button {
            background: var(--bg-light);
            color: var(--dark-green);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-green);
            color: white;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        /* Contact Section */
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
        }
        
        /* Footer */
        footer {
            background: var(--dark-green);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-links a {
            color: var(--light-green);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .newsletter-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 0.5rem;
            border: none;
            border-radius: 5px;
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 2rem;
            padding-top: 2rem;
            text-align: center;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
