* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(45deg, #8B5CF6, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #8B5CF6;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(45deg, #8B5CF6, #EC4899);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        
        .burger span {
            width: 25px;
            height: 3px;
            background: white;
            transition: all 0.3s ease;
        }
        
        main {
            margin-top: 80px;
            padding: 5rem 5%;
        }
        
        .page-hero {
            text-align: center;
            padding: 3rem 0;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
            border-radius: 20px;
            margin-bottom: 4rem;
        }
        
        .page-hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #8B5CF6, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .page-hero p {
            font-size: 1.3rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .content-section {
            max-width: 1000px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 20px;
            padding: 4rem;
            border: 1px solid rgba(139, 92, 246, 0.1);
        }
        
        .last-updated {
            background: rgba(16, 185, 129, 0.1);
            padding: 1rem 2rem;
            border-radius: 10px;
            margin-bottom: 3rem;
            text-align: center;
            border: 1px solid rgba(16, 185, 129, 0.2);
        }
        
        .last-updated strong {
            color: #10B981;
        }
        
        h2 {
            font-size: 2rem;
            margin: 3rem 0 1.5rem 0;
            color: #8B5CF6;
            position: relative;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(45deg, #8B5CF6, #EC4899);
            border-radius: 2px;
        }
        
        h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem 0;
            color: #EC4899;
        }
        
        p {
            margin-bottom: 1.5rem;
            opacity: 0.9;
            line-height: 1.8;
        }
        
        ul, ol {
            margin: 1rem 0 1.5rem 2rem;
            opacity: 0.9;
        }
        
        li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }
        
        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .cookie-type-card {
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
        }
        
        .cookie-type-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
        }
        
        .cookie-type-card h4 {
            color: #8B5CF6;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .cookie-details {
            background: rgba(236, 72, 153, 0.1);
            border: 1px solid rgba(236, 72, 153, 0.2);
            border-radius: 15px;
            padding: 2rem;
            margin: 3rem 0;
        }
        
        .cookie-details h3 {
            color: #EC4899;
            margin-bottom: 1.5rem;
        }
        
        .cookie-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .cookie-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }
        
        .cookie-item:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        
        .cookie-name {
            font-weight: bold;
            color: #10B981;
            margin-bottom: 0.5rem;
        }
        
        .cookie-purpose {
            opacity: 0.8;
            margin-bottom: 0.5rem;
        }
        
        .cookie-duration {
            font-size: 0.9rem;
            color: #8B5CF6;
        }
        
        .preferences-panel {
            background: linear-gradient(45deg, rgba(139, 92, 246, 0.1), rgba(16, 185, 129, 0.1));
            border-radius: 20px;
            padding: 3rem;
            margin: 3rem 0;
        }
        
        .preferences-panel h2 {
            text-align: center;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #8B5CF6, #10B981);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .preference-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .preference-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .preference-item:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        
        .preference-info h4 {
            color: #10B981;
            margin-bottom: 0.5rem;
        }
        
        .preference-info p {
            font-size: 0.9rem;
            opacity: 0.8;
            margin: 0;
        }
        
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(255, 255, 255, 0.2);
            transition: .4s;
            border-radius: 34px;
        }
        
        .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .slider {
            background: linear-gradient(45deg, #8B5CF6, #10B981);
        }
        
        input:checked + .slider:before {
            transform: translateX(26px);
        }
        
        .management-tools {
            background: rgba(59, 130, 246, 0.1);
            border-radius: 20px;
            padding: 3rem;
            margin: 3rem 0;
            text-align: center;
        }
        
        .management-tools h2 {
            color: #3B82F6;
            margin-bottom: 2rem;
        }
        
        .tool-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        
        .tool-button {
            padding: 1rem 2rem;
            background: linear-gradient(45deg, #3B82F6, #8B5CF6);
            border: none;
            border-radius: 25px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .tool-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
        }
        
        footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 3rem 5% 1rem;
            text-align: center;
            border-top: 1px solid rgba(139, 92, 246, 0.2);
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h3 {
            color: #EC4899;
            margin-bottom: 1rem;
        }
        
        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .footer-section a:hover {
            color: #8B5CF6;
        }
        
        @media (max-width: 768px) {
            .burger {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(26, 26, 46, 0.98);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                transition: right 0.3s ease;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .page-hero h1 {
                font-size: 2.5rem;
            }
            
            .content-section {
                padding: 2rem;
            }
            
            .cookie-types,
            .preference-options {
                grid-template-columns: 1fr;
            }
            
            .tool-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

