/* FAQ Accordion Base Styles */
.faq-accordion-8d79e572-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.faq-item-8d79e572 {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    /* Transition set via controls */
}

.faq-header-8d79e572 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    outline: none;
}

.faq-question-8d79e572 {
    flex: 1;
    margin-right: 15px;
}

.faq-icon-8d79e572 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Icon Rotation */
.faq-item-8d79e572.active .faq-icon-8d79e572.faq-rotate-icon {
    transform: rotate(180deg);
}

.faq-content-8d79e572 {
    display: none;
}

.faq-answer-8d79e572 {
    /* Margin top set via controls */
}

/* Base resets */
.faq-question-8d79e572, .faq-answer-8d79e572 p {
    margin: 0;
	color: #4e5774;
	font-size: 14px;
	line-height: 22px;
}
