﻿    :root {
            --primary-color: #3a36e0;
            --secondary-color: #6c63ff;
            --accent-color: #ff6b6b;
            --dark-color: #2d2b5c;
            --light-bg: #f8f9ff;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
            --border-color: #e0e7ff;
            --card-shadow: 0 10px 30px rgba(58, 54, 224, 0.08);
            --hover-shadow: 0 15px 40px rgba(58, 54, 224, 0.12);
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        
        .terms-container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: white;
            box-shadow: var(--card-shadow);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--border-color);
        }
        
        /* Animated header section */
        .header-section {
            /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); */
            padding: 10px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .header-section::before {
            content: "";
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            top: -200px;
            right: -100px;
            animation: float 20s infinite ease-in-out;
        }
        
        .header-section::after {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            bottom: -150px;
            left: -80px;
            animation: float 25s infinite ease-in-out reverse;
        }
        
        .header-section h1 {
            font-weight: 800;
            font-size: 39px;
            position: relative;
            z-index: 2;
            letter-spacing: -0.5px;
            color: #55497a;
        }
        
        .header-section p {
            font-size: 17px;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            font-weight: 300;
            color: #000;
        }
        
        /* Content section */
        .content-section {
            padding: 4rem 3rem;
        }
        
        @media (max-width: 768px) {
            .content-section {
                padding: 2.5rem 1.5rem;
            }
            .header-section h1 {
                font-size: 2.5rem;
            }
            .header-section {
                padding: 4rem 1.5rem;
            }
        }
        
        /* Company info banner */
        .company-info {
            background: linear-gradient(to right, #f0f4ff, #f8f9ff);
            border-radius: 12px;
            padding: 1.8rem;
            margin-bottom: 3rem;
            /* border-left: 5px solid var(--primary-color); */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        }
        
        .company-info h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .company-details div {
            margin-bottom: 0.5rem;
        }
        
        .company-details i {
            color: var(--primary-color);
            margin-right: 12px;
            width: 20px;
        }
        
        /* Terms sections styling */
        .term-section {
            padding: 2.5rem;
            margin-bottom: 2.5rem;
            border-radius: 16px;
            background-color: white;
            border: 1px solid var(--border-color);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .term-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            /* background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color)); */
            transition: width 0.3s ease;
        }
        
        .term-section:hover {
            transform: translateY(-8px);
            box-shadow: var(--hover-shadow);
        }
        
        .term-section:hover::before {
            width: 8px;
        }
        
        .term-section h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #cf8c47;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
        }
        
        .term-section h2 i {
            margin-right: 15px;
            color: #cf8c47;
            background: rgba(58, 54, 224, 0.1);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
        }
        
        .term-section p, .term-section ul {
            color: var(--text-dark);
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        
        .term-section ul {
            padding-left: 1.8rem;
        }
        
        .term-section li {
            margin-bottom: 0.8rem;
            position: relative;
        }
        
        .term-section li::marker {
            color: var(--primary-color);
        }
        
        .nested-list {
            padding-left: 2rem;
            margin-top: 0.8rem;
        }
        
        /* Important term sections */
        .important-term {
            border: 1px solid rgba(255, 107, 107, 0.3);
            background-color: rgba(255, 107, 107, 0.03);
        }
        
        .important-term h2 {
            color: #d63031;
        }
        
        .important-term::before {
            background: linear-gradient(to bottom, #ff6b6b, #ff8e8e);
        }
        
        /* Highlighted text */
        .highlight-text {
            background: linear-gradient(120deg, rgba(58, 54, 224, 0.1) 0%, rgba(108, 99, 255, 0.1) 100%);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
            /* border-left: 4px solid var(--primary-color); */
        }
        
        /* Animation classes */
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        .fade-in-up {
            opacity: 1;
            transform: translateY(30px);
            transition: opacity 0.6s, transform 0.6s;
        }
        
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Accept button */
        .accept-section {
            background: linear-gradient(to right, #f8f9ff, #f0f4ff);
            border-radius: 16px;
            padding: 2.5rem;
            text-align: center;
            margin-top: 3rem;
            border: 2px dashed var(--border-color);
        }
        .animate-on-scroll
        {
          opacity:1;
        }
        .accept-btn {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 1rem 3rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 10px 20px rgba(58, 54, 224, 0.2);
            margin-top: 1.5rem;
        }
        
        .accept-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(58, 54, 224, 0.3);
        }
        
        /* Footer */
        .footer-section {
            background-color: var(--dark-color);
            color: #cbd5e1;
            padding: 3rem;
            text-align: center;
            border-radius: 0 0 20px 20px;
        }
        
        .footer-section p {
            margin-bottom: 0.8rem;
        }
        
        .last-updated {
            font-size: 0.9rem;
            color: #94a3b8;
            margin-top: 2rem;
        }
        
        /* Quick navigation buttons */
        .quick-nav {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 1000;
        }
        
        .quick-nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-color);
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(58, 54, 224, 0.3);
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .quick-nav-btn:hover {
            background: var(--secondary-color);
            transform: scale(1.1);
        }
        
        @media (max-width: 992px) {
            .quick-nav {
                display: none;
            }
        }