.elementor-29590 .elementor-element.elementor-element-48ff564{--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:2em;--padding-bottom:2em;--padding-left:2em;--padding-right:2em;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-29590 .elementor-element.elementor-element-0bdba10{text-align:center;}.elementor-29590 .elementor-element.elementor-element-0bdba10 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:16px;font-weight:600;text-transform:uppercase;}.elementor-29590 .elementor-element.elementor-element-b5ea2f3{--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:2em;--padding-bottom:2em;--padding-left:2em;--padding-right:2em;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-29590 .elementor-element.elementor-element-48ff564{--content-width:1280px;}.elementor-29590 .elementor-element.elementor-element-b5ea2f3{--content-width:1280px;}}/* Start custom CSS for shortcode, class: .elementor-element-2019803 *//* --- Accordion Basic Styles --- */

.scf-faqs-accordion-wrapper {
    max-width: 100%; /* Adjust as needed */
    margin: 0px auto;
    border: 1px solid #ddd;
    border-radius: 0px;
    overflow: hidden; /* Clears any floats/margins inside */
}

.scf-accordion-item {
    border-bottom: 1px solid #eee; /* Separator between items */
}

.scf-accordion-item:last-child {
    border-bottom: none; /* No border on the last item */
}

.scf-accordion-header {
    background-color: #f7f7f7;
    color: #333;
    cursor: pointer;
    padding: 15px 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1em;
    transition: background-color 0.2s ease;
    display: flex; /* For aligning h2 and icon */
    justify-content: space-between; /* Pushes icon to the right */
    align-items: center; /* Vertically centers content */
}

.scf-accordion-header:hover,
.scf-accordion-header:focus {
    background-color: #e9e9e9;
}

.scf-accordion-header h2 {
    margin: 0; /* Remove default margin from h2 inside button */
    font-size: 1.1em; /* Adjust font size if needed */
    line-height: 1.4;
    color: #333;
}

.scf-accordion-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus"><line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"></line></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease;
    margin-left: 10px; /* Space between text and icon */
}

/* Rotate icon when accordion is expanded */
.scf-accordion-header[aria-expanded="true"] .scf-accordion-icon {
    transform: rotate(45deg); /* Plus becomes an 'X' or minus sign */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-minus"><line x1="5" y1="12" x2="19" y2="12"></line></svg>');
}

.scf-accordion-content {
    padding: 0 20px;
    background-color: #fff;
    max-height: 0; /* Initially hidden */
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out; /* Smooth transition */
    color: #555;
    line-height: 1.6;
}

/* Adjust padding when content is active/shown */
.scf-accordion-content.active {
    max-height: 1000px !important; /* A value larger than the max possible height of content */
    padding-top: 30px;
    padding-bottom: 30px;
}

/* Style for wp_kses_post content if it has p tags */
.scf-accordion-content p:last-child {
    margin-bottom: 0; /* Remove extra margin if last element is a p tag */
}/* End custom CSS */