* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary-color: #6a1b9a;
            --secondary-color: #ffab00;
            --accent-color: #00e676;
            --dark-color: #212121;
            --light-color: #f5f5f5;
            --text-color: #e0e0e0;
            --bg-color: #121212;
        }
        
        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(106, 27, 154, 0.3);
            border-bottom: 1px solid rgba(255, 171, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--secondary-color);
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
        }
        
        .logo::before {
            content: "✦";
            margin-right: 8px;
            color: var(--accent-color);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--secondary-color);
        }
        
        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;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--secondary-color);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
            padding-bottom: 50px;
        }
        
        .page-title {
            text-align: center;
            margin: 40px 0 60px;
        }
        
        .page-title h1 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .page-title h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .privacy-content {
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(18, 18, 18, 0.8), rgba(33, 33, 33, 0.9));
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 171, 0, 0.2);
        }
        
        .privacy-section {
            margin-bottom: 30px;
        }
        
        .privacy-section h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .privacy-section h3 {
            font-size: 1.4rem;
            margin: 20px 0 10px;
            color: var(--accent-color);
        }
        
        .privacy-section p {
            margin-bottom: 15px;
        }
        
        .privacy-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .privacy-section li {
            margin-bottom: 10px;
        }
        
        /* Footer */
        footer {
            background-color: rgba(18, 18, 18, 0.9);
            padding: 50px 0 20px;
            border-top: 1px solid rgba(255, 171, 0, 0.2);
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
            position: relative;
            display: inline-block;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-col ul li a:hover {
            color: var(--secondary-color);
        }
        
        .footer-col p {
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(18, 18, 18, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s;
                z-index: 100;
            }
            
            nav ul.show {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .page-title h1 {
                font-size: 2rem;
            }
            
            .privacy-content {
                padding: 20px;
            }
        }

