* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #121212;
            color: #E0E0E0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(18, 18, 18, 0.95);
            color: #E0E0E0;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #00FFFF;
            text-decoration: none;
            letter-spacing: 2px;
            text-shadow: 0 0 10px #00FFFF;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: #E0E0E0;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s;
            position: relative;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #00FFFF;
            transition: width 0.3s;
        }
        
        nav ul li a:hover {
            color: #00FFFF;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: #E0E0E0;
            transition: 0.3s;
        }
        
        main {
            padding-top: 80px;
            min-height: 100vh;
        }
        
        .terms-content {
            background-color: rgba(30, 30, 30, 0.8);
            border-radius: 10px;
            padding: 40px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 255, 255, 0.2);
        }
        
        .terms-title {
            font-size: 36px;
            color: #00FFFF;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
        }
        
        .terms-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #FF00FF;
        }
        
        .terms-section {
            margin-bottom: 30px;
        }
        
        .terms-section h2 {
            font-size: 24px;
            color: #00FFFF;
            margin-bottom: 15px;
        }
        
        .terms-section h3 {
            font-size: 20px;
            color: #FF00FF;
            margin: 20px 0 10px;
        }
        
        .terms-section p {
            margin-bottom: 15px;
        }
        
        .terms-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .terms-section li {
            margin-bottom: 8px;
        }
        
        footer {
            background-color: #121212;
            color: #E0E0E0;
            padding: 50px 0 30px;
            border-top: 1px solid rgba(0, 255, 255, 0.3);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #00FFFF;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #E0E0E0;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: #00FFFF;
            text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
        }
        
        .footer-contact p {
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
        }
        
        @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;
                backdrop-filter: blur(10px);
            }
            
            nav ul.active {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .burger {
                display: block;
            }
            
            .terms-content {
                padding: 20px;
            }
        }

