/* =============================================
   Terms and Conditions Page Styles
   ============================================= */

.terms-section {
    padding: 120px 0 80px;
    background: var(--bg-gradient);
    min-height: 100vh;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
}

.terms-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.terms-date {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.terms-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.terms-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-section {
        padding: 100px 0 60px;
    }

    .terms-content {
        padding: 1.5rem;
        margin: 0 1rem;
        border-radius: var(--radius-lg);
    }

    .terms-content h1 {
        font-size: 1.375rem;
    }

    .terms-content h2 {
        font-size: 1.125rem;
        margin-top: 2rem;
    }

    .terms-content p {
        font-size: 0.875rem;
    }
}