/* --- STYLE PROFIL (MODÈLE SAOTA) --- */

.page-profil {
    background-color: #ffffff !important;
    color: #333333;
    
}

/* Image d'en-tête */
.profil-hero img {
    height: 80vh;
    object-fit: cover;
    object-position: center;
}

/* Titre principal */
.profil-title {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #000;
    margin-top: 40px;
}

/* Corps du texte */
.profil-content p {
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 25px;
    font-weight: 400;
    color: #444;
    text-align: justify;
    max-width: 95%; /* Pour ne pas coller aux bords */
}

/* Mise en avant du nom du cabinet */
.profil-content strong {
    font-weight: 600;
    color: #000;
}

/* --- ADAPTATION MOBILE --- */
@media (max-width: 767.98px) {
    .profil-hero img {
        height: 40vh;
    }
    .profil-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    .profil-content p {
        font-size: 0.85rem;
        line-height: 1.7;
    }
}
