.han-faq-wrap,
.han-faq-wrap * {
    box-sizing: border-box;
    font-family: 'Poppins', Arial, Helvetica, sans-serif !important;
}

.han-faq-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 70px 20px;
    background: #fff;
    color: #111827;
}

.han-faq-wrap:before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    right: -190px;
    top: -190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(183,165,111,.15) 0%, rgba(183,165,111,0) 68%);
    pointer-events: none;
}

.han-faq-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.han-faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.86fr) minmax(420px, 1.35fr);
    gap: 56px;
    align-items: start;
}

.han-faq-head {
    position: sticky;
    top: 36px;
}

.han-faq-eyebrow {
    margin-bottom: 18px;
    color: #b7a56f;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.han-faq-title {
    margin: 0;
    padding: 0;
    color: #111827;
    font-size: 54px;
    line-height: 1.06;
    letter-spacing: -1.8px;
    font-weight: 700;
}

.han-faq-desc {
    margin-top: 24px;
    color: #5f6673;
    font-size: 18px;
    line-height: 1.85;
    max-width: 570px;
}

.han-faq-badge {
    position: relative;
    margin-top: 30px;
    padding: 22px 24px 22px 28px;
    border: 1px solid #eee8d8;
    border-radius: 22px;
    background: rgba(255,255,255,.78);
    color: #5f6673;
    font-size: 15px;
    line-height: 1.75;
    box-shadow: 0 14px 34px rgba(17,24,39,.06);
    overflow: hidden;
}

.han-faq-badge:before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    background: #b7a56f;
    border-radius: 0 30px 30px 0;
}

.han-faq-content {
    min-width: 0;
}

.han-faq-search {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 16px;
    padding: 16px 20px;
    border: 1px solid #eee8d8;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17,24,39,.05);
}

.han-faq-search-icon {
    color: #b7a56f;
    font-size: 24px;
    line-height: 1;
    flex: 0 0 auto;
}

.han-faq-search input {
    width: 100%;
    min-height: 28px;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    color: #111827 !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
    padding: 0 !important;
}

.han-faq-search input::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.han-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.han-faq-item {
    position: relative;
    border: 1px solid #eee8d8;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17,24,39,.06);
    overflow: hidden;
    transition: background .24s ease, transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.han-faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(17,24,39,.09);
}

.han-faq-item.is-active {
    background: #fbfaf5;
    border-color: rgba(183,165,111,.34);
}

.han-faq-toggle {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    border: 0 !important;
    background: transparent !important;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    text-align: left;
    cursor: pointer;
    outline: none !important;
    box-shadow: none !important;
}

.han-faq-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #b7a56f;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    flex: 0 0 auto;
}

.han-faq-question {
    display: block;
    color: #111827;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 600;
    transition: color .24s ease;
}

.han-faq-item.is-active .han-faq-question {
    color: #b7a56f;
}

.han-faq-icon {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(17,24,39,.04);
    flex: 0 0 auto;
    transition: background .24s ease, transform .24s ease;
}

.han-faq-icon:before,
.han-faq-icon:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    color: #111827;
    transform: translate(-50%, -50%);
    transition: transform .24s ease, opacity .24s ease;
}

.han-faq-icon:after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.han-faq-item.is-active .han-faq-icon {
    transform: rotate(180deg);
    background: rgba(183,165,111,.14);
}

.han-faq-item.is-active .han-faq-icon:after {
    opacity: 0;
}

.han-faq-panel {
    overflow: hidden;
}

.han-faq-answer {
    padding: 0 24px 22px 84px;
    color: #5f6673;
    font-size: 16px;
    line-height: 1.9;
}

.han-faq-answer p {
    margin: 0 0 14px;
}

.han-faq-answer p:last-child {
    margin-bottom: 0;
}

.han-faq-empty {
    margin-top: 16px;
    padding: 22px;
    border-radius: 18px;
    background: #f8fafc;
    color: #64748b;
    text-align: center;
    font-size: 15px;
}

@media (max-width: 1024px) {
    .han-faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .han-faq-head {
        position: relative;
        top: auto;
    }

    .han-faq-title {
        font-size: 44px;
    }

    .han-faq-desc {
        max-width: 760px;
    }
}

@media (max-width: 767px) {
    .han-faq-wrap {
        padding: 46px 16px;
    }

    .han-faq-wrap:before {
        width: 300px;
        height: 300px;
        right: -160px;
        top: -120px;
    }

    .han-faq-grid {
        gap: 24px;
    }

    .han-faq-eyebrow {
        font-size: 11px;
        letter-spacing: 3.5px;
        margin-bottom: 14px;
    }

    .han-faq-title {
        font-size: 32px;
        line-height: 1.16;
        letter-spacing: -0.8px;
    }

    .han-faq-desc {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.75;
    }

    .han-faq-badge {
        margin-top: 20px;
        padding: 18px 18px 18px 22px;
        font-size: 14px;
        line-height: 1.65;
    }

    .han-faq-search {
        border-radius: 18px;
        padding: 14px 16px;
    }

    .han-faq-toggle {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        padding: 18px 16px;
    }

    .han-faq-number {
        width: 34px;
        height: 34px;
        font-size: 11px;
    }

    .han-faq-question {
        font-size: 15px;
        line-height: 1.45;
    }

    .han-faq-icon {
        width: 28px;
        height: 28px;
    }

    .han-faq-icon:before,
    .han-faq-icon:after {
        width: 12px;
    }

    .han-faq-answer {
        padding: 0 16px 18px 62px;
        font-size: 14px;
        line-height: 1.75;
    }
}
