.faq-section {
    margin-bottom: 2.5rem;
}

.section-title {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}
h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.faq-question {
    padding: 0.4rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: all 0.2s ease;
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.2;
}

.faq-question:hover {
    color: #3498db;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.4;
}

.faq-item.active .faq-answer {
    padding: 0.4rem 0 0.8rem 0;
    max-height: 1000px;
}

.arrow {
    border: solid #666;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-item.active .arrow {
    transform: rotate(-135deg);
}

#faq .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 0.4rem 0;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        font-size: 0.85rem;
    }
}

#support-cta {
    text-align: center;
    padding: 3rem 1rem;
    background: #f8f9fa;
    margin-top: 2rem;
}

#support-cta h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

#support-cta p {
    color: #666;
    margin-bottom: 1rem;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.support-link:hover {
    background: #edf2f7;
    color: #2980b9;
}

.support-link svg {
    transition: transform 0.2s ease;
}

.support-link:hover svg {
    transform: translateX(2px);
} 