* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        :root {
            --primary-color: #0a0e27;
            --secondary-color: #1e3a8a;
            --accent-color: #3b82f6;
            --light-color: #f1f5f9;
            --text-color: #e2e8f0;
            --dark-text: #1e293b;
        }

        body {
            background-color: var(--primary-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 14, 39, 0.95);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--accent-color);
            text-decoration: none;
            letter-spacing: 1px;
        }

        .logo:hover {
            color: var(--light-color);
            transition: color 0.3s ease;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            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: 0.3s;
        }

        /* Main Content */
        main {
            padding-top: 100px;
            padding-bottom: 80px;
        }

        .page-title {
            text-align: center;
            margin-bottom: 50px;
            padding-top: 40px;
        }

        .page-title h1 {
            font-size: 2.5rem;
            color: var(--light-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .page-title h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }

        .terms-content {
            background-color: rgba(30, 58, 138, 0.1);
            border-radius: 8px;
            padding: 40px;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .terms-section {
            margin-bottom: 40px;
        }

        .terms-section:last-child {
            margin-bottom: 0;
        }

        .terms-section h2 {
            font-size: 1.8rem;
            color: var(--light-color);
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
        }

        .terms-section h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            height: 24px;
            width: 4px;
            background-color: var(--accent-color);
        }

        .terms-section h3 {
            font-size: 1.4rem;
            color: var(--light-color);
            margin: 25px 0 15px;
        }

        .terms-section p {
            color: var(--text-color);
            margin-bottom: 15px;
        }

        .terms-section ul {
            list-style: none;
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .terms-section ul li {
            color: var(--text-color);
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }

        .terms-section ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--accent-color);
        }

        /* Footer */
        footer {
            background-color: var(--primary-color);
            padding: 50px 0 20px;
            border-top: 1px solid rgba(59, 130, 246, 0.2);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--light-color);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--accent-color);
        }

        .footer-contact p {
            color: var(--text-color);
            margin-bottom: 10px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(59, 130, 246, 0.2);
        }

        .footer-bottom p {
            color: var(--text-color);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 14, 39, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }

            nav ul.show {
                transform: translateY(0);
            }

            nav ul li {
                margin: 10px 0;
            }

            .burger {
                display: block;
            }

            .page-title h1 {
                font-size: 2rem;
            }

            .terms-content {
                padding: 25px;
            }
        }

