body{
    background-color: #f0dfcc;
}

.content-hidden {
    max-width: 10rem;
    margin: 0 auto;
    padding: 0 20px; 
}

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, #1B5E20 0%, #2c5f2d 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.services-hero h2 {
    font-size: 3.9rem;
    margin-bottom: 2rem;
    color: white;
}

.services-hero p {
    font-size: 1.6rem;
    max-width: 80rem;
    margin: 0 auto;
    opacity: 0.9;
}

/* Core Services Section */
.core-services {
    padding: 80px 20px;
    background-color: #f0dfcc;
}

.core-services h2 {
    text-align: center;
    color: #1B5E20;
    font-size: 3.9rem;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #6bcd31;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 4rem;
    color: #6bcd31;
    margin-bottom: 2rem;
    text-align: center;
}

.service-card h3 {
    color: #1B5E20;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-card p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #666;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.4rem;
    position: relative;
    padding-left: 2rem;
}

.service-card li:before {
    content: "✓";
    color: #6bcd31;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Products Showcase Section */
.products-showcase {
    padding: 5rem 2rem;
    background: #f0dfcc;
}

.products-showcase h2 {
    text-align: center;
    color: #1B5E20;
    font-size: 3.9rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.product-tile {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.product-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6bcd31, #1B5E20);
}

.product-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #6bcd31;
}

.tile-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.product-tile h3 {
    color: #1B5E20;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.product-tile ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.product-tile li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.product-tile li:before {
    content: "•";
    color: #6bcd31;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.8rem;
}

/* Service Process Section */
.service-process {
    padding: 80px 20px;
    background: #f9f9f9;
}

.service-process h2 {
    text-align: center;
    color: #1B5E20;
    font-size: 3.9rem;
    margin-bottom: 4rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #6bcd31;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: bold;
    margin: 0 auto 2rem;
}

.process-step h3 {
    color: #1B5E20;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.process-step p {
    font-size: 1.5rem;
    color: #666;
}

/* Services CTA Section */
.services-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1B5E20 0%, #2c5f2d 100%);
    color: white;
    text-align: center;
}

.services-cta h2 {
    color: white;
    font-size: 3.9rem;
    margin-bottom: 2rem;
}

.services-cta p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-btn {
    background: white;
    color: #1B5E20;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1.6rem;
    display: inline-block;
}

.cta-btn:hover {
    background: #f0f0f0;
    border: 2px solid #FBC02D;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 3.6rem;
    }
    
    .services-hero p {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 200px;
        text-align: center;
    }
    
    .service-card, .product-tile {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 3rem;
    }
    
    .services-hero p {
        font-size: 1.6rem;
    }
    
    .core-services h2,
    .products-showcase h2,
    .service-process h2,
    .services-cta h2 {
        font-size: 3rem;
    }
}