.faq-acc__item {
    border-bottom: 1px solid #ddd;
    border-bottom-style: solid;
}
.faq-acc__header {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    user-select: none;
}
.faq-acc__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #ddd;
    flex-shrink: 0;
    transition: background 0.25s ease, border-color 0.25s ease;
}
.faq-acc__icon svg {
    width: 16px;
    height: 16px;
    stroke: #1e3a5f;
    transition: transform 0.3s ease, stroke 0.25s ease;
}
.faq-acc__header:hover .faq-acc__icon svg {
    transform: rotate(90deg);
}
.faq-acc__item.is-open .faq-acc__icon {
    background: #1e3a5f;
    border-color: #1e3a5f;
}
.faq-acc__item.is-open .faq-acc__icon svg {
    stroke: #fff;
    transform: rotate(90deg);
}
.faq-acc__title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.faq-acc__body {
    padding: 12px 0 16px 54px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}
