 /* Import CSS variables from main.css */
        :root {
            --primary-color: #1a3a5f;
            --secondary-color: #2a5a8c;
            --accent-color: #e6a23c;
            --accent-secondary: #16a34a;
            --premium-blue: #1e88e5;
            --premium-green: #43a047;
            --light-bg: #f8fafc;
            --dark-bg: #0f172a;
            --text-color: #333;
            --gray: #64748b;
            --light-gray: #e2e8f0;
            --border-color: #e2e8f0;
            --transition: all 0.3s ease;
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --radius: 8px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: white;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        h1 { font-size: 3rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 2rem; }
        h4 { font-size: 1.5rem; }

        p {
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--accent-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== Header & Navigation ===== */
        .header {
            background: linear-gradient(135deg, #0f172a 0%, #1a3a5f 100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .topflexdiv {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .imagetop {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .toplogo {
            color: white;
            font-size: 1.4rem;
            font-weight: 700;
        }

        .imageicon {
            border-radius: 6px;
        }

        .header_menu {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .header_menu:hover {
            color: white;
            background: rgba(255, 255, 255, 0.1);
        }

        /* ===== Terms of Use Content ===== */
        .terms-hero {
            padding: 100px 0 60px;
            background: linear-gradient(135deg, #0f172a 0%, #1a3a5f 100%);
            color: white;
            text-align: center;
        }

        .terms-hero h1 {
            color: white;
            margin-bottom: 1rem;
        }

        .terms-hero p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .terms-content {
            padding: 4rem 0;
            background-color: white;
        }

        .terms-section {
            margin-bottom: 3.5rem;
            background: var(--light-bg);
            border-radius: var(--radius);
            padding: 2.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--accent-color);
        }

        .terms-section h2 {
            color: var(--primary-color);
            padding-bottom: 0.75rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--light-gray);
        }

        .terms-section h3 {
            color: var(--secondary-color);
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .terms-list {
            list-style-type: none;
            margin: 1.5rem 0;
        }

        .terms-list li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .terms-list li:before {
            content: "•";
            color: var(--accent-color);
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -2px;
        }

        .highlight-box {
            background: #fff8e1;
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }

        .highlight-box p {
            margin-bottom: 0.5rem;
        }

        .definitions-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .definitions-table th {
            background-color: var(--primary-color);
            color: white;
            text-align: left;
            padding: 1rem;
            font-weight: 600;
        }

        .definitions-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--light-gray);
        }

        .definitions-table tr:last-child td {
            border-bottom: none;
        }

        .definitions-table tr:nth-child(even) {
            background-color: var(--light-bg);
        }

        /* ===== Footer ===== */
        .footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-section p, .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.75rem;
            display: block;
        }

        .footer-section a:hover {
            color: var(--accent-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* ===== Back to Top Button ===== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
            z-index: 100;
            opacity: 0;
            visibility: hidden;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }

        /* ===== Responsive Design ===== */
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.7rem; }
            
            .terms-hero {
                padding: 80px 0 50px;
            }
            
            .terms-content {
                padding: 3rem 0;
            }
            
            .terms-section {
                padding: 2rem;
            }
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            
            .terms-hero {
                padding: 60px 0 40px;
            }
            
            .terms-content {
                padding: 2rem 0;
            }
            
            .terms-section {
                padding: 1.5rem;
            }
            
            .definitions-table {
                display: block;
                overflow-x: auto;
            }
        }

        @media (max-width: 576px) {
            .terms-hero h1 {
                font-size: 1.8rem;
            }
            
            .terms-hero p {
                font-size: 1rem;
            }
            
            .terms-section {
                padding: 1.25rem;
            }
            
            .back-to-top {
                width: 45px;
                height: 45px;
                bottom: 20px;
                right: 20px;
            }
        }