* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary-color: #FFD700;
            --secondary-color: #8B0000;
            --accent-color: #00CED1;
            --text-color: #FFFFFF;
            --bg-color: #000000;
        }
        
        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
        }
        
        .logo:hover {
            color: var(--accent-color);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .burger-menu {
            display: none;
            cursor: pointer;
        }
        
        .burger-menu span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: var(--text-color);
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            margin-top: 80px;
            padding: 50px 0;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-title h1 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .page-title p {
            font-size: 18px;
            color: var(--accent-color);
        }
        
        .privacy-content {
            background-color: rgba(26, 26, 26, 0.7);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
            border: 1px solid rgba(255, 215, 0, 0.3);
        }
        
        .privacy-section {
            margin-bottom: 30px;
        }
        
        .privacy-section h2 {
            font-size: 24px;
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        
        .privacy-section h3 {
            font-size: 20px;
            color: var(--secondary-color);
            margin: 20px 0 10px;
        }
        
        .privacy-section p {
            font-size: 16px;
            color: #ccc;
            margin-bottom: 15px;
        }
        
        .privacy-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .privacy-section ul li {
            font-size: 16px;
            color: #ccc;
            margin-bottom: 10px;
        }
        
        .privacy-section a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .privacy-section a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }
        
        /* Footer */
        footer {
            background-color: var(--bg-color);
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--accent-color);
        }
        
        .footer-column p {
            color: #ccc;
            line-height: 1.6;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888;
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease;
                z-index: 999;
            }
            
            nav ul.active {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .burger-menu {
                display: block;
            }
            
            .page-title h1 {
                font-size: 28px;
            }
            
            .privacy-content {
                padding: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .page-title h1 {
                font-size: 24px;
            }
        }

