.nexa-faq-tab-content {
    margin-top: 30px;
}
.nexa-faq-tab-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #111827;
    font-weight: 700;
}
.nexa-faq-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.nexa-faq-item.open {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.nexa-faq-question {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1f2937;
    user-select: none;
}
.nexa-faq-question:hover {
    background-color: #f3f4f6;
}
.nexa-faq-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}
.nexa-faq-item.open .nexa-faq-icon {
    transform: rotate(45deg);
}
.nexa-faq-answer {
    padding: 0 20px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.nexa-faq-item.open .nexa-faq-answer {
    max-height: 500px;
    padding: 12px 20px 16px;
}
