        :root {
            --dark-green: #123d2b;
            --green: #2e7d32;
        }

        .navbar {
            background-color: var(--dark-green);
            padding-top: 10px;
            padding-bottom: 10px;
        }
        body {
            font-family: Arial, sans-serif;
        }

        .hero {
            padding: 130px 0;
            background: linear-gradient(
                rgba(18, 61, 43, 0.85),
                rgba(18, 61, 43, 0.85)
                ),
            url("images/hero.jpg") center/cover;
            color: white;
        }

        .hero-label {
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .btn-primary {
            background-color: var(--green);
            border: none;
            border-radius: 8px;
            padding: 10px 20px;
        }

        .section {
            padding: 60px 0;
        }

        .services-section {
            background-color: #f8f9fa;
        }
        
        .section-label {
            color: var(--green);
            font-weight: 700;
            letter-spacing: 2px;
            font-size: 0.85rem;
            margin-bottom: 10px;
        }
        
        .section-description {
            max-width: 700px;
            margin: auto;
            color: #666;
        }
        
        .service-box {
            background: white;
            padding: 35px 25px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        .service-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .service-box h5 {
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark-green);
        }
        
        .service-box p {
            color: #666;
            font-size: 0.95rem;
        }

        .why-us-section {
            background: white;
        }
        
        .why-card {
            background: #f8f9fa;
            padding: 35px 30px;
            border-radius: 16px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .why-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        }
        
        .why-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .why-card h5 {
            color: var(--dark-green);
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .why-card p {
            color: #666;
            font-size: 0.95rem;
        }

        .about-hero {
            padding: 130px 0;
            background: linear-gradient(
                rgba(18, 61, 43, 0.85),
                rgba(18, 61, 43, 0.85)
                ),
            url("images/hero.jpg") center/cover;
            color: white;
            }
            
        .about-hero h1 {
            font-size: 2.7rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .about-hero .lead {
            max-width: 750px;
            margin: auto;
        }
        
        .about-section h2 {
            color: var(--dark-green);
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .about-section p {
            color: #555;
            line-height: 1.7;
        }
        
        .about-image {
            max-width: 420px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }

        footer {
            background: var(--dark-green);
            color: white;
            padding: 20px;
            text-align: center;
        }

        @media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2.4rem;
        line-height: 1.15;
    }

    .hero .lead {
        font-size: 1rem;
        padding: 0 15px;
    }

    .about-hero {
        padding: 80px 0;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }
}