/* FAQ Widget Styles */
.agile-faq-widget {
    margin: 20px 0;
}
.faq-item {
    margin-bottom: 15px;
}
.faq-question-wrapper {
    display: flex;
    align-items: center;
}
.faq-question {
    cursor: pointer;
    margin: 0;
    font-weight: bold;
    display: flex;
    align-items: center;
	transition: color 0.3s ease;
}
.faq-question-icon {
    transition: color 0.3s ease;
}
.faq-question-icon-collapsed {
    display: inline;
    margin-right: 10px; /* Default spacing, will be overridden by Elementor settings */
}
.faq-question-icon-expanded {
    display: none;
    margin-right: 10px; /* Default spacing, will be overridden by Elementor settings */
}
.faq-answer {
    display: none;
    padding: 10px;
    border: 1px solid #ddd;
    border-top: none;
}
.faq-item.expanded .faq-question-icon-expanded {
    display: inline;
}
.faq-item.expanded .faq-question-icon-collapsed {
    display: none;
}
