/* Terms & Conditions Page - Legal Document Style */

.terms-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, 
        rgba(99, 102, 241, 0.05) 0%, 
        rgba(139, 92, 246, 0.03) 50%, 
        transparent 100%
    );
    text-align: center;
}

.terms-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.terms-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

/* Terms Content */
.terms-content {
    padding: 4rem 0 6rem;
}

.terms-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

/* Sidebar Navigation */
.terms-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.terms-nav {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
}

.terms-nav h3 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.terms-nav ul {
    list-style: none;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.terms-nav a:hover,
.terms-nav a.active {
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
}

/* Terms Body */
.terms-body {
    max-width: 800px;
}

.terms-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terms-section:last-of-type {
    border-bottom: none;
}

.terms-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.terms-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-primary);
}

.terms-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.terms-section li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.terms-section a {
    color: #818cf8;
    text-decoration: underline;
}

.terms-section a:hover {
    color: #6366f1;
}

/* Terms Acceptance */
.terms-acceptance {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    text-align: center;
}

.terms-acceptance p {
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .terms-layout {
        grid-template-columns: 1fr;
    }
    
    .terms-sidebar {
        position: static;
        order: 2;
    }
    
    .terms-body {
        order: 1;
    }
}

@media (max-width: 768px) {
    .terms-nav {
        display: none;
    }
    
    .terms-section h2 {
        font-size: 1.25rem;
    }
}