@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;700&family=Orbitron:wght@400;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Noto Sans Devanagari', sans-serif;
            background-color: #0a0a14;
            color: #e0e0e0;
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 20, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid #ff6b00;
            box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ff6b00;
            text-decoration: none;
            text-shadow: 0 0 10px rgba(255, 107, 0, 0.7);
            letter-spacing: 2px;
            font-family: 'Orbitron', sans-serif;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: #ff6b00;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ff6b00;
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }
        
        .burger span {
            width: 100%;
            height: 3px;
            background-color: #e0e0e0;
            transition: all 0.3s ease;
        }
        
        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .burger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
            padding-bottom: 80px;
        }
        
        .page-title {
            font-size: 36px;
            margin-bottom: 30px;
            color: #ff6b00;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
            font-family: 'Orbitron', sans-serif;
        }
        
        .page-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #ff6b00, #ffcc00);
        }
        
        .terms-content {
            background: linear-gradient(135deg, #1a1a2e, #2a1a3e);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
        }
        
        .terms-section {
            margin-bottom: 30px;
        }
        
        .terms-section h2 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #ffcc00;
        }
        
        .terms-section p {
            margin-bottom: 15px;
        }
        
        .terms-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .terms-section li {
            margin-bottom: 10px;
        }
        
        /* Footer */
        footer {
            background-color: #0a0a14;
            padding: 40px 0;
            border-top: 1px solid rgba(255, 107, 0, 0.3);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .footer-logo {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
        }
        
        .footer-logo h3 {
            font-size: 24px;
            color: #ff6b00;
            margin-bottom: 10px;
            text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
            font-family: 'Orbitron', sans-serif;
        }
        
        .footer-links {
            flex: 2;
            min-width: 300px;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }
        
        .footer-column {
            margin-bottom: 20px;
            min-width: 150px;
        }
        
        .footer-column h4 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #ff6b00;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column a:hover {
            color: #ffcc00;
        }
        
        .footer-contact {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-contact h4 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #ff6b00;
        }
        
        .contact-info {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: #ffcc00;
        }
        
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #a0a0a0;
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 20, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }
            
            .nav-menu.active {
                transform: translateY(0);
            }
            
            .nav-menu li {
                margin: 10px 0;
            }
            
            .burger {
                display: flex;
            }
            
            .terms-content {
                padding: 20px;
            }
            
            .page-title {
                font-size: 28px;
            }
            
            .terms-section h2 {
                font-size: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links {
                justify-content: center;
            }
        }

