/* Pages CSS - Support, Terms, Privacy */

.page-header {
    background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}

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

/* Support Page */
.support-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

.support-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.support-sidebar h3 {
    margin-bottom: 1rem;
    color: var(--purple);
}

.support-sidebar ul {
    list-style: none;
}

.support-sidebar ul li {
    margin-bottom: 0.75rem;
}

.support-sidebar ul li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    padding: 0.5rem;
    border-radius: 5px;
}

.support-sidebar ul li a:hover {
    color: var(--purple);
    background: var(--bg-light);
}

.support-main {
    max-width: 800px;
}

.support-section {
    margin-bottom: 4rem;
}

.support-section h2 {
    font-size: 2rem;
    color: var(--purple);
    margin-bottom: 1.5rem;
}

.support-section h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.faq-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--purple);
}

.faq-item h3 {
    font-size: 1.125rem;
    color: var(--purple);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

.support-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.support-section ol li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.support-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.support-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.contact-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--purple);
}

.contact-card p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: normal !important;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: var(--purple);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
    }

    .support-sidebar {
        position: static;
    }

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

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
