.sfo-list {
    margin-top: 20px;
}
.sfo-list .schema-faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}
.sfo-list .schema-faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 0;
    color: #024375;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sfo-list .schema-faq-icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 20px;
    text-align: center;
    font-weight: 700;
    border: 2px solid #006d7a;
    border-radius: 50%;
    color: #006d7a;
    flex-shrink: 0;
}
.sfo-list .schema-faq-question[aria-expanded="true"] .schema-faq-icon {
    background-color: #006d7a;
    color: #fff;
    border-color: #006d7a;
}
.sfo-list .schema-faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}
.sfo-list .schema-faq-answer p {
    margin: 8px 0 0;
}
/* CSS Document */