        /* Variables CSS pour s'assurer qu'elles sont disponibles */
        :root {
            --black: #0a0a0a;
            --charcoal: #1a1a1a;
            --silver: #8a8a8a;
            --platinum: #c5c5c5;
            --white: #ffffff;
            --cream: #faf9f7;
            --accent: #CE1C1C;
            --accent-light: rgba(206, 28, 28, 0.1);
        }

        body {
            background: var(--cream, #faf9f7);
            color: var(--charcoal, #1a1a1a);
        }

        /* Styles spécifiques pour la page mentions légales */
        .legal-container {
            min-height: 100vh;
            padding: 120px 60px 80px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .legal-header {
            text-align: center;
            margin-bottom: 60px;
            border-bottom: 1px solid rgba(26, 26, 26, 0.1);
            padding-bottom: 40px;
            margin-top: 40px;
        }

        .legal-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(48px, 6vw, 72px);
            font-weight: 300;
            color: var(--charcoal, #1a1a1a);
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .legal-subtitle {
            font-size: 18px;
            color: var(--silver, #8a8a8a);
            font-weight: 300;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .legal-content {
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .legal-section {
            background: var(--white, #ffffff);
            border: 1px solid rgba(26, 26, 26, 0.08);
            border-radius: 0;
            padding: 40px;
            margin-bottom: 40px;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .legal-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(206, 28, 28, 0.01), transparent);
            transition: left 0.6s ease;
        }

        .legal-section:hover::before {
            left: 100%;
        }

        .legal-section:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            border-color: rgba(26, 26, 26, 0.15);
        }

        .legal-section h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 400;
            color: var(--charcoal, #1a1a1a);
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--accent, #CE1C1C);
            position: relative;
        }

        .legal-section h2::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--accent, #CE1C1C);
        }

        .legal-section p {
            font-size: 15px;
            line-height: 1.8;
            color: var(--charcoal, #1a1a1a);
            margin-bottom: 20px;
            font-weight: 300;
        }

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

        .legal-section strong {
            font-weight: 500;
            color: var(--charcoal, #1a1a1a);
        }

        .legal-section ul {
            margin: 20px 0;
            padding-left: 0;
            list-style: none;
        }

        .legal-section li {
            font-size: 15px;
            line-height: 1.8;
            color: var(--charcoal, #1a1a1a);
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            font-weight: 300;
        }

        .legal-section li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 12px;
            width: 6px;
            height: 6px;
            background: var(--accent, #CE1C1C);
            border-radius: 50%;
        }

        .legal-section a {
            color: var(--accent, #CE1C1C);
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .legal-section a:hover {
            opacity: 0.7;
        }

        /* Navigation de retour */
        .back-navigation {
            position: fixed;
            top: 40px;
            left: 60px;
            z-index: 1001; /* Au-dessus du header */
            animation: fadeIn 1s ease 0.8s both;
        }

        .back-link {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--silver, #8a8a8a);
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            padding: 12px 20px;
            background: rgba(250, 249, 247, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(26, 26, 26, 0.08);
            border-radius: 50px;
        }

        .back-link:hover {
            color: var(--accent, #CE1C1C);
            transform: translateX(-5px);
            border-color: rgba(206, 28, 28, 0.2);
        }

        .back-arrow {
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .back-link:hover .back-arrow {
            transform: translateX(-3px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .legal-container {
                padding: 120px 30px 60px;
            }

            .back-navigation {
                top: 30px;
                left: 30px;
            }

            .legal-section {
                padding: 30px 25px;
                margin-bottom: 30px;
            }

            .legal-section h2 {
                font-size: 24px;
            }

            .legal-header {
                margin-bottom: 60px;
                padding-bottom: 40px;
            }
        }

        /* Animation pour le contenu qui apparaît */
        .legal-section {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInSection 0.6s ease forwards;
        }

        .legal-section:nth-child(1) { animation-delay: 0.1s; }
        .legal-section:nth-child(2) { animation-delay: 0.2s; }
        .legal-section:nth-child(3) { animation-delay: 0.3s; }
        .legal-section:nth-child(4) { animation-delay: 0.4s; }
        .legal-section:nth-child(5) { animation-delay: 0.5s; }
        .legal-section:nth-child(6) { animation-delay: 0.6s; }
        .legal-section:nth-child(7) { animation-delay: 0.7s; }
        .legal-section:nth-child(8) { animation-delay: 0.8s; }

        @keyframes fadeInSection {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    </style>
