.knfaq-wrap {
    margin: 40px 0;
    border: 2px solid #c5e8d5;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    font-family: inherit;
}
.knfaq-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a4731;
    padding: 22px 22px 18px;
    margin: 0;
    border-bottom: 1px solid #c5e8d5;
    background: #f9fdf9;
}
.knfaq-item {
    border-bottom: 1px solid #e8f5ef;
}
.knfaq-item:last-child {
    border-bottom: none;
}
.knfaq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 17px 22px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #1a4731;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    font-family: inherit;
    line-height: 1.4;
    transition: background 0.15s;
}
.knfaq-question:hover {
    background: #e8f5ef;
}
.knfaq-question.open {
    background: #e8f5ef;
    color: #246b47;
}
.knfaq-question.open svg {
    transform: rotate(180deg);
}
.knfaq-question svg {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.knfaq-answer {
    display: none;
    padding: 4px 22px 20px;
    font-size: 15px;
    color: #3d5445;
    line-height: 1.75;
}
