/* --- SECTION EXPERTISE --- */
.expertise-section {
    background-color: #2D1F1E; /* Marron foncé maquette */
    padding: 100px 10%;
    color: #F5F2E9; /* Beige clair pour le texte */
}

.expertise-container {
    display: flex;
    align-items: center;
    gap: 80px; 
    max-width: 1200px;
    margin: 0 auto;
}

/* Colonne de gauche : Texte */
.expertise-content {
    flex: 1;
}

.expertise-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #F5F2E9;
}

.expertise-content h2 span {
    font-weight: 800; /* On remet en gras pour que ça ressorte comme NAPOLI */
    color: #E2D9C1 !important; /* Le beige pur (plus de gris !) */
    border-bottom: 4px solid #E2D9C1; /* Soulignement assorti */
    padding-bottom: 5px;
    display: inline-block;
}

.expertise-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(245, 242, 233, 0.8); /* Texte secondaire légèrement plus doux */
    max-width: 500px;
}

.expertise-content p.lead {
    font-weight: 600;
    color: #F5F2E9; /* Premier paragraphe bien visible */
}

/* Colonne de droite : Image */
.expertise-image {
    flex: 1;
    position: relative;
}

.expertise-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border: 1px solid rgba(245, 242, 233, 0.2);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .expertise-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .expertise-content p {
        margin-left: auto;
        margin-right: auto;
    }
}