* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary: #1a0033;
            --secondary: #FF00FF;
            --accent: #00FFFF;
            --light: #FFD700;
            --dark: #9370DB;
            --gradient: linear-gradient(135deg, #1a0033 0%, #4B0082 100%);
        }
        
        body {
            background-color: var(--primary);
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: rgba(26, 0, 51, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(255, 0, 255, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--accent);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background: white;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
            min-height: 100vh;
        }
        
        .privacy-header {
            background: var(--gradient);
            padding: 80px 0;
            text-align: center;
        }
        
        .privacy-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .privacy-header p {
            font-size: 1.2rem;
            color: var(--accent);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .privacy-content {
            padding: 60px 0;
        }
        
        .privacy-section {
            margin-bottom: 50px;
        }
        
        .privacy-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .privacy-section h3 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: white;
        }
        
        .privacy-section p {
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .privacy-section ul {
            margin-left: 30px;
            margin-bottom: 20px;
        }
        
        .privacy-section li {
            margin-bottom: 10px;
            color: var(--accent);
        }
        
        /* Footer */
        footer {
            background: var(--primary);
            padding: 50px 0 20px;
            border-top: 1px solid rgba(255, 0, 255, 0.2);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
        }
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
        }
        
        .footer-column {
            margin-right: 50px;
            margin-bottom: 30px;
        }
        
        .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--accent);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        
        .footer-contact {
            margin-bottom: 30px;
        }
        
        .footer-contact h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .footer-contact p {
            color: var(--accent);
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--accent);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(26, 0, 51, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                justify-content: start;
                padding-top: 50px;
                transition: right 0.5s ease;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .privacy-header h1 {
                font-size: 2.2rem;
            }
            
            .privacy-header p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .privacy-header h1 {
                font-size: 1.8rem;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-column {
                margin-right: 0;
            }
        }

