/* Content Page (Support) */
.content-page {
    padding-top: 100px;
    /* Navbar height + spacing */
    padding-bottom: 80px;
    min-height: 80vh;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 64px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.page-header .subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.content-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 48px;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    margin-top: 40px;
    color: var(--color-primary);
}

.content-section p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.content-list {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 24px;
    color: var(--color-text-secondary);
}

.content-list li {
    margin-bottom: 8px;
}

.contact-email {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-accent);
    margin: 8px 0 16px;
}

.contact-email:hover {
    text-decoration: underline;
}

.response-time {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .content-page {
        padding-top: 84px;
        padding-bottom: 40px;
    }

    .page-header {
        margin-bottom: 32px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header .subtitle {
        font-size: 1rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
        margin-top: 32px;
    }

    .content-section h3 {
        font-size: 1.25rem;
        margin-top: 24px;
    }

    .contact-email {
        font-size: 1.125rem;
    }

    .faq-item {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }
}