
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.2s;
}

.faq-question:hover {
    color: var(--primary-color);
    background: #f8fafc;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #64748b;
    line-height: 1.6;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
    /* Adjust as needed */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.contact-box {
    background: var(--surface-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
}

.contact-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}