.terms-page {
    padding-top: var(--space-8);
    padding-bottom: var(--space-24);
    background-color: var(--color-background);
}

.breadcrumb {
    margin-bottom: var(--space-8);
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.breadcrumb__item:not(:last-child)::after {
    content: '/';
    margin-left: var(--space-2);
    color: var(--color-wood-dark);
}

.breadcrumb__item a:hover {
    color: var(--color-primary);
}

.terms-header {
    text-align: center;
    margin-bottom: var(--space-16);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--color-wood-light);
}

.terms-title {
    font-size: var(--text-5xl);
    color: var(--color-charcoal);
    margin-bottom: var(--space-4);
    font-family: var(--font-serif);
}

.terms-intro {
    font-size: var(--text-lg);
    color: var(--color-sage-dark);
    font-style: italic;
    max-width: none;
}

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

.terms-section {
    margin-bottom: var(--space-12);
}

.terms-section:last-of-type {
    margin-bottom: 0;
}

.terms-section h2 {
    font-size: var(--text-2xl);
    color: var(--color-charcoal);
    margin-bottom: var(--space-4);
    padding-top: var(--space-6);
    font-family: var(--font-serif);
    font-weight: 500;
}

.terms-section p {
    font-size: var(--text-base);
    line-height: var(--line-height-relaxed);
    color: var(--color-stone);
    margin-bottom: var(--space-4);
    max-width: none;
}

.terms-footer {
    margin-top: var(--space-16);
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-wood-light);
    text-align: center;
}

.terms-footer p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    margin: 0 auto;
}

.terms-footer a {
    color: var(--color-sage);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.terms-footer a:hover {
    color: var(--color-sage-dark);
}

@media (min-width: 640px) {
    .terms-page {
        padding-top: var(--space-12);
    }
    
    .terms-title {
        font-size: var(--text-6xl);
    }
    
    .terms-section h2 {
        font-size: var(--text-3xl);
    }
}

@media (min-width: 1024px) {
    .terms-content {
        max-width: 800px;
    }
}