* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #e94560;
            --light: #f5f5f5;
            --text: #ffffff;
            --text-secondary: #d3d3d3;
        }
        
        body {
            background-color: var(--primary);
            color: var(--text);
            line-height: 1.6;
            padding-top: 80px;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--accent);
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Cookie Policy Styles */
        .cookie {
            padding: 50px 0;
            background-color: var(--primary);
        }
        
        .cookie-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .cookie-header h1 {
            font-size: 2.5rem;
            color: var(--text);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .cookie-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background-color: var(--accent);
        }
        
        .cookie-content {
            background-color: var(--secondary);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .cookie-section {
            margin-bottom: 30px;
        }
        
        .cookie-section h2 {
            font-size: 1.8rem;
            color: var(--accent);
            margin-bottom: 15px;
        }
        
        .cookie-section h3 {
            font-size: 1.4rem;
            color: var(--text);
            margin: 20px 0 10px;
        }
        
        .cookie-section p {
            color: var(--text-secondary);
            margin-bottom: 15px;
        }
        
        .cookie-section ul {
            list-style-type: disc;
            margin-left: 20px;
            color: var(--text-secondary);
        }
        
        .cookie-section li {
            margin-bottom: 10px;
        }
        
        .cookie-section a {
            color: var(--accent);
            text-decoration: none;
        }
        
        .cookie-section a:hover {
            text-decoration: underline;
        }
        
        .cookie-table-container {
            overflow-x: auto;
            margin: 20px 0;
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            color: var(--text-secondary);
        }
        
        .cookie-table th,
        .cookie-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .cookie-table th {
            background-color: rgba(233, 69, 96, 0.1);
            color: var(--text);
            font-weight: 600;
        }
        
        .cookie-table tr:last-child td {
            border-bottom: none;
        }
        
        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .cookie-type {
            background-color: rgba(22, 33, 62, 0.5);
            border-radius: 8px;
            padding: 20px;
        }
        
        .cookie-type h3 {
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            padding: 50px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--accent);
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: var(--text-secondary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: var(--secondary);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 20px 0;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .hamburger {
                display: flex;
            }
            
            .cookie-header h1 {
                font-size: 2rem;
            }
            
            .cookie-content {
                padding: 20px;
            }
            
            .cookie-table {
                font-size: 0.9rem;
            }
            
            .cookie-table th,
            .cookie-table td {
                padding: 8px 10px;
            }
        }

