.sfm .sfm-item {
    backdrop-filter: blur(4px);
    border-radius: 18px;
    border: 1px solid transparent;
    background: linear-gradient(#262626, #262626) padding-box, linear-gradient(to right, #DC1E64, #2C1F57) border-box;
    margin-bottom: 20px;
}

.sfm .sfm-q {
    margin: 0;
}

button.sfm-toggle {
    background-color: rgb(0 0 0 / 0%) !important;
    color: #fff !important;
    border: unset !important;
    white-space: unset !important;
}

.sfm .sfm-toggle {
    width: 100%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    text-align: left;
}

.sfm-a .sfm-a-inner {
    color: #c5c5c5;
    font-size: 18px;
    line-height: 29px;
    font-weight: 500;
    padding: 10px;
}

.sfm .sfm-icon {
    transition: transform .25s ease;
    font-size: 25px;
}

.sfm .sfm-item.is-open .sfm-icon {
    transform: rotate(45deg);
}

.sfm .sfm-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.sfm .sfm-item.is-open .sfm-a {
    max-height: 500px;
}

@media (max-width: 1024px) {
    .sfm .sfm-toggle {
        font-size: 18px;
        line-height: 26px;
    }
    .sfm-a .sfm-a-inner {
        font-size: 16px;
        line-height: 26px;
    }
}