* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: #1A1A1A;
            color: #F5F5F5;
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 26, 0.95);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #DC143C;
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .logo span {
            color: #8B4513;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: #F5F5F5;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #DC143C;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #F5F5F5;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        main {
            padding: 100px 0 50px;
            background-color: #1A1A1A;
        }
        
        .page-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-header h1 {
            font-size: 40px;
            color: #DC143C;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .page-header p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cookie-content {
            background-color: #2C2C2C;
            padding: 40px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .cookie-section {
            margin-bottom: 30px;
        }
        
        .cookie-section h2 {
            font-size: 24px;
            color: #DC143C;
            margin-bottom: 15px;
        }
        
        .cookie-section h3 {
            font-size: 20px;
            color: #8B4513;
            margin: 20px 0 10px;
        }
        
        .cookie-section p {
            margin-bottom: 15px;
            font-size: 16px;
        }
        
        .cookie-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .cookie-section li {
            margin-bottom: 10px;
            font-size: 16px;
        }
        
        .cookie-section a {
            color: #DC143C;
            text-decoration: none;
        }
        
        .cookie-section a:hover {
            text-decoration: underline;
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .cookie-table th, .cookie-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid rgba(245, 245, 245, 0.1);
        }
        
        .cookie-table th {
            background-color: rgba(220, 20, 60, 0.2);
            color: #F5F5F5;
            font-weight: bold;
        }
        
        .cookie-table tr:hover {
            background-color: rgba(245, 245, 245, 0.05);
        }
        
        .last-updated {
            text-align: right;
            font-style: italic;
            color: rgba(245, 245, 245, 0.7);
            margin-top: 30px;
        }
        
        footer {
            background-color: #0D0D0D;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #DC143C;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #F5F5F5;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #DC143C;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: #F5F5F5;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(245, 245, 245, 0.1);
            font-size: 14px;
            color: rgba(245, 245, 245, 0.7);
        }
        
        @media (max-width: 768px) {
            .burger {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(26, 26, 26, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }
            
            nav ul.show {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .cookie-content {
                padding: 20px;
            }
            
            .cookie-table {
                font-size: 14px;
            }
            
            .cookie-table th, .cookie-table td {
                padding: 8px;
            }
        }

