.module-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1040px;
    width: 100%;
}
.module-faq-item {
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    margin: 0;
}
.module-faq-question {
    width: 100%;
    text-align: left;
    background: none;
    color: #070707;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: bold;
    font-size: 24px;
    padding: 0px 0px 0px 20px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
}
.module-faq-question:focus {
    outline: none;
    box-shadow: none;
}
.module-faq-toggle {
    background: #035458;
    color: #fff;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0;
    padding: 0;
}
.module-faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    color: #070707;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    padding: 0 0 0 20px;
    border: none !important;
    opacity: 0;
    transition: 1s cubic-bezier(.4,0,.2,1);
}
.module-faq-item.active .module-faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 10px 0px 15px 20px;
    border: none;
}
.module-faq-item.active .module-faq-toggle {
    display: none;
}