
        :root {
            --primary-dark: #15803D;
            --primary: #16A34A;
            --text-dark: #1F2937;
            --bg-light: #D1FAE5;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
        }
        
        .navbar {
            background-color: transparent !important;
            padding: 15px 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-dark) !important;
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary) !important;
        }
        
        .btn-primary-custom {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--primary-dark);
            color: white;
        }
        
        .hero-section {
            background: linear-gradient(rgba(21, 128, 61, 0.8), rgba(21, 128, 61, 0.8)), url('https://www.shutterstock.com/shutterstock/videos/3499792831/thumb/1.jpg?ip=x480');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        
        .hero-title {
            font-size: 5rem;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .section-title {
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .about-img {
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
            background-color: var(--bg-light);
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-dark);
        }
        
        .counter-label {
            font-size: 1rem;
            color: var(--text-dark);
        }
        
        .vision-mission-box {
            background-color: var(--bg-light);
            padding: 30px;
            border-radius: 8px;
            height: 100%;
        }
        
        .feature-box {
            text-align: center;
            padding: 20px;
            transition: transform 0.3s;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .service-card {
            background-color: var(--bg-light);
            border-radius: 8px;
            overflow: hidden;
            height: 100%;
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-img {
            height: 300px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-body {
            padding: 20px;
        }
        
        .service-title {
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }
        
        .review-card {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
            height: 100%;
        }
        
        .review-text {
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .review-author {
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        .review-location {
            font-size: 0.9rem;
            color: #6b7280;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--bg-light);
            color: var(--primary-dark);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary);
        }
        
        .cta-section {
            background-color: var(--primary-dark);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .contact-info-box {
            background-color: var(--bg-light);
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 20px;
            height: 100%;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary);
            margin-right: 15px;
        }
        
        .footer {
            background-color: var(--text-dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-title {
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-link {
            color: #d1d5db;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        
        .footer-link:hover {
            color: var(--bg-light);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 15px;
        }
        
        .newsletter-input {
            flex-grow: 1;
            padding: 10px;
            border: none;
            border-radius: 4px 0 0 4px;
        }
        
        .newsletter-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 15px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }
        
        .copyright {
            border-top: 1px solid #4b5563;
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: #9ca3af;
        }
        
        .copyright-link {
            color: #d1d5db;
            text-decoration: none;
            margin: 0 10px;
        }
        
        .copyright-link:hover {
            color: var(--bg-light);
        }
