/* ===========================================
   STATIC PAGES STYLES
   About, Contact, Privacy, Terms pages
   =========================================== */

.static-page {
    padding: 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.static-page-container {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.static-page h1 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 8px;
    font-weight: 800;
}

.static-page .last-updated {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.static-page .content-section {
    margin-bottom: 32px;
}

.static-page .content-section:last-child {
    margin-bottom: 0;
}

.static-page h2 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.static-page h3 {
    font-size: 1.1rem;
    color: #334155;
    margin: 16px 0 8px;
}

.static-page p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 12px;
}

.static-page ul {
    color: #475569;
    line-height: 1.7;
    padding-left: 24px;
    margin: 12px 0;
}

.static-page li {
    margin-bottom: 8px;
}

.static-page a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.static-page a:hover {
    text-decoration: underline;
}

/* Contact page specific */
.contact-info {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin: 16px 0;
}

.contact-item {
    margin-bottom: 16px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    display: block;
    color: #1e293b;
    margin-bottom: 4px;
}

.contact-item p {
    margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
    .static-page {
        padding: 12px;
    }

    .static-page-container {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .static-page h1 {
        font-size: 1.6rem;
    }

    .static-page h2 {
        font-size: 1.15rem;
    }
}