#services-hero {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

#services-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

#services-hero p {
    font-size: 1.2rem;
    color: #666;
}

#services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    #services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}



.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

