.faq-search-form {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 18px;
}

.faq-search-form input {
    width: 260px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 14px;
}

.faq-search-form button,
.faq-search-reset {
    height: 40px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.faq-search-form button {
    border: none;
    background: #111;
    color: #fff;
    cursor: pointer;
}

.faq-search-reset {
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
}

.faq-list {
    border-top: 1px solid #222;
}

.faq-row {
    border-bottom: 1px solid #e5e5e5;
}

.faq-question {
    width: 100%;
    min-height: 62px;
    padding: 18px 4px;
    border: none;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    cursor: pointer;
}

.faq-q {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-question strong {
    flex: 1;
    min-width: 0;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    word-break: break-all;
}

.faq-toggle {
    width: 24px;
    text-align: center;
    font-size: 22px;
    font-weight: 300;
    color: #555;
    flex-shrink: 0;
}

.faq-row.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    background: #fafafa;
}

.faq-answer-inner {
    padding: 22px 20px 26px 44px;
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    word-break: break-all;
}

.faq-answer-inner img {
    max-width: 100%;
    height: auto;
}

.faq-empty {
    padding: 60px 0;
    text-align: center;
    color: #999;
    border-bottom: 1px solid #e5e5e5;
}

@media (max-width: 768px) {
    .faq-search-form {
        display: grid;
        grid-template-columns: 1fr 70px;
    }

    .faq-search-form input {
        width: 100%;
    }

    .faq-search-reset {
        grid-column: 1 / 3;
        justify-content: center;
    }

    .faq-question {
        padding: 16px 0;
        gap: 10px;
    }

    .faq-question strong {
        font-size: 15px;
    }

    .faq-answer-inner {
        padding: 18px 12px 22px 38px;
        font-size: 14px;
    }
}