/* --- LAYOUT À PROPOS --- */
.about-section { 
    max-width: 850px; 
    margin: 0 auto; 
    line-height: 1.8; 
    padding: 4rem 1.5rem 5rem; 
}

.about-section h1 { 
    font-size: clamp(2.25rem, 5vw, 3rem); 
    margin-bottom: 2rem; 
    text-align: center; 
    color: var(--text-main);
}

.about-section h2 { 
    font-size: 1.75rem; 
    margin-top: 4rem; 
    margin-bottom: 1.25rem; 
    color: var(--text-main); 
    display: flex; 
    align-items: center; 
    gap: 0.75rem; 
}

.about-section h2::before { 
    content: ""; 
    width: 8px; 
    height: 25px; 
    background: var(--violet); 
    border-radius: 4px; 
    display: inline-block; 
}

.about-section p { 
    margin-bottom: 1.5rem; 
    color: var(--text-muted); 
    font-size: 1.1rem; 
}

/* --- BOX ÉQUIPE --- */
.team-box { 
    background: var(--bg-card); 
    border: 1px solid var(--border-color); 
    padding: 2.5rem; 
    border-radius: 2.5rem; 
    margin-top: 4rem; 
    display: flex; 
    gap: 2rem; 
    align-items: center; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.avatar-circle {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    background: var(--violet-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--violet);
    flex-shrink: 0;
}

/* --- CONTACT GRID --- */
.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1.5rem; 
    margin-top: 2rem; 
}

.contact-card { 
    background: var(--bg-card); 
    border: 1px solid var(--border-color); 
    padding: 1.5rem; 
    border-radius: 1.5rem; 
    text-align: center; 
    text-decoration: none; 
    transition: 0.3s;
}

.contact-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--violet); 
    box-shadow: 0 10px 20px rgba(99, 68, 231, 0.1); 
}

.contact-card span { 
    display: block; 
    font-weight: 800; 
    color: var(--text-main); 
    margin-top: 0.5rem; 
}

/* --- HIGHLIGHT BOX --- */
.highlight-box { 
    background: var(--violet-soft); 
    border-left: 4px solid var(--violet); 
    padding: 1.5rem; 
    border-radius: 0 1rem 1rem 0; 
    margin: 2.5rem 0;
}

.highlight-box p {
    color: var(--text-main) !important;
    margin-bottom: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 640px) { 
    .team-box { flex-direction: column; text-align: center; } 
    .contact-grid { grid-template-columns: 1fr; }
}