.terms-page {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
}

.terms-hero {
    padding-bottom: var(--space-12);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--space-12);
}

.terms-hero h1 {
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.terms-hero .lead {
    font-size: var(--fs-xl);
    color: var(--color-text);
    max-width: 800px;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
}

.term-section {
    margin-bottom: var(--space-12);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--color-surface-hover);
}

.term-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.term-section h2 {
    font-size: var(--fs-xl);
    color: #FFFFFF;
    margin-bottom: var(--space-4);
    position: relative;
    padding-left: var(--space-4);
    border-left: 3px solid var(--color-primary);
}

.term-section p {
    line-height: var(--lh-relaxed);
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
}

.term-section ul {
    list-style-type: none;
    margin-left: var(--space-4);
    margin-bottom: var(--space-6);
}

.term-section ul li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-2);
    color: var(--color-text-muted);
}

.term-section ul li::before {
    content: "•";
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.term-section address {
    font-style: normal;
    color: var(--color-text);
    background-color: var(--color-surface);
    padding: var(--space-6);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    margin-top: var(--space-4);
}

.term-section address strong {
    color: var(--color-primary);
    display: block;
    margin-bottom: var(--space-2);
    font-size: var(--fs-lg);
}

@media (max-width: 768px) {
    .terms-page {
        padding-top: var(--space-8);
    }
    
    .terms-hero h1 {
        font-size: var(--fs-3xl);
    }
    
    .term-section h2 {
        font-size: var(--fs-lg);
    }
}