* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #1a0033;
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(90deg, rgba(138,43,226,0.9) 0%, rgba(30,144,255,0.9) 100%);
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 4px 20px 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: #fff;
            text-decoration: none;
            text-shadow: 0 0 10px rgba(255,255,255,0.7);
            letter-spacing: 2px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 20px;
        }
        
        .nav-menu a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: #ff6ec7;
            text-shadow: 0 0 5px rgba(255,110,199,0.7);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #ff6ec7;
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        main {
            padding: 120px 0 50px;
            background: linear-gradient(180deg, #1a0033, #330066);
            min-height: 100vh;
        }
        
        .cookie-content {
            background: linear-gradient(135deg, rgba(138,43,226,0.2), rgba(30,144,255,0.2));
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin-bottom: 50px;
        }
        
        .page-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #ff6ec7;
            position: relative;
            display: inline-block;
        }
        
        .page-title::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #ff6ec7, #7873f5);
            bottom: -10px;
            left: 0;
        }
        
        .cookie-content h2 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #7873f5;
        }
        
        .cookie-content h3 {
            font-size: 1.4rem;
            margin: 25px 0 10px;
            color: #ff6ec7;
        }
        
        .cookie-content p {
            margin-bottom: 15px;
            color: #e6e6ff;
        }
        
        .cookie-content ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .cookie-content li {
            margin-bottom: 10px;
            color: #e6e6ff;
        }
        
        .cookie-content a {
            color: #ff6ec7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .cookie-content a:hover {
            text-decoration: underline;
        }
        
        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .cookie-type {
            background: rgba(26,0,51,0.5);
            border-radius: 10px;
            padding: 20px;
            border-left: 3px solid #ff6ec7;
        }
        
        .cookie-type h4 {
            color: #ff6ec7;
            margin-bottom: 10px;
        }
        
        .cookie-type p {
            margin-bottom: 0;
            font-size: 0.95rem;
        }
        
        .last-updated {
            font-style: italic;
            color: #7873f5;
            margin-top: 30px;
            text-align: right;
        }
        
        .disclaimer {
            background: rgba(26,0,51,0.7);
            padding: 20px;
            text-align: center;
            color: #7873f5;
            font-size: 0.9rem;
        }
        
        footer {
            background: linear-gradient(90deg, rgba(138,43,226,0.9) 0%, rgba(30,144,255,0.9) 100%);
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: #fff;
            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: #e6e6ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #ff6ec7;
            padding-left: 5px;
        }
        
        .footer-contact p {
            color: #e6e6ff;
            margin-bottom: 10px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #e6e6ff;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: linear-gradient(180deg, rgba(138,43,226,0.9), rgba(30,144,255,0.9));
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.5s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .cookie-content {
                padding: 25px;
            }
        }

