.faq-bace3ae9-container {
    width: 100%;
}
.faq-bace3ae9-heading {
    margin-bottom: 1em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}
.faq-bace3ae9-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.faq-bace3ae9-item {
    border: 1px solid transparent;
    background-color: #18457B;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-bace3ae9-header {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start; /* Align to top for multi-line text */
    padding: 1.2rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}
.faq-bace3ae9-question {
    font-weight: 400;
    font-size: 1.125rem;
    padding-right: 0;
    color: #ffffff;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word; /* Ensure it breaks long words if necessary */
    hyphens: auto;
    flex: 1 1 auto; /* Allow to grow and shrink appropriately */
    min-width: 0; /* Critical for flex child to allow text wrapping */
}
.faq-bace3ae9-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: color 0.3s ease;
    margin-top: 0.2em; /* Slight adjustment to align with first line of text */
}
.faq-bace3ae9-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    transition: fill 0.3s ease;
}
.faq-bace3ae9-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}
.faq-bace3ae9-answer.is-open {
    grid-template-rows: 1fr;
}
.faq-bace3ae9-answer-content {
    overflow: hidden;
    padding: 0 1.5rem 0 3.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.faq-bace3ae9-answer.is-open .faq-bace3ae9-answer-content {
    padding-bottom: 1.5rem;
}
