/* --- HEADER COMPACT --- */
.page-header {
    text-align: center;
    padding: 60px 20px 40px; /* Espaces réduits (c'était 100px avant) */
    background-color: var(--bg-light);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem; 
    color: var(--primary);
    margin-bottom: 10px;
}

/* --- CONTENEUR PRINCIPAL --- */
.page-content {
    max-width: 1200px;
    margin: 0 auto 60px; /* Marge bas réduite */
    padding: 0 40px;
}

/* --- BLOCS "SPLIT" (Texte + Image) --- */
.split-section {
    display: flex;
    align-items: center;
    gap: 50px; /* Espace réduit (c'était 80px) */
    margin-bottom: 60px; /* Marge réduite de moitié (c'était 120px) */
    border-bottom: 1px solid #eee; /* Petit séparateur subtil */
    padding-bottom: 60px;
}

.split-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Inverse l'ordre (Image à gauche) */
.split-section.reverse {
    flex-direction: row-reverse;
}

/* --- TEXTE --- */
.split-text {
    flex: 1;
}

.split-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem; /* Titre plus compact */
    color: var(--text-dark);
    margin-bottom: 15px;
}

.split-text p {
    font-family: var(--font-body);
    font-size: 1rem; /* Texte standard */
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.split-text strong {
    color: var(--primary);
    font-weight: 700;
}

/* --- IMAGES --- */
.split-image {
    flex: 1;
    height: 350px; /* Hauteur réduite (c'était 500px) */
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); /* Ombre plus douce */
}

.split-image.portrait {
    height: 450px; /* Hauteur adaptée pour le portrait (fondateur) */
    flex: 0.8; /* Prend un peu moins de largeur pour le portrait */
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.split-section:hover .split-image img {
    transform: scale(1.05);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .split-section, .split-section.reverse {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    
    .split-text p {
        text-align: center; /* Plus joli sur mobile */
    }

    .split-image, .split-image.portrait {
        width: 100%;
        height: 300px; /* Hauteur uniforme sur mobile */
    }
    
    .page-content { padding: 0 20px; }
}