.home-faq {
    padding: 24px 0;
}

.home-faq-panel {
    position: relative;
    overflow: hidden;
    padding: 30px 34px;
    border-radius: 20px;
    background: #eaf5ec;
}

.home-faq-intro {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    padding-right: 24px;
}

.home-faq-description {
    margin: 0;
    color: #8a5c43;
    font-size: 15px;
    line-height: 1.75;
}

.home-faq-logo {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding-top: 24px;
}

.home-faq-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.home-faq-list {
    height: 100%;
}

.home-faq-item {
    border-bottom: 1px solid rgba(122, 82, 58, 0.18);
}

.home-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 17px 0;
    color: #6d422c;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    list-style: none;
}

.home-faq-item summary::-webkit-details-marker {
    display: none;
}

.home-faq-icon {
    color: #ed8a48;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.2s ease;
}

.home-faq-item[open] .home-faq-icon {
    transform: rotate(90deg);
}

.home-faq-answer {
    padding: 0 34px 17px 0;
    color: #8a5c43;
    font-size: 15px;
    line-height: 1.75;
    white-space: pre-line;
}

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

@media (max-width: 767px) {
    .home-faq-panel {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .home-faq-intro {
        min-height: 0;
        padding-right: 0;
    }

    .home-faq-logo {
        padding: 20px 0 10px;
    }

    .home-faq-logo img {
        max-width: 170px;
        max-height: 100px;
    }

    .home-faq-item summary {
        padding: 15px 0;
    }
}
