:root {
    --about-accent: #3498db;
    --about-text-dark: #2c3e50;
    --about-text-light: #7f8c8d;
}

/* --- ESPACEMENT GLOBAL --- */
.about-wrapper {
    padding-top: 40px;
    padding-bottom: 100px;
}

/* --- Breadcrumb (Identique Contact) --- */
/* --- Styles du Breadcrumb Harmonisés (Style Séries) --- */
.breadcrumb-tcf {
    padding: 0;
    margin-top: 30px;    /* Espace au dessus */
    margin-bottom: 30px; /* Espace en dessous */
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 20px;     /* Taille augmentée comme sur Séries */
    color: #6c757d;
}

.breadcrumb-tcf a {
    color: #3498db;      /* Ton bleu accent */
    text-decoration: none;
    font-weight: 500;
    margin-right: 8px;
}

.breadcrumb-tcf span {
    margin-right: 8px;
    color: #ccc;
    font-weight: 300;
}

.breadcrumb-tcf strong {
    font-weight: 700;
    color: #2c3e50;
}

/* --- Séparateur (Identique Contact) --- */
.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 50px auto;
    width: 100%;
    font-size: 32px;
    font-weight: 800;
    color: var(--about-text-dark);
}
.separator::before, .separator::after { content: ""; flex: 1; border-bottom: 3px solid #eee; }
.separator:not(:empty)::before { margin-right: 25px; }
.separator:not(:empty)::after { margin-left: 25px; }

/* --- CARTE DE TEXTE (Style Formulaire Contact) --- */
.about-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    line-height: 1.9;
    font-size: 1.2rem;
}

.about-card p {
    margin-bottom: 25px;
    color: var(--about-text-light);
    text-align: justify;
}

.about-card p::first-letter {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--about-accent);
}

/* --- BOUTON XXL (Style Contact) --- */
.btn-contact-link {
    display: inline-block;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white !important;
    padding: 20px 50px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal-animation { opacity: 0; animation: fadeInUp 0.8s ease-out forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }