/* Static pages: About, Contact, Privacy, Terms */
.static-page {
    max-width: 780px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}
.static-page-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.static-page-updated {
    color: var(--text-muted, #6c757d);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}
.static-section {
    margin-bottom: 2rem;
}
.static-section h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--border-color, #e9ecef);
}
.static-section h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
}
.static-section p,
.static-section li {
    line-height: 1.7;
    color: var(--text-color, #333);
}
.static-section ul {
    padding-left: 1.25rem;
}
.static-section a {
    color: var(--link-color, #0d6efd);
}
.static-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.95rem;
}
.static-table th,
.static-table td {
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border-color, #dee2e6);
    text-align: left;
}
.static-table th {
    background: var(--table-header-bg, #f8f9fa);
    font-weight: 600;
}

/* Dark mode */
[data-theme="dark"] .static-page-title {
    color: #e2e8f0;
}
[data-theme="dark"] .static-section p,
[data-theme="dark"] .static-section li {
    color: #cbd5e1;
}
[data-theme="dark"] .static-section h2 {
    color: #e2e8f0;
    border-bottom-color: #334155;
}
[data-theme="dark"] .static-section h3 {
    color: #e2e8f0;
}
[data-theme="dark"] .static-section a {
    color: #60a5fa;
}
[data-theme="dark"] .static-table th {
    background: #0f172a;
    color: #94a3b8;
}
[data-theme="dark"] .static-table th,
[data-theme="dark"] .static-table td {
    border-color: #334155;
    color: #cbd5e1;
}
