.msb-faq {
    padding: 18px 0;
    position: relative;
}

.msb-faq__head {
    margin-bottom: 12px;
}

.msb-faq__title {
    margin: 0;
    font-size: 26px;
    font-weight: 600;
    color: #091e42;
}

.msb-faq__list {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    padding: 12px;
}

.msb-faq__item {
}

.msb-faq__item:first-child {
    border-top: 0;
}

.msb-faq__q {
    cursor: pointer;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    list-style: none;
    background: #fff;
}

.msb-faq__q::-webkit-details-marker {
    display: none;
}

.msb-faq__qtext {
    font-weight: 500;
    color: #091E42;
    line-height: 1.35;
    font-size: 18px;
}

.msb-faq__meta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.msb-faq__date {
    font-size: 14px;
    color: #505F79;
    display: block;
    text-align: right;
    margin-bottom: 12px;
}

.msb-faq__chev {
    width: 26px;
    height: 26px;
    top: -6px;
    border-radius: 999px;
    position: relative;
}

.msb-faq__chev:before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 12px;
    height: 12px;
    border-right: 2px solid #091E42;
    border-bottom: 2px solid #091E42;
    transform: rotate(45deg);
    top: 8px;
}

.msb-faq__item[open] .msb-faq__chev:before {
    transform: rotate(-135deg);
    top: 10px;
}

.msb-faq__a {
    padding: 0 12px 12px;
    color: #091E42;
    line-height: 1.6;
}

.msb-faq__a p {
    margin: 0 0 10px;
}

.msb-faq__a p:last-child {
    margin-bottom: 0;
}

/* Floating CTA bottom-right like UI */
.msb-faq__floating-cta {
    position: absolute;
    right: 0;
    bottom: -38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #ff6a00;
    background: #fff;
    color: #ff6a00;
    text-decoration: none;
    font-size: 14px;
}

.msb-faq__floating-cta:hover {
    background: rgba(255, 106, 0, .06);
}
.msb-faq__head {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.msb-faq__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #091e42;
    text-decoration: none;
    white-space: nowrap;
}

.msb-faq__more:hover {
    text-decoration: underline;
}

.msb-faq__more-ico {
    width: 16px;
    height: 16px;
    position: relative;
}

.msb-faq__more-ico:before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 7px;
    height: 7px;
    border-right: 2px solid rgba(9, 30, 66, .8);
    border-bottom: 2px solid rgba(9, 30, 66, .8);
    transform: rotate(-45deg);
}

.msb-faq__cta-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.msb-faq__cta {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ff6a00;
    color: #ff6a00;
    background: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}