.a-propos-container {
    /* Affiche le container principal en flexbox pour aligner les éléments horizontalement */
    display: flex;
    /* Aligne les éléments en haut du container */
    align-items: flex-start;
    /* Centre horizontalement le contenu */
    justify-content: center;
    /* Espace horizontal entre les éléments */
    gap: 40px;
    /* Marge extérieure pour espacer du haut et du bas */
    margin: 40px auto;
    /* Largeur maximale du container */
    max-width: 900px;
    /* Fond blanc */
    background: #fff;
    /* Bords arrondis */
    border-radius: 16px;
    /* Ombre légère */
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    /* Espacement interne */
    padding: 32px 24px;
}
.a-propos-photo {
    flex: 0 0 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    padding: 16px;
}
.a-propos-photo img {
    width: 220px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.a-propos-texte {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
    padding-left: 24px;
    padding-right: 0;
}
.a-propos-texte h2{
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #3a3a3a;
}
.a-propos-texte p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin: 0;
}
.a-propos-texte ul {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin: 0 0 0 18px;
    padding: 0;
    list-style: disc inside;
}
.a-propos-texte ul li {
    margin-bottom: 8px;
}
@media (max-width: 700px) {
    .a-propos-container {
        flex-direction: column;
        gap: 24px;
        padding: 18px 8px;
    }
    .a-propos-photo {
        justify-content: flex-start;
        padding: 8px;
    }
    .a-propos-photo img {
        width: 100%;
        max-width: 220px;
    }
    .a-propos-texte {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
