* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #0a0e1a;
            color: #e0e6ed;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 14, 26, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 255, 170, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #00ffaa;
            text-decoration: none;
            text-shadow: 0 0 10px rgba(0, 255, 170, 0.5);
            transition: all 0.3s ease;
            letter-spacing: 1px;
        }
        
        .logo:hover {
            color: #00d4ff;
            text-shadow: 0 0 15px rgba(0, 212, 255, 0.7);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: #e0e6ed;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #00d4ff;
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover {
            color: #00ffaa;
        }
        
        .nav-menu a:hover:after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: #00ffaa;
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(10, 14, 26, 0.9), rgba(0, 212, 255, 0.1));
        }
        
        .privacy-content {
            padding: 50px 0;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-title h1 {
            font-size: 2.5rem;
            color: #00ffaa;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .page-title h1:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(45deg, #00ffaa, #00d4ff);
        }
        
        .privacy-section {
            margin-bottom: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(0, 255, 170, 0.1);
        }
        
        .privacy-section h2 {
            font-size: 1.8rem;
            color: #00d4ff;
            margin-bottom: 20px;
        }
        
        .privacy-section h3 {
            font-size: 1.4rem;
            color: #00ffaa;
            margin: 25px 0 15px;
        }
        
        .privacy-section p {
            margin-bottom: 15px;
            color: #e0e6ed;
        }
        
        .privacy-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
            color: #e0e6ed;
        }
        
        .privacy-section li {
            margin-bottom: 10px;
        }
        
        /* Footer */
        footer {
            background-color: #0a0e1a;
            padding: 50px 0 20px;
            border-top: 1px solid rgba(0, 255, 170, 0.3);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: #00ffaa;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #e0e6ed;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #00d4ff;
            padding-left: 5px;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: #e0e6ed;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #00d4ff;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: rgba(10, 14, 26, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .page-title h1 {
                font-size: 2rem;
            }
            
            .privacy-section {
                padding: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .page-title h1 {
                font-size: 1.8rem;
            }
        }

