        *, *::before, *::after {
            box-sizing: border-box;
        }

        :root {
            --bg: #FDF9F2;
            --card: #FFFFFF;

            --ink: #352F4D;
            --ink-soft: #675F82;

            --purple: #5A4E96;
            --pink: #C94F82;
            --pink-hover: #B03D6C;
            --blue: #6E8FDB;
            --gold: #E8A93A;

            --purple-tint: #EAE5F7;
            --pink-tint: #FBE6EE;
            --blue-tint: #E7EEFB;
            --gold-tint: #FCEFD6;

            --line: #ECE4D8;

            --font-display: 'Baloo 2', sans-serif;
            --font-body: 'Poppins', sans-serif;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            font-weight: 400;
            font-size: 17px;
            line-height: 1.75;
            color: var(--ink);
            background-color: var(--bg);
            margin: 0;
        }

        a { color: var(--purple); }

        .wrap {
            max-width: 880px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ---------- HERO ---------- */

        .hero {
            padding: 56px 0 0;
            text-align: center;
        }

        .header-logo {
            width: 150px;
            height: auto;
            margin: 0 auto 8px;
            display: block;
        }

        h1 {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: clamp(2.6rem, 5vw, 3.4rem);
            color: var(--ink);
            margin: 0 0 6px;
        }

        .tagline {
            font-family: var(--font-display);
 	    text-align: center;
            font-weight: 500;
            font-size: 1.05rem;
            letter-spacing: 0.5px;
            color: var(--purple);
            margin: 0 auto 24px;
        }

        .swatch-strip {
            display: flex;
            width: 260px;
            height: 10px;
            margin: 0 auto 48px;
            border-radius: 6px;
            overflow: hidden;
        }

        .swatch-strip span { flex: 1; }

        .hero-grid {
            display: grid;
            grid-template-columns: 0.85fr 1.15fr;
            gap: 44px;
            align-items: center;
            text-align: center; /* Modifié ici pour centrer le contenu de droite */
            padding-bottom: 60px;
            border-bottom: 1px solid var(--line);
        }

        .hero-portrait {
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border-radius: 28px;
            border: 7px solid var(--pink);
            box-shadow: 0 16px 34px rgba(90, 78, 150, 0.18);
        }

        .hero-text {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-intro {
            color: var(--ink-soft);
            font-size: 1.05rem;
            max-width: 46ch;
            margin: 0 auto 28px auto; /* Marges auto pour centrer le bloc */
            text-align: center !important;
        }

        .doctolib-note {
            font-size: 0.9rem;
            color: var(--ink-soft);
            margin-top: 12px;
            font-style: italic;
            max-width: 46ch;
            margin-left: auto;
            margin-right: auto;
            text-align: center !important;
        }

        .btn {
            display: inline-block;
            background-color: var(--pink);
            color: var(--card);
            text-decoration: none;
            padding: 15px 32px;
            border-radius: 999px;
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 600;
            box-shadow: 0 10px 24px rgba(201, 79, 130, 0.28);
            transition: background-color 0.2s ease, transform 0.2s ease;
        }

        .btn:hover {
            background-color: var(--pink-hover);
            transform: translateY(-2px);
        }

        /* ---------- SECTIONS ---------- */

        section { padding: 56px 0; }

        h3 {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 1.7rem;
            color: var(--purple);
            margin: 0 0 26px;
        }

        /* TEXTE JUSTIFIÉ POUR LES PARAGRAPHES PRINCIPAUX */
        p { 
            /* SUPPRESSION DU max-width: 68ch pour que les textes s'alignent sur la largeur de la grille d'images */
            text-align: justify;
            hyphens: auto;
            -webkit-hyphens: auto;
            width: 100%;
        }
        
        section p + p { margin-top: 18px; }

        strong { font-weight: 600; color: var(--ink); }

        #pourquoi-consulter { background-color: var(--pink-tint); }
        #approche { background-color: var(--purple-tint); }
        #pratique { background-color: var(--blue-tint); }

        /* ---------- GRILLE POURQUOI CONSULTER ---------- */
        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }

        .reason-card {
            background-color: var(--card);
            padding: 32px 24px;
            border-radius: 24px;
            text-align: center;
            box-shadow: 0 8px 24px rgba(201, 79, 130, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .reason-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 32px rgba(201, 79, 130, 0.12);
        }

        .reason-icon {
            width: 110px;
            height: 110px;
            margin: 0 auto 20px;
            display: block;
            background-color: var(--bg);
            border-radius: 50%;
            padding: 22px;
            object-fit: contain;
            border: 2px solid var(--purple-tint);
        }

        .reason-card h4 {
            font-family: var(--font-display);
            color: var(--purple);
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0 0 12px;
            line-height: 1.2;
        }

        .reason-card p {
            font-size: 0.95rem;
            color: var(--ink-soft);
            margin: 0;
            line-height: 1.5;
            max-width: 100%;
            text-align: center; /* Annule la justification pour ces petits blocs */
            hyphens: none;
        }

        /* EXEMPTIONS DE JUSTIFICATION */
        .hero-text p, .confidentiality-note, footer p {
            text-align: center; /* On garde ces éléments centrés */
            hyphens: none;
        }

        /* ---------- EXPERIENCE & FORMATIONS ---------- */

        .parcours-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .timeline {
            list-style: none;
            margin: 0;
            padding: 0;
            border-left: 3px solid var(--line);
        }

        .timeline li { position: relative; padding: 0 0 28px 30px; }
        .timeline li:last-child { padding-bottom: 0; }

        .timeline li::before {
            content: '';
            position: absolute;
            left: -9px;
            top: 6px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--dot, var(--purple));
            border: 3px solid var(--bg);
        }

        .timeline li:nth-child(1) { --dot: var(--pink); }
        .timeline li:nth-child(2) { --dot: var(--gold); }
        .timeline li:nth-child(3) { --dot: var(--blue); }
        .timeline li:nth-child(4) { --dot: var(--purple); }

        .timeline .year {
            display: block;
            font-family: var(--font-display);
            font-weight: 600;
            color: var(--ink);
            font-size: 0.95rem;
            margin-bottom: 3px;
        }

        .timeline .detail { color: var(--ink-soft); }

        /* ---------- PRATIQUE ---------- */

        .schedule-note {
            background-color: var(--gold-tint);
            border-left: 5px solid var(--gold);
            padding: 20px 24px;
            border-radius: 12px;
            margin: 28px 0;
            color: var(--ink);
        }

        .schedule-note strong { color: var(--purple); }

        .facts { list-style: none; padding: 0; margin: 28px 0; }

        .facts li {
            padding: 13px 0;
            border-bottom: 1px solid var(--line);
            display: flex;
            gap: 12px;
            align-items: baseline;
        }

        .facts li:last-child { border-bottom: none; }

        .facts .dot {
            width: 9px; height: 9px;
            border-radius: 50%;
            background: var(--dot);
            flex-shrink: 0;
        }

        .facts li:nth-child(1) { --dot: var(--pink); }
        .facts li:nth-child(2) { --dot: var(--gold); }
        .facts li:nth-child(3) { --dot: var(--blue); }
        .facts li:nth-child(4) { --dot: var(--purple); }

        .facts .label {
            color: var(--ink-soft);
            min-width: 100px;
            flex-shrink: 0;
        }

        .map-container {
            margin-top: 32px;
            border-radius: 20px;
            overflow: hidden;
            line-height: 0;
            border: 5px solid var(--card);
            box-shadow: 0 10px 25px rgba(90, 78, 150, 0.12);
        }

        .map-container iframe {
            display: block;
            width: 100%;
            height: 300px;
            border: 0;
        }

        .office-photos {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 36px 0 12px;
        }

        .office-photos figure { margin: 0; }

        .office-photos img {
            width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 20px;
            display: block;
            border: 5px solid var(--card);
            box-shadow: 0 10px 22px rgba(90, 78, 150, 0.12);
        }

        .office-photos figcaption {
            font-size: 0.85rem;
            color: var(--ink-soft);
            margin-top: 10px;
            text-align: center;
        }

        .confidentiality-note {
            max-width: none;
            text-align: center;
            font-family: var(--font-display);
            font-weight: 500;
            color: var(--purple);
            margin: 36px 0;
        }

        .cta-center { text-align: center; margin-top: 8px; }

        footer {
            text-align: center;
            font-size: 0.85rem;
            color: var(--ink-soft);
            padding: 32px 0 48px;
        }

        @media (max-width: 768px) {
            .parcours-grid { grid-template-columns: 1fr; gap: 40px; }
        }

        @media (max-width: 680px) {
            .hero-grid { grid-template-columns: 1fr; gap: 30px; }
            .hero-portrait { max-width: 240px; margin: 0 auto; }
            .hero-grid .hero-text { text-align: center; }
            .office-photos { grid-template-columns: 1fr; }
            section { padding: 44px 0; }
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            .btn { transition: none; }
        }
