        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #9b59b6 100%);
            min-height: 100vh;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #9b59b6;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo::before {
            content: "🍪";
            font-size: 2rem;
        }
        
        .back-link {
            color: #9b59b6;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .back-link:hover {
            color: #3498db;
        }
        
        main {
            margin-top: 120px;
            margin-bottom: 4rem;
        }
        
        .content {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
        h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
        }
        
        h1::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: linear-gradient(45deg, #f39c12, #e67e22);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        h2 {
            font-size: 1.5rem;
            color: #34495e;
            margin: 2rem 0 1rem 0;
            border-left: 4px solid #f39c12;
            padding-left: 1rem;
        }
        
        h3 {
            font-size: 1.2rem;
            color: #2c3e50;
            margin: 1.5rem 0 0.5rem 0;
        }
        
        p {
            margin-bottom: 1rem;
            color: #666;
            text-align: justify;
        }
        
        ul, ol {
            margin: 1rem 0 1rem 2rem;
            color: #666;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        .cookie-highlight {
            background: linear-gradient(45deg, #f39c12, #e67e22);
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
        }
        
        .cookie-highlight h3 {
            color: white;
            margin-bottom: 1rem;
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .cookie-table th,
        .cookie-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #ecf0f1;
        }
        
        .cookie-table th {
            background: linear-gradient(45deg, #34495e, #2c3e50);
            color: white;
            font-weight: bold;
        }
        
        .cookie-table tr:hover {
            background: #f8f9fa;
        }
        
        .cookie-type {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            color: white;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .essential {
            background: #e74c3c;
        }
        
        .functional {
            background: #3498db;
        }
        
        .analytics {
            background: #27ae60;
        }
        
        .marketing {
            background: #9b59b6;
        }
        
        .types-section {
            background: linear-gradient(45deg, #3498db, #2980b9);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
        }
        
        .types-section h3 {
            color: white;
            margin-bottom: 1rem;
        }
        
        .types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .type-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .type-card h4 {
            color: white;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        
        .type-card p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        
        .control-section {
            background: linear-gradient(45deg, #27ae60, #229954);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
        }
        
        .control-section h3 {
            color: white;
            margin-bottom: 1rem;
        }
        
        .browser-controls {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .browser-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
        }
        
        .browser-card h4 {
            color: white;
            margin-bottom: 0.5rem;
        }
        
        .third-party-section {
            background: linear-gradient(45deg, #8e44ad, #9b59b6);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
        }
        
        .third-party-section h3 {
            color: white;
            margin-bottom: 1rem;
        }
        
        .gdpr-badge {
            display: inline-flex;
            align-items: center;
            background: #f39c12;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: bold;
            margin: 1rem 0;
        }
        
        .gdpr-badge::before {
            content: "🍪";
            margin-right: 0.5rem;
        }
        
        .last-updated {
            text-align: center;
            font-style: italic;
            color: #7f8c8d;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px solid #ecf0f1;
        }
        
        @media (max-width: 768px) {
            .content {
                padding: 2rem 1.5rem;
                margin: 0 10px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            nav {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem 20px;
            }
            
            main {
                margin-top: 140px;
            }
            
            .cookie-table {
                font-size: 0.9rem;
            }
            
            .types-grid {
                grid-template-columns: 1fr;
            }
        }