* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #0a1628;
            --secondary: #1e3a5f;
            --accent: #00d4ff;
            --light: #f0f8ff;
            --dark: #030b1a;
            --gradient: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
            --text: #e0e0e0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--primary);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 22, 40, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .menu {
            display: flex;
            list-style: none;
        }
        
        .menu li {
            margin-left: 30px;
        }
        
        .menu a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .menu a:hover {
            color: var(--accent);
        }
        
        .menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        
        .menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .burger span {
            width: 25px;
            height: 3px;
            background: var(--text);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        .page-header {
            padding: 120px 0 60px;
            background: var(--gradient);
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--light);
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        main {
            padding: 60px 0;
        }
        
        .terms-content {
            background: var(--secondary);
            padding: 40px;
            border-radius: 10px;
            margin-bottom: 40px;
        }
        
        .terms-content h2 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: var(--light);
        }
        
        .terms-content h2:first-child {
            margin-top: 0;
        }
        
        .terms-content h3 {
            font-size: 1.4rem;
            margin: 25px 0 10px;
            color: var(--light);
        }
        
        .terms-content p {
            margin-bottom: 15px;
        }
        
        .terms-content ul {
            margin-left: 25px;
            margin-bottom: 15px;
        }
        
        .terms-content li {
            margin-bottom: 8px;
        }
        
        .last-updated {
            text-align: center;
            font-style: italic;
            color: var(--text);
            margin-top: 20px;
        }
        
        footer {
            background: var(--dark);
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--light);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column a:hover {
            color: var(--accent);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--secondary);
            font-size: 0.9rem;
            color: var(--text);
        }
        
        @media (max-width: 768px) {
            .menu {
                position: fixed;
                top: -100%;
                left: 0;
                width: 100%;
                background: var(--primary);
                flex-direction: column;
                padding: 20px;
                transform: translateY(-100%);
                transition: transform 0.3s ease;
            }
            
            .menu.active {
                transform: translateY(0);
                top: 68px;
            }
            
            .menu li {
                margin: 10px 0;
            }
            
            .burger {
                display: flex;
            }
            
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .terms-content {
                padding: 25px;
            }
        }

