.elementor-465 .elementor-element.elementor-element-6d94578{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-465 .elementor-element.elementor-element-27877e0 .jet-listing-dynamic-repeater__items{flex-direction:column;justify-content:flex-start;}.elementor-465 .elementor-element.elementor-element-27877e0 .jet-listing-dynamic-repeater__item > *{justify-content:flex-start;font-family:"Helvetica Neue", Sans-serif;margin:0px 0px 10px 0px;}/* Start custom CSS for jet-listing-dynamic-repeater, class: .elementor-element-27877e0 *//* The wrapper for each FAQ pair */
.faq-row {
    
    display: flex;
    flex-direction: column; /* This forces the stack (Question top, Answer bottom) */
    width: 100%;
    margin-bottom: 10px;
    overflow: hidden;
}

/* Style the Question (H4) */
.faq-row h4 {
    font-size:22px;
    padding: 15px;
    margin: 0 !important;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* Plus icon */
.faq-row h4::after {
    content: '+';
    font-weight: bold;
    transition: transform 0.3s;
}

/* Style the Answer (P) */
.faq-row p {
    max-height: 0;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 15px;
    background: #ffffff;
    transition: all 0.3s ease-in-out;
    width: 100%;
    box-sizing: border-box;
}

/* Active State - When clicked */
.faq-row.active p {
    max-height: 500px; /* Big enough to show text */
    padding: 15px;
}

.faq-row.active h4::after {
    transform: rotate(45deg);
}/* End custom CSS */