body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: white !important;
}
.container {
    max-width: 100%;
}



.team-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    /* pour ne plus couper l'image */
    border-radius: 50%;
    margin: 20px auto 10px;
    display: block;
    background-color: #f0f0f0;
    /* optionnel : pour remplir derrière une image trop petite */
    transition: transform 0.3s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .team-card img {
        width: 100px;
        height: 100px;
    }
}
