 :root {
            --primary-color: #a100ff;
            --secondary-color: #a100ff;
            --bs-gradient: linear-gradient(90deg, #a100ff, #ff6ec4);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
            scroll-padding-top: 100px;
            font-size: 14px;
        }
        
        .terms-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
        }
        
        .terms-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 60px 20px;
            text-align: center;
            border-radius: 10px;
            margin-bottom: 40px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .terms-header h1 {
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .terms-header p {
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .last-updated {
            background-color: white;
            color: #a100ff;
            padding: 10px 20px;
            border-radius: 25px;
            display: inline-block;
            margin-top: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .content-wrapper {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 40px;
            align-items: start;
        }
        
        .terms-content {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            position: relative;
        }
        
        .section {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--border-color);
            scroll-margin-top: 30px;
        }
        
        .section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .section h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
            display: inline-block;
        }
        
        .section h3 {
            color: var(--secondary-color);
            margin: 25px 0 15px 0;
        }
        
        .section h4 {
            color: var(--primary-color);
            margin: 20px 0 10px 0;
        }
        
        .section p {
            margin-bottom: 15px;
        }
        
        .section ul, .section ol {
            margin: 15px 0 15px 30px;
        }
        
        .section li {
            margin-bottom: 10px;
        }
        
        .highlight-box {
            background-color: var(--light-bg);
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .warning-box {
            background-color: #fef9e7;
            border-left: 4px solid var(--warning-color);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .success-box {
            background-color: #e8f6f3;
            border-left: 4px solid var(--success-color);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .contact-info {
            background: linear-gradient(135deg, var(--light-bg), #e8f4fc);
            padding: 30px;
            border-radius: 10px;
            margin-top: 30px;
            border: 1px solid var(--border-color);
        }
        
        .contact-info h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background-color: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .data-table th {
            background-color: var(--primary-color);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .data-table td {
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .data-table tr:last-child td {
            border-bottom: none;
        }
        
        .data-table tr:nth-child(even) {
            background-color: var(--light-bg);
        }
        
        .nav-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }
        
        .nav-button {
            background-color: var(--secondary-color);
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .nav-button:hover {
            background-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .nav-button.back {
            background-color: #f8022fff;
        }
        
        .nav-button.back:hover {
            background-color: #5a6268;
        }
        
        /* Quick Navigation Styles */
        .quick-nav {
            position: sticky;
            top: 30px;
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            margin-bottom: 0;
            border: 1px solid var(--border-color);
            max-height: calc(100vh - 100px);
            overflow-y: auto;
            z-index: 100;
        }
        
        .quick-nav::-webkit-scrollbar {
            width: 6px;
        }
        
        .quick-nav::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }
        
        .quick-nav::-webkit-scrollbar-thumb {
            background: var(--secondary-color);
            border-radius: 3px;
        }
        
        .quick-nav::-webkit-scrollbar-thumb:hover {
            background: var(--primary-color);
        }
        
        .quick-nav h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
        }
        
        .quick-nav ul {
            list-style: none;
            margin: 0;
        }
        
        .quick-nav li {
            margin-bottom: 12px;
            position: relative;
        }
        
        .quick-nav a {
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            padding: 8px 12px;
            border-radius: 5px;
            border-left: 3px solid transparent;
        }
        
        .quick-nav a:hover {
            color: var(--secondary-color);
            background-color: var(--light-bg);
            border-left-color: var(--secondary-color);
            padding-left: 15px;
        }
        
        .quick-nav a.active {
            color: var(--secondary-color);
            background-color: var(--light-bg);
            border-left-color: var(--secondary-color);
            font-weight: 600;
        }
        
        .quick-nav a::before {
            content: '';
            position: absolute;
            left: -5px;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .quick-nav a.active::before {
            opacity: 1;
        }
        
        /* Mobile Navigation Toggle */
        .mobile-nav-toggle {
            display: none;
            background: var(--secondary-color);
            color: white;
            border: none;
            padding: 12px 15px;
            border-radius: 5px;
            cursor: pointer;
            margin-bottom: 20px;
            width: 100%;
            font-weight: 600;
            transition: all 0.3s ease;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .mobile-nav-toggle:hover {
            background: var(--primary-color);
        }
        
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 250px 1fr;
                gap: 30px;
            }
            
            .quick-nav {
                padding: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 0;
            }
    
            .terms-content {
                padding: 25px;
            }
            
            .data-table {
                display: block;
                overflow-x: auto;
            }
            
            .nav-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .nav-button {
                text-align: center;
                justify-content: center;
            }
            
            /* Mobile Navigation */
            .mobile-nav-toggle {
                display: flex;
            }
            
            .quick-nav {
                position: static;
                max-height: none;
                margin-bottom: 30px;
                display: none;
            }
            
            .quick-nav.mobile-open {
                display: block;
                animation: slideDown 0.3s ease;
            }
            
            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-10px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }
        
        @media (max-width: 480px) {
            .terms-container {
                padding: 15px;
            }
            
            .terms-header {
                padding: 40px 20px;
            }
            
            .terms-content {
                padding: 20px;
            }
            
            .section {
                margin-bottom: 30px;
                padding-bottom: 20px;
            }
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        .quick-nav a:focus {
            outline: 2px solid var(--secondary-color);
            outline-offset: 2px;
        }
        
        .section:focus {
            outline: none;
        }
        
        .definition-list {
            margin: 20px 0;
        }
        
        .definition-list dt {
            font-weight: 600;
            color: var(--primary-color);
            margin-top: 15px;
        }
        
        .definition-list dd {
            margin-left: 20px;
            margin-bottom: 10px;
            color: var(--text-color);
        }