        /* Hero Section with Image Background */
        .terms-hero {
            background: 
                linear-gradient(rgba(0, 109, 91, 0.719), rgba(0, 0, 0, 0.884)),
                url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2011&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
        }

        .hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-content p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.95;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator i {
            font-size: 2rem;
            color: white;
            opacity: 0.8;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-10px) translateX(-50%);
            }
            60% {
                transform: translateY(-5px) translateX(-50%);
            }
        }

        /* Main Content Layout */
        .terms-main {
            display: flex;
            gap: 40px;
            padding: 60px 0;
        }

        /* Sidebar Navigation */
        .terms-sidebar {
            flex: 0 0 300px;
            position: sticky;
            top: 120px;
            height: fit-content;
            background: var(--neutral-light);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .sidebar-header {
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary);
        }

        .sidebar-header h2 {
            font-family: 'Montserrat', sans-serif;
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 600;
        }

        .sidebar-nav {
            list-style: none;
        }

        .sidebar-nav li {
            margin-bottom: 10px;
        }

        .sidebar-nav a {
            display: block;
            padding: 12px 15px;
            color: var(--text);
            text-decoration: none;
            border-radius: 8px;
            transition: var(--transition);
            font-weight: 500;
            position: relative;
        }

        .sidebar-nav a:hover {
            background: rgba(0, 109, 91, 0.1);
            color: var(--primary);
        }

        .sidebar-nav a.active {
            background: rgba(0, 109, 91, 0.1);
            color: var(--primary);
            font-weight: 600;
        }

        .sidebar-nav a.active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary);
            border-radius: 0 4px 4px 0;
        }

        /* Content Area */
        .terms-content {
            flex: 1;
        }

        .content-section {
            margin-bottom: 60px;
            scroll-margin-top: 100px;
        }

        .content-section h2 {
            font-family: 'Montserrat', sans-serif;
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: 600;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--neutral-light);
        }

        .content-section h3 {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            font-size: 1.5rem;
            margin: 25px 0 15px;
            font-weight: 600;
        }

        .content-section p {
            margin-bottom: 15px;
            color: #555;
        }

        .content-section ul, .content-section ol {
            margin: 15px 0 15px 30px;
        }

        .content-section li {
            margin-bottom: 10px;
            color: #555;
        }

        .highlight-box {
            background: var(--neutral-light);
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }

        .warning-box {
            background: #fff3e0;
            border-left: 4px solid #ff9800;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }

        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }

        .info-table th {
            background: var(--primary);
            color: white;
            padding: 15px;
            text-align: left;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        .info-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }

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

        .info-table tr:nth-child(even) {
            background: #f9f9f9;
        }

        .last-updated {
            background: var(--neutral-light);
            padding: 20px;
            border-radius: 10px;
            margin-top: 40px;
            text-align: center;
            font-style: italic;
            color: #666;
        }


        /* Responsive Design */
        @media (max-width: 992px) {
            .terms-main {
                flex-direction: column;
            }
            
            .terms-sidebar {
                position: static;
                flex: none;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .content-section h2 {
                font-size: 1.7rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }
             .info-table {
                font-size: 0.9rem;}

            .content-section h2 {
                font-size: 1.5rem;
            }

            .content-section h3 {
                font-size: 1.3rem;
            }

            .terms-sidebar {
                padding: 20px;
            }
        }