/* Styles for content pages (Privacy, Terms, Help) */

.page-content {
    min-height: calc(100vh - 200px);
    padding: 60px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--light-gray);
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.page-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

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

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.content-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--white);
}

.content-section p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.content-section ul {
    margin: 16px 0 16px 24px;
}

.content-section li {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.content-section ol {
    margin: 16px 0 16px 24px;
}

.content-section ol li {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.content-section strong {
    color: var(--white);
    font-weight: 600;
}

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

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

.text-link {
    color: var(--white);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.text-link:hover {
    opacity: 0.8;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }

    .content-section h2 {
        font-size: 28px;
    }

    .content-section h3 {
        font-size: 18px;
    }

    .content-section p,
    .content-section li,
    .content-section ol li {
        font-size: 16px;
    }

    .page-content {
        padding: 40px 0;
    }

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