/* Support Page Enhancements */
.support-hero {
    padding-bottom: 50px;
    /* Reduced since content follows */
}

.support-content {
    max-width: 800px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
    margin-top: 50px;
}

.info-card {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.time-badge {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    border-radius: 100px;
    font-weight: 600;
    color: var(--primary-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.faq-section {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid #f0f0f0;
    padding: 40px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.toggle {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-top: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Toggle Active State */
.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust as needed */
}

.faq-item.active .toggle {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 25px;
    }
}