/* ========================================
   TERMS PAGE STYLES
   ======================================== */

.terms-hero {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: var(--space-2xl) 0;
}

.terms-hero h1 {
    color: white;
}

.terms-hero p {
    color: rgba(255,255,255,0.95);
    font-size: 1.125rem;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section h2 {
    color: var(--color-primary);
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
}

.terms-section h3 {
    color: var(--color-text);
    font-size: 1.375rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.terms-section p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.terms-section ul,
.terms-section ol {
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.terms-section li {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.terms-highlight {
    background: var(--color-bg-alt);
    border-left: 4px solid var(--color-primary);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

.terms-highlight p {
    margin-bottom: 0;
    font-weight: 500;
}

.terms-update-date {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    font-style: italic;
    margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
    .terms-section h2 {
        font-size: 1.5rem;
    }

    .terms-section h3 {
        font-size: 1.25rem;
    }
}
