/* 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;
}

/* Support page specific styles */
.contact-methods {
    margin-top: 48px;
}

.contact-card {
    background-color: var(--gray);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    margin-top: 24px;
}

.email-link {
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    margin-top: 16px;
    padding: 16px 32px;
    background-color: var(--white);
    color: var(--black);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.email-link:hover {
    background-color: var(--text-secondary);
    transform: translateY(-2px);
}

.response-time-card {
    background-color: var(--gray);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.response-time-card h2 {
    margin-bottom: 16px;
}

.get-in-touch {
    margin-top: 48px;
}

.get-in-touch h2 {
    text-align: center;
    margin-bottom: 32px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
}

.contact-item {
    background-color: var(--gray);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.contact-item h3 {
    margin-top: 0;
}

.app-store-link {
    display: inline-block;
    transition: transform 0.2s ease;
}

.app-store-link:hover {
    transform: translateY(-2px);
}

/* 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;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-card,
    .contact-item,
    .response-time-card {
        padding: 24px;
    }

    .email-link {
        font-size: 18px;
        padding: 14px 28px;
    }
}
