  :root {
            --primary: #667eea;
            --secondary: #764ba2;
            --accent: #00D9FF;
            --dark: #0A0E27;
            --dark-light: #1A1F3A;
            --text-light: #8B93B0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, var(--dark) 0%, #1a1f3a 100%);
            color: #fff;
            line-height: 1.6;
        }

        .privacy-section {
            max-width: 800px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .privacy-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .privacy-header h1 {
            font-size: 48px;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff, var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .effective-date {
            color: var(--text-light);
            font-size: 14px;
        }

        .privacy-intro {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 50px;
        }

        .privacy-block {
            margin-bottom: 40px;
        }

        .privacy-block h2 {
            font-size: 24px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 15px;
        }

        .privacy-block p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 12px;
        }

        .privacy-block ul {
            list-style: none;
            padding-left: 20px;
            margin-top: 10px;
        }

        .privacy-block li {
            color: var(--text-light);
            font-size: 15px;
            padding: 5px 0;
            position: relative;
        }

        .privacy-block li::before {
            content: '•';
            position: absolute;
            left: -15px;
            color: var(--accent);
        }

        .contact-box {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-box h2 {
            font-size: 24px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 10px;
        }

        .contact-box p {
            color: var(--text-light);
            font-size: 15px;
            margin-bottom: 15px;
        }

        .contact-email {
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
        }

        .contact-email:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .privacy-section {
                padding: 50px 20px;
            }

            .privacy-header h1 {
                font-size: 36px;
            }

            .privacy-block h2 {
                font-size: 20px;
            }
        }