:root {
            --primary-color: #0a0e27;
            --secondary-color: #6a11cb;
            --accent-color: #2575fc;
            --text-color: #e0e0e0;
            --light-bg: #1a1f3a;
            --dark-bg: #0d1021;
            --gradient: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--primary-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 5%;
            box-shadow: 0 2px 20px rgba(106, 17, 203, 0.3);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--accent-color);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* Main Content */
        main {
            padding: 8rem 5% 5rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .page-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .page-title::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 4px;
            background: var(--gradient);
            bottom: -10px;
            left: 20%;
        }

        .terms-content {
            background-color: var(--light-bg);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .terms-section {
            margin-bottom: 2.5rem;
        }

        .terms-section:last-child {
            margin-bottom: 0;
        }

        .terms-section h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        .terms-section h3 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
            color: var(--text-color);
        }

        .terms-section p {
            margin-bottom: 1rem;
            color: #b8b8b8;
        }

        .terms-section ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
            color: #b8b8b8;
        }

        .terms-section li {
            margin-bottom: 0.5rem;
        }

        /* Footer */
        footer {
            background-color: var(--dark-bg);
            padding: 3rem 5%;
            margin-top: 5rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 2px;
            background: var(--gradient);
            bottom: -5px;
            left: 0;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: #b8b8b8;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
              nav ul {
                display: none;
                position: fixed;
                top: 68px;
                left: 0;
                width: 100%;
                height: 100vh;
                background-color: #0a0e27;
                flex-direction: column;
                gap: 24px;
                transition: all 0.3s ease 0s;
            }

            nav ul.active{
                display: flex;
               
            }

            .burger {
                display: block;
            }

            .page-title {
                font-size: 2rem;
            }

            .terms-content {
                padding: 2rem;
            }
        }

