.skfaq-wrapper {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 70px 20px;
    background: #F7F7F7;
    color: #000000;
    box-sizing: border-box;
}

.skfaq-wrapper *,
.skfaq-wrapper *::before,
.skfaq-wrapper *::after {
    box-sizing: border-box;
}

.skfaq-headline {
    margin: 0 0 34px;
    padding: 0;
    color: #000000;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.skfaq-accordion {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.skfaq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
    background: #F7F7F7;
}

.skfaq-question {
    width: 100%;
    margin: 0;
    padding: 24px 0;
    border: 0;
    background: #F7F7F7;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
    transition: none;
}

.skfaq-question:hover,
.skfaq-question:focus,
.skfaq-question:active {
    background: #F7F7F7;
    color: #000000;
    box-shadow: none;
    outline: none;
}

.skfaq-question:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 4px;
}

.skfaq-question-text {
    display: block;
    color: #000000;
    font-size: clamp(19px, 1.8vw, 25px);
    line-height: 1.3;
    font-weight: 300;
}

.skfaq-icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

.skfaq-icon::before,
.skfaq-icon::after {
    content: "";
    position: absolute;
    background: #000000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.skfaq-icon::before {
    width: 22px;
    height: 1px;
}

.skfaq-icon::after {
    width: 1px;
    height: 22px;
}

.skfaq-item--open .skfaq-icon::after {
    display: none;
}

.skfaq-answer {
    background: #F7F7F7;
    color: #000000;
}

.skfaq-answer-inner {
    padding: 0 54px 28px 0;
    max-width: 900px;
}

.skfaq-answer-inner p {
    margin: 0 0 18px;
    color: #000000;
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.65;
    font-weight: 300;
}

.skfaq-answer-inner p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .skfaq-wrapper {
        padding: 48px 20px;
    }

    .skfaq-headline {
        margin-bottom: 26px;
    }

    .skfaq-question {
        padding: 20px 0;
        gap: 18px;
    }

    .skfaq-question-text {
        font-size: 20px;
        line-height: 1.3;
    }

    .skfaq-answer-inner {
        padding: 0 0 24px 0;
    }

    .skfaq-answer-inner p {
        font-size: 16px;
        line-height: 1.55;
    }
}