    /* Configuration des variables pour faciliter la maintenance */
    :root {
        --about-bg: #fdfdfd;
        --about-line: #e0e0e0;
        --about-text-dark: #2c3e50;
        --about-text-light: #7f8c8d;
        --about-accent: #3498db;
    }

    .about-wrapper {
        max-width: 900px;
        margin: 60px auto;
        padding: 0 20px;
        color: var(--about-text-dark);
    }

    /* Le titre avec la ligne au milieu (Style Professionnel) */
    .title-divider {
        display: flex;
        align-items: center;
        text-align: center;
        margin-bottom: 50px;
    }

    .title-divider::before,
    .title-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--about-line);
    }

    .title-text {
        padding: 0 30px;
        font-size: 1.8rem;
        font-weight: 300; /* Style moderne fin */
        text-transform: uppercase;
        letter-spacing: 4px;
        color: var(--about-text-dark);
    }

    /* Corps du texte */
    .about-body {
        line-height: 1.8;
        font-size: 1.15rem;
        text-align: justify;
    }

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

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

    /* Séparateur de fin discret */
    .about-footer-spacer {
        height: 2px;
        width: 60px;
        background: var(--about-accent);
        margin: 40px auto;
    }

    .btn-contact-link {
        display: block;
        width: fit-content;
        margin: 0 auto;
        padding: 12px 35px;
        border: 1px solid var(--about-accent);
        color: var(--about-accent);
        text-decoration: none;
        border-radius: 4px;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .btn-contact-link:hover {
        background: var(--about-accent);
        color: #ffffff;
    }

