.image-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Pour les écrans mobiles */
@media (max-width: 991px) {
    .row.align-items-center {
        flex-direction: column;
    }
    
    .image-wrapper {
        margin-bottom: 20px;
    }
}
