/* FAQ Widget Styles */

.netrobit-faq-wrapper {
    width: 100%;
}

.netrobit-faq-item {
    background: #fff;
    border: 1px solid #E5E7EB;
    overflow: hidden;
}

.netrobit-faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    background: #fff;
    transition: background-color 0.2s ease;
    user-select: none;
}

.netrobit-faq-header:hover {
    background: #F9FAFB;
}

.netrobit-faq-question {
    margin: 0;
    /* font-size, font-weight, color etc handled by Elementor */
    line-height: inherit;
    flex: 1;
}

.netrobit-faq-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #161A2D;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.netrobit-faq-item.is-open .netrobit-faq-icon {
    transform: rotate(180deg);
}

.netrobit-faq-content {
    background: #fff;
    overflow: hidden;
    display: none;
}

.netrobit-faq-answer {
    margin: 0;
    /* font-size, line-height, color handled by Elementor */
}

@media (max-width: 768px) {
    .netrobit-faq-icon {
        width: 18px;
        height: 18px;
    }
}