/* Terms Page Styles */
.page-header {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--primary-900) 100%);
    color: white;
    text-align: center;
}
.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.page-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}
.content-section {
    margin-bottom: 2.5rem;
}
.content-section h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 1rem;
}
.content-section h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--slate-800);
    margin: 1.5rem 0 0.75rem;
}
.content-section p, .content-section li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--slate-700);
    margin-bottom: 1rem;
}
.content-section ul, .content-section ol {
    padding-left: 2rem;
    margin-bottom: 1rem;
}
.content-section li {
    margin-bottom: 0.5rem;
}
.highlight-box {
    background: var(--primary-50);
    border-left: 4px solid var(--primary-500);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: var(--radius-lg);
}
.warning-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: var(--radius-lg);
}
.last-updated {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin-top: 1rem;
}
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.875rem;
}
.breadcrumb a {
    color: var(--primary-600);
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
