/**
 * Static Pages Styles
 * Shared across privacy.html, about.html, help.html
 */

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.last-updated {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Static Content Container */
.static-content {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
}

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

.content-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #22c55e;
}

.content-section p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

/* Content Lists */
.content-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-list li {
    font-size: 1rem;
    color: #374151;
    line-height: 1.8;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.content-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Back to Top */
.back-to-top {
    text-align: center;
    margin: 2rem 0;
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: white;
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #f9fafb;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */

/* Tablet */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .static-content {
        padding: 2rem;
    }

    .content-section h2 {
        font-size: 1.25rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .static-content {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .content-section {
        margin-bottom: 2rem;
    }

    .content-section h2 {
        font-size: 1.125rem;
    }

    .content-section p,
    .content-list li {
        font-size: 0.9375rem;
    }
}
