        :root {
            --navy: #000075;
            --burgundy: #960018;
            --ivory: #F9F6F0;
            --gold: #C4A267;
            --dark: #333333;
        }
        
        body {
            font-family: 'Cormorant Garamond', serif;
            background-color: var(--ivory);
            color: var(--dark);
            line-height: 1.8;
            margin: 0;
            padding: 0;
        }
        
        .legal-container {
            max-width: 1000px;
            margin: 3rem auto;
            padding: 2rem;
            background: white;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            border-top: 4px solid var(--burgundy);
            position: relative;
        }
        
        .legal-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(150, 0, 24, 0.1);
            position: relative;
        }
        
        .legal-header h1 {
            color: var(--navy);
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
        }
        
        .legal-header::after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--navy), var(--burgundy));
        }
        
        .section-title {
            color: var(--navy);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(0, 0, 117, 0.1);
            position: relative;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--burgundy);
        }
        
        .highlight-box {
            background: rgba(150, 0, 24, 0.03);
            border-left: 3px solid var(--burgundy);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
        }
        
        .footer-note {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(150, 0, 24, 0.1);
            font-size: 0.9rem;
            color: var(--dark);
        }
        
        @media (max-width: 768px) {
            .legal-container {
                padding: 1.5rem;
                margin: 1.5rem;
            }
            
            .legal-header h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.3rem;
            }
        }
        
        /* Effet de bouchon de vin en arrière-plan */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23960018" opacity="0.03" d="M0,0 L100,0 L100,100 L0,100 Z"/></svg>');
            background-size: 300px;
            z-index: -1;
            opacity: 0.05;
        }
