.ekfaq {
    width: 100%;
}

.ekfaq__item {
    border-bottom: 1px solid #ddd;
}

.ekfaq__question {
    appearance: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
}

.ekfaq__question:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.ekfaq__question-text {
    flex: 1;
}

.ekfaq__icon {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

.ekfaq__icon::before,
.ekfaq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.ekfaq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.ekfaq__item.is-open .ekfaq__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.ekfaq__answer[hidden] {
    display: none;
}

.ekfaq__answer-inner {
    padding: 0 0 20px;
}

.ekfaq__answer-inner > :first-child {
    margin-top: 0;
}

.ekfaq__answer-inner > :last-child {
    margin-bottom: 0;
}

.ekfaq__title{
    margin-top: 0;
    font-family: sofia-pro, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    color: #53204E;
}