        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #0a0a0f;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #00d4ff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .back-btn {
            background: transparent;
            color: #00d4ff;
            border: 2px solid #00d4ff;
            padding: 8px 16px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            background: #00d4ff;
            color: white;
        }

        /* Main Content */
        main {
            margin-top: 100px;
            padding: 40px 0;
            background: #0f0f1a;
            min-height: calc(100vh - 100px);
        }

        .policy-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem 0;
            background: rgba(255,255,255,0.02);
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .policy-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .policy-header p {
            color: rgba(255,255,255,0.7);
            font-size: 1.1rem;
        }

        .policy-content {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 3rem;
            margin-bottom: 2rem;
        }

        .policy-content h2 {
            color: #00d4ff;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            margin-top: 2rem;
        }

        .policy-content h2:first-child {
            margin-top: 0;
        }

        .policy-content h3 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            margin-top: 1.5rem;
        }

        .policy-content p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .policy-content ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }

        .policy-content li {
            color: rgba(255,255,255,0.8);
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .policy-content strong {
            color: #00d4ff;
            font-weight: 600;
        }

        /* Cookie Types Table */
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: rgba(255,255,255,0.02);
            border-radius: 12px;
            overflow: hidden;
        }

        .cookie-table th,
        .cookie-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .cookie-table th {
            background: rgba(0, 212, 255, 0.2);
            color: #00d4ff;
            font-weight: 600;
        }

        .cookie-table td {
            color: rgba(255,255,255,0.8);
        }

        .cookie-table tr:last-child td {
            border-bottom: none;
        }

        /* Cookie Categories */
        .cookie-category {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 2rem;
            margin: 2rem 0;
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .category-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
        }

        .essential-icon { background: #2ed573; }
        .functional-icon { background: #00d4ff; }
        .analytics-icon { background: #ffa502; }
        .marketing-icon { background: #ff4757; }

        .category-header h3 {
            color: white;
            margin: 0;
        }

        .category-toggle {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }

        .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: 0.3s;
            border-radius: 24px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: 0.3s;
            border-radius: 50%;
        }

        input:checked + .slider {
            background-color: #00d4ff;
        }

        input:checked + .slider:before {
            transform: translateX(26px);
        }

        input:disabled + .slider {
            cursor: not-allowed;
            opacity: 0.5;
        }

        /* Browser Settings */
        .browser-settings {
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 12px;
            padding: 2rem;
            margin: 2rem 0;
        }

        .browser-settings h3 {
            color: #00d4ff;
            margin-bottom: 1rem;
        }

        .browser-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .browser-item {
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
        }

        .browser-item h4 {
            color: white;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .browser-item p {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
            margin: 0;
        }

        /* Contact Information */
        .contact-info {
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .contact-info h3 {
            color: #00d4ff;
            margin-bottom: 0.5rem;
        }

        .contact-info p {
            margin-bottom: 0;
        }

        .contact-info a {
            color: #00d4ff;
            text-decoration: none;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        /* Cookie Preferences Panel */
        .cookie-preferences {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 16px;
            padding: 1.5rem;
            max-width: 300px;
            z-index: 1001;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .cookie-preferences h4 {
            color: #00d4ff;
            margin-bottom: 1rem;
        }

        .cookie-preferences p {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .cookie-preferences-btn {
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .cookie-preferences-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 212, 255, 0.4);
        }

        .cookie-preferences-btn.secondary {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.3);
            color: rgba(255,255,255,0.8);
        }

        .cookie-preferences-btn.secondary:hover {
            background: rgba(255,255,255,0.1);
            transform: none;
            box-shadow: none;
        }

        /* Footer */
        footer {
            background: #0a0a0f;
            padding: 2rem 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
        }

        .footer-content {
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #00d4ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                padding: 0 15px;
            }

            .logo {
                font-size: 1.5rem;
            }

            .policy-header h1 {
                font-size: 2rem;
            }

            .policy-content {
                padding: 2rem 1.5rem;
            }

            .cookie-table {
                font-size: 0.9rem;
            }

            .cookie-table th,
            .cookie-table td {
                padding: 10px;
            }

            .browser-grid {
                grid-template-columns: 1fr;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }

            .cookie-preferences {
                bottom: 10px;
                right: 10px;
                left: 10px;
                max-width: none;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .policy-header h1 {
                font-size: 1.8rem;
            }

            .policy-content {
                padding: 1.5rem 1rem;
            }

            .cookie-category {
                padding: 1.5rem;
            }

            .category-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .category-toggle {
                margin-left: 0;
                margin-top: 0.5rem;
            }
        }
