* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary-color: #9d4edd;
            --secondary-color: #c77dff;
            --accent-color: #e0aaff;
            --text-color: #240046;
            --background-color: #10002b;
            --highlight-color: #ff006e;
            --light-color: #ffffff;
        }
        
        body {
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(16, 0, 43, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 5%;
            box-shadow: 0 4px 20px rgba(157, 78, 221, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent-color);
            text-decoration: none;
            text-shadow: 0 0 10px rgba(224, 170, 255, 0.7);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 2rem;
        }
        
        .nav-menu a {
            color: var(--light-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--accent-color);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--highlight-color);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--light-color);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        main {
            margin-top: 80px;
            padding: 3rem 5%;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .page-title h1 {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .page-title h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
        }
        
        .cookie-content {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(224, 170, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
        }
        
        .cookie-section {
            margin-bottom: 2rem;
        }
        
        .cookie-section h2 {
            font-size: 1.8rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        
        .cookie-section h3 {
            font-size: 1.4rem;
            color: var(--secondary-color);
            margin: 1.5rem 0 1rem;
        }
        
        .cookie-section p {
            color: var(--light-color);
            margin-bottom: 1rem;
        }
        
        .cookie-section ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }
        
        .cookie-section li {
            color: var(--light-color);
            margin-bottom: 0.5rem;
        }
        
        .cookie-types {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .cookie-type {
            flex: 1;
            min-width: 250px;
            background: rgba(36, 0, 70, 0.3);
            border-radius: 10px;
            padding: 1.5rem;
        }
        
        .cookie-type h4 {
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        
        .cookie-type p {
            color: var(--light-color);
            font-size: 0.9rem;
        }
        
        footer {
            background-color: rgba(16, 0, 43, 0.9);
            padding: 3rem 5%;
            color: var(--light-color);
            margin-top: 3rem;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-section a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: var(--accent-color);
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(224, 170, 255, 0.2);
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: rgba(16, 0, 43, 0.95);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 2rem 0;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 1rem 0;
            }
            
            .page-title h1 {
                font-size: 2rem;
            }
        }

