/* استایل کلی آیتم */
.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* سوال */
.faq-question {
    padding: 15px;
    cursor: pointer;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    transition: background 0.3s;
    font-weight: bold;
    color: #333;
}

.faq-question:hover {
    background: #f0f0f0;
}

/* آیکون + و - */
.faq-icon {
    font-size: 20px;
    margin-left: 10px;
    font-weight: bold;
    color: #075e54;
    width: 20px;
    text-align: center;
}

/* جواب */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
}

.faq-answer-content {
    padding: 15px;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid #eee;
}

/* کلاس فعال برای باز شدن */
.faq-item.active .faq-answer {
    max-height: 500px; /* ارتفاع کافی برای نمایش متن */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* چرخش آیکون + به شکل x */
}