/* Legal Pages Styles */
.legal-content, .support-content {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--white);
}

.legal-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.legal-updated {
    color: var(--light-gray);
    font-size: 16px;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.legal-section p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 16px;
}

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

.legal-section li {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 16px;
}

/* Support Page Styles */
.support-hero {
    text-align: center;
    margin-bottom: 64px;
}

.support-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.support-subtitle {
    font-size: 20px;
    color: var(--medium-gray);
    line-height: 1.5;
}

.support-card {
    background: var(--extra-light-gray);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    text-align: center;
    margin-bottom: 64px;
    box-shadow: var(--shadow-md);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.support-card h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.support-email {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.support-response {
    font-size: 16px;
    color: var(--light-gray);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 64px;
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 16px;
}

.support-footer {
    text-align: center;
    padding: 48px;
    background: var(--extra-light-gray);
    border-radius: var(--border-radius-lg);
}

.support-footer p {
    font-size: 20px;
    color: var(--medium-gray);
    margin-bottom: 24px;
}

.email-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.email-button:hover {
    background: #E31C5F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.email-button svg {
    width: 24px;
    height: 24px;
}

/* Footer Links Update */
.footer-links {
    display: flex;
    gap: 32px;
    margin: 16px 0;
}

.footer-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.footer-links a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-title, .support-title {
        font-size: 36px;
    }
    
    .support-email {
        font-size: 20px;
    }
    
    .support-card {
        padding: 32px 24px;
    }
    
    .faq-section h2 {
        font-size: 28px;
    }
    
    .faq-item {
        padding: 24px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .legal-title, .support-title {
        font-size: 28px;
    }
    
    .legal-section h2 {
        font-size: 24px;
    }
    
    .support-subtitle {
        font-size: 16px;
    }
    
    .support-email {
        font-size: 18px;
        word-break: break-all;
    }
    
    .email-button {
        font-size: 16px;
        padding: 12px 20px;
    }
}