@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto:wght@300;400;500&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #0a0e27;
            --secondary-color: #00d9ff;
            --accent-color: #ff006e;
            --text-color: #ffffff;
            --secondary-text: #8b92a9;
            --background-color: #f8f9fa;
            --section-padding: 80px 20px;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-color);
            background-color: var(--primary-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            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, 39, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary-color);
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .nav {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            margin-left: 30px;
        }
        
        .nav-link {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--secondary-color);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
        }
        
        .burger-line {
            height: 3px;
            background-color: var(--text-color);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        /* Terms Content */
        .terms-content {
            padding: 120px 20px 80px;
            background-color: var(--primary-color);
        }
        
        .page-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--text-color);
            text-align: center;
        }
        
        .terms-section {
            margin-bottom: 40px;
        }
        
        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-color);
            position: relative;
            padding-bottom: 10px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary-color);
        }
        
        .terms-text {
            color: var(--secondary-text);
            margin-bottom: 20px;
        }
        
        .terms-list {
            list-style: none;
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .terms-list-item {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            color: var(--secondary-text);
        }
        
        .terms-list-item::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }
        
        /* Footer */
        .footer {
            padding: 50px 20px 30px;
            background-color: #050817;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--text-color);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-color);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-link {
            margin-bottom: 10px;
        }
        
        .footer-link a {
            color: var(--secondary-text);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-link a:hover {
            color: var(--secondary-color);
        }
        
        .footer-contact {
            color: var(--secondary-text);
        }
        
        .footer-contact p {
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--secondary-text);
            font-size: 14px;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--primary-color);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transform: translateX(-100%);
                transition: transform 0.5s ease;
            }
            
            .nav.active {
                transform: translateX(0);
            }
            
            .nav-item {
                margin: 0 0 30px 0;
            }
            
            .nav-link {
                font-size: 18px;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .burger-menu.active .burger-line:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .burger-menu.active .burger-line:nth-child(2) {
                opacity: 0;
            }
            
            .burger-menu.active .burger-line:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            .terms-content {
                padding: 100px 20px 60px;
            }
            
            .page-title {
                font-size: 28px;
            }
            
            .section-title {
                font-size: 20px;
            }
        }

