/* Optimisation des images de services */
.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
}

/* Image about section */
.about-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive images */
@media (max-width: 768px) {
    .service-card img {
        height: 180px;
    }
}
