* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #0a0e27;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 14, 39, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(255, 42, 109, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ff2a6d;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .logo:hover {
            color: #05d9e8;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: #05d9e8;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: #ffffff;
            transition: all 0.3s ease-in-out;
        }
        
        main {
            padding-top: 100px;
            padding-bottom: 50px;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 50px;
            padding-top: 30px;
        }
        
        .page-title h1 {
            font-size: 2.5rem;
            color: #ff2a6d;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .page-title p {
            font-size: 1.2rem;
            color: #cccccc;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cookie-content {
            background-color: #0f1634;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.2);
        }
        
        .cookie-section {
            margin-bottom: 40px;
        }
        
        .cookie-section:last-child {
            margin-bottom: 0;
        }
        
        .cookie-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #05d9e8;
        }
        
        .cookie-section h3 {
            font-size: 1.4rem;
            margin: 25px 0 15px;
            color: #ff2a6d;
        }
        
        .cookie-section p {
            margin-bottom: 15px;
            color: #cccccc;
        }
        
        .cookie-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
            color: #cccccc;
        }
        
        .cookie-section li {
            margin-bottom: 10px;
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            color: #cccccc;
        }
        
        .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(255, 42, 109, 0.2);
            color: #ffffff;
            font-weight: bold;
        }
        
        .cookie-table tr:hover {
            background-color: rgba(5, 217, 232, 0.1);
        }
        
        footer {
            background-color: #0a0e27;
            padding: 50px 0 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #ff2a6d;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #05d9e8;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #cccccc;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: #0f1634;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .page-title h1 {
                font-size: 2rem;
            }
            
            .cookie-content {
                padding: 20px;
            }
            
            .cookie-table {
                font-size: 0.9rem;
            }
            
            .cookie-table th,
            .cookie-table td {
                padding: 8px 10px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

