        :root {
            --monaco-red: #7B1535;
            --monaco-red-dark: #590021;
            --monaco-red-light: rgba(123,21,53,0.08);
            --white: #ffffff;
            --off-white: #fdf8f9;
            --text-dark: #1c1b1c;
            --text-muted: #564245;
            --outline: #897174;
            --silver-dark: #dcc0c3;
            --silver-light: #f7f2f3;
            --amber: #B45309;
            --amber-light: rgba(180,83,9,0.08);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--off-white);
            color: var(--text-dark);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
        }

        /* Header */
        .legal-header {
            background: linear-gradient(135deg, var(--monaco-red), var(--monaco-red-dark));
            color: white;
            padding: 40px 24px 56px;
            text-align: center;
        }

        .legal-header .brand-logo {
            width: 84px;
            height: 84px;
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .legal-header .brand-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .legal-header h1 {
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .legal-header p {
            font-size: 14px;
            color: rgba(255,255,255,0.75);
            font-weight: 500;
        }

        .legal-header .updated {
            display: inline-block;
            margin-top: 16px;
            font-size: 12px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            padding: 6px 14px;
            border-radius: 999px;
            color: rgba(255,255,255,0.85);
        }

        /* Container */
        .legal-container {
            max-width: 820px;
            margin: -28px auto 0;
            padding: 0 16px 60px;
        }

        /* Intro card */
        .intro-card {
            background: var(--white);
            border: 1px solid var(--silver-dark);
            border-radius: 18px;
            padding: 24px 28px;
            margin-bottom: 18px;
            box-shadow: 0 8px 28px rgba(89,0,33,0.06);
            font-size: 14.5px;
            color: var(--text-muted);
        }

        .intro-card strong { color: var(--text-dark); font-weight: 600; }

        /* Card sections */
        .legal-card {
            background: var(--white);
            border: 1px solid var(--silver-dark);
            border-radius: 18px;
            padding: 28px;
            margin-bottom: 18px;
            box-shadow: 0 8px 28px rgba(89,0,33,0.06);
        }

        .legal-card h2 {
            font-size: 18px;
            font-weight: 700;
            color: var(--monaco-red);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .legal-card h2 .num {
            width: 30px;
            height: 30px;
            flex-shrink: 0;
            border-radius: 9px;
            background: var(--monaco-red-light);
            color: var(--monaco-red);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
        }

        .legal-card h3 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 18px 0 8px;
        }

        .legal-card p {
            font-size: 14.5px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .legal-card p:last-child { margin-bottom: 0; }

        .legal-card ul {
            list-style: none;
            margin: 4px 0 12px;
        }

        .legal-card ul li {
            position: relative;
            padding-left: 24px;
            font-size: 14.5px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .legal-card ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 1px;
            color: var(--monaco-red);
            font-size: 11px;
        }

        .legal-card strong { color: var(--text-dark); font-weight: 600; }

        .legal-card a { color: var(--monaco-red); font-weight: 600; text-decoration: none; }
        .legal-card a:hover { color: var(--monaco-red-dark); text-decoration: underline; }

        /* Definition list (responsable de traitement) */
        .info-grid {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 10px 18px;
            font-size: 14.5px;
        }

        .info-grid dt {
            font-weight: 600;
            color: var(--text-dark);
        }

        .info-grid dd { color: var(--text-muted); }

        /* Placeholder à compléter */
        .todo {
            display: inline-block;
            background: var(--amber-light);
            border: 1px dashed var(--amber);
            border-radius: 6px;
            padding: 1px 8px;
            font-size: 12.5px;
            font-weight: 600;
            color: var(--amber);
            font-style: normal;
        }

        /* Highlight callout */
        .callout {
            background: var(--monaco-red-light);
            border-left: 3px solid var(--monaco-red);
            border-radius: 10px;
            padding: 14px 16px;
            font-size: 13.5px;
            color: var(--text-muted);
            margin-top: 12px;
        }

        .callout i { color: var(--monaco-red); margin-right: 8px; }

        .callout.warn {
            background: var(--amber-light);
            border-left-color: var(--amber);
        }
        .callout.warn i { color: var(--amber); }

        .callout strong { color: var(--text-dark); }

        /* Rights table */
        .rights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 6px;
        }

        .right-item {
            background: var(--silver-light);
            border: 1px solid var(--silver-dark);
            border-radius: 12px;
            padding: 14px;
        }

        .right-item .r-title {
            font-size: 13.5px;
            font-weight: 700;
            color: var(--monaco-red);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 4px;
        }

        .right-item .r-desc { font-size: 12.5px; color: var(--text-muted); }

        /* Access roles */
        .access-list {
            display: grid;
            gap: 12px;
            margin-top: 6px;
        }

        .access-item {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            background: var(--silver-light);
            border: 1px solid var(--silver-dark);
            border-radius: 12px;
            padding: 14px 16px;
        }

        .access-item .a-icon {
            width: 38px;
            height: 38px;
            flex-shrink: 0;
            border-radius: 10px;
            background: var(--monaco-red-light);
            color: var(--monaco-red);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
        }

        .access-item .a-title { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
        .access-item .a-desc { font-size: 13px; color: var(--text-muted); }

        /* Back link */
        .back-bar {
            max-width: 820px;
            margin: 0 auto;
            padding: 20px 16px 0;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--monaco-red);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            background: var(--white);
            border: 1px solid var(--silver-dark);
            padding: 10px 18px;
            border-radius: 999px;
            transition: all 0.2s ease;
        }

        .back-link:hover {
            background: var(--monaco-red);
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(89,0,33,0.2);
        }

        /* Footer */
        .legal-footer {
            text-align: center;
            font-size: 12px;
            color: var(--outline);
            padding: 8px 16px 40px;
        }

        .legal-footer a { color: var(--monaco-red); text-decoration: none; font-weight: 600; }

        /* Responsive */
        @media (max-width: 600px) {
            .legal-header { padding: 32px 20px 48px; }
            .legal-header h1 { font-size: 22px; }
            .legal-card { padding: 22px 18px; }
            .info-grid { grid-template-columns: 1fr; gap: 2px 0; }
            .info-grid dt { margin-top: 10px; }
            .info-grid dd { margin-bottom: 4px; }
            .rights { grid-template-columns: 1fr; }
        }
