/*PAGE COOKIES*/

        :root {
            --primary: #6a11cb;
            --secondary: #2575fc;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, var(--dark), #16213e);
            color: var(--light);
            line-height: 1.6;
        }
        
        header {
            background: rgba(26, 26, 46, 0.9);
            padding: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .logo-icon {
            font-size: 2rem;
        }
        
        .cookies-hero, .privacy-hero, .cgu-hero {
            text-align: center;
            padding: 4rem 0;
            background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%232575fc" opacity="0.1"><polygon points="0,0 1000,50 1000,100 0,100"/></svg>');
            background-size: cover;
        }
        
        .cookies-hero  h1, .privacy-hero h1, .cgu-hero h1 {
            font-weight: 700;
            font-size: 2.8rem;
            margin-bottom: 1rem;
            background: linear-gradient(to right, #6a11cb, #2575fc);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .cookies-hero p, .privacy-hero p, .cgu-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: #b8b8d0;
        }
        
        .cookies-content, .privacy-content, .cgu-content {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 3rem;
            margin: 2rem auto;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }
        
        .last-updated {
            text-align: center;
            color: var(--gray);
            margin-bottom: 2rem;
            font-style: italic;
        }
        
        .section {
            margin-bottom: 3rem;
        }
        
        .section h2 {
            color: #6a11cb;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(106, 17, 203, 0.3);
        }
        
        .section h3 {
            color: #2575fc;
            margin: 1.5rem 0 0.8rem 0;
        }
        
        .section p, .section ul {
            margin-bottom: 1rem;
            color: #d1d1e0;
        }
        
        .section ul {
            padding-left: 1.5rem;
        }
        
        .section li {
            margin-bottom: 0.5rem;
        }
        
        .highlight {
            background: rgba(106, 17, 203, 0.2);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary);
            margin: 1.5rem 0;
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .cookie-table th {
            background: rgba(106, 17, 203, 0.3);
            padding: 1rem;
            text-align: left;
            color: #fff;
        }
        
        .cookie-table td {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .cookie-table tr:last-child td {
            border-bottom: none;
        }
        
        .cookie-type {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .cookie-essential {
            background: rgba(40, 167, 69, 0.2);
            color: #28a745;
        }
        
        .cookie-preferences {
            background: rgba(0, 123, 255, 0.2);
            color: #007bff;
        }
        
        .cookie-analytics {
            background: rgba(255, 193, 7, 0.2);
            color: #ffc107;
        }
        
        .cookie-marketing {
            background: rgba(220, 53, 69, 0.2);
            color: #dc3545;
        }
        
        .contact-info {
            background: rgba(37, 117, 252, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 2rem;
        }
        
        .cookie-controls {
            background: rgba(106, 17, 203, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
        }
        
        .control-option {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .control-option input[type="checkbox"] {
            width: 18px;
            height: 18px;
        }
        
        .save-preferences {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            margin-top: 1rem;
        }
        
        footer {
            text-align: center;
            padding: 2rem 0;
            background: rgba(0, 0, 0, 0.3);
            margin-top: 3rem;
            color: var(--gray);
        }
        
        .back-to-top {
            display: inline-block;
            margin-top: 1rem;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .cookies-content, .privacy-content, .cgu-content {
                padding: 1.5rem;
            }
            
            .cookies-hero h1, .privacy-hero h1, .cgu-hero h1 {
                font-size: 2.2rem;
            }
            
            .cookie-table {
                display: block;
                overflow-x: auto;
            }
        }

