/* ========================================
   SUPPORT & POLICY PAGES STYLES
   ======================================== */

/* FAQ Styles */
.faq-container {
    margin-bottom: 3rem;
}

.faq-category {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.faq-question i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.7;
}

.faq-answer ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 3rem;
}

.faq-cta h3 {
    margin-bottom: 1rem;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-info p {
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

/* Guide Styles */
.guide-content {
    margin-bottom: 3rem;
}

.guide-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.step-card {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.step-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.faq-simple {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
}

.faq-simple h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.faq-simple p {
    color: var(--text-light);
    margin: 0;
}

/* Policy Pages */
.policy-content {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    line-height: 1.8;
}

.policy-content h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

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

.policy-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.policy-content strong {
    color: var(--text-dark);
}

.policy-updated {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-light);
}

/* Alert Styles */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.alert i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-info {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    color: #1565c0;
}

.alert-warning {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    color: #e65100;
}

.alert-success {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

/* Responsive */
@media (max-width: 768px) {
    .step-card {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .faq-cta {
        padding: 1.5rem;
    }
}