/* ============ HERO ============ */
        .legal-hero {
            background-color: #20212b;
            min-height: 400px;
            padding: 180px 0 80px;
            display: flex;
            align-items: center;
            text-align: center;
        }
        .legal-hero .container {
            max-width: 960px;
            margin: 0 auto;
        }
        .legal-hero h1 {
            font-family: 'Quicksand', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -3.5px;
            margin-bottom: 16px;
        }
        .legal-hero-subtitle {
            font-family: 'Quicksand', sans-serif;
            font-size: 18px;
            color: rgba(255,255,255,0.75);
            max-width: 960px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }
        .legal-hero-badges {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .legal-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 18px;
            border-radius: 50px;
            font-family: 'Quicksand', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: rgba(255,255,255,0.8);
        }
        .legal-hero-badge svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            stroke: #efc940;
        }

        /* ============ TEXTE JURIDIQUE ============ */
        .legal-full-section {
            background: #fff;
            padding: 60px 0;
        }
        .legal-full-wrap {
            max-width: 960px;
            margin: 0 auto;
        }
        .legal-full-wrap .legal-intro {
            font-family: 'Quicksand', sans-serif;
            font-size: 18px;
            color: #4a4c70;
            line-height: 1.6;
            margin-bottom: 40px;
            font-weight: 500;
        }
        .legal-full-wrap h2 {
            font-family: 'Quicksand', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: #4a4c70;
            letter-spacing: -1.5px;
            margin-top: 45px;
            margin-bottom: 20px;
        }
        .legal-full-wrap h2:first-of-type {
            margin-top: 0;
        }
        .legal-full-wrap p {
            font-family: 'Quicksand', sans-serif;
            font-size: 16px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        .legal-full-wrap ul {
            list-style: none;
            padding: 0;
            margin: 0 0 20px;
        }
        .legal-full-wrap ul li {
            font-family: 'Quicksand', sans-serif;
            font-size: 16px;
            color: #666;
            line-height: 1.6;
            padding: 10px 0 10px 32px;
            position: relative;
            border-bottom: 1px solid #f0f0f0;
        }
        .legal-full-wrap ul li:last-child {
            border-bottom: none;
        }
        .legal-full-wrap ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #efc940;
            position: absolute;
            left: 0;
            top: 11px;
            font-size: 14px;
        }
        .legal-full-wrap a {
            color: #efc940;
            text-decoration: underline;
            font-weight: 600;
        }

        /* Encart cout (highlight) */
        .legal-highlight-box {
            background: #f9f7f6;
            border-left: 3px solid #efc940;
            padding: 20px 25px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .legal-highlight-box p {
            margin-bottom: 0;
        }
        .legal-highlight-box p + p {
            margin-top: 12px;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 768px) {
            .legal-hero h1 { font-size: 34px; }
            .legal-hero { padding: 140px 0 60px; min-height: auto; }
            .legal-hero-badges { flex-direction: column; align-items: center; }
            .legal-full-wrap h2 { font-size: 24px; }
        }
