* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gradient: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff);
            --secondary-gradient: linear-gradient(45deg, #fb5607, #ffbe0b, #8338ec);
            --dark-purple: #2a0845;
            --neon-pink: #ff10f0;
            --neon-cyan: #00f5ff;
            --space-gray: #1a1a2e;
            --accent-orange: #ff9500;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: var(--dark-purple);
            color: white;
            line-height: 1.8;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 2rem;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: var(--primary-gradient);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: var(--neon-pink);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-pink);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: white;
            transition: 0.3s;
        }

        main {
            margin-top: 80px;
            padding: 4rem 2rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-hero {
            text-align: center;
            padding: 4rem 0;
            background: var(--primary-gradient);
            border-radius: 20px;
            margin-bottom: 4rem;
        }

        .page-hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1rem;
            font-weight: 900;
        }

        .page-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .last-updated {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 3rem;
            border-left: 4px solid var(--neon-cyan);
        }

        .last-updated strong {
            color: var(--neon-cyan);
        }

        .privacy-section {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            margin-bottom: 3rem;
            border: 1px solid rgba(255, 16, 240, 0.3);
        }

        .privacy-section h2 {
            color: var(--neon-cyan);
            font-size: 2rem;
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--neon-cyan);
        }

        .privacy-section h3 {
            color: var(--accent-orange);
            font-size: 1.4rem;
            margin: 2rem 0 1rem 0;
        }

        .privacy-section p {
            margin-bottom: 1.5rem;
            opacity: 0.9;
            text-align: justify;
        }

        .privacy-section ul,
        .privacy-section ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .privacy-section li {
            margin-bottom: 0.8rem;
            color: var(--neon-cyan);
        }

        .highlight-box {
            background: linear-gradient(45deg, rgba(255, 16, 240, 0.2), rgba(0, 245, 255, 0.2));
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid var(--neon-pink);
            margin: 2rem 0;
        }

        .highlight-box h4 {
            color: var(--neon-pink);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .contact-info {
            background: var(--secondary-gradient);
            padding: 3rem;
            border-radius: 20px;
            margin: 3rem 0;
            text-align: center;
        }

        .contact-info h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .contact-info p {
            margin-bottom: 0.5rem;
        }

        .contact-info a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: var(--neon-cyan);
        }

        .rights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .right-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid var(--accent-orange);
        }

        .right-card h4 {
            color: var(--accent-orange);
            margin-bottom: 1rem;
        }

        .right-card p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
        }

        .data-table th,
        .data-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .data-table th {
            background: var(--neon-cyan);
            color: var(--dark-purple);
            font-weight: bold;
        }

        .data-table tr:hover {
            background: rgba(255, 16, 240, 0.1);
        }

        .footer {
            background: var(--dark-purple);
            padding: 3rem 2rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(255, 16, 240, 0.3);
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--neon-pink);
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--neon-pink);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            color: rgba(255, 255, 255, 0.7);
        }

        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--space-gray);
                flex-direction: column;
                justify-content: start;
                align-items: center;
                padding-top: 3rem;
                transition: left 0.3s ease;
            }

            nav ul.active {
                left: 0;
            }

            .burger {
                display: flex;
            }

            .privacy-section {
                padding: 2rem;
            }

            .rights-grid {
                grid-template-columns: 1fr;
            }

            .data-table {
                font-size: 0.9rem;
            }

            .data-table th,
            .data-table td {
                padding: 0.8rem;
            }
            h2{
                font-size: 1.5em !important;
            }
        }

