/*! FAQ accordion — Bibahabd green style */
.bbd-faq__intro {
    margin: 0 0 18px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    color: #555;
}

.bbd-faq-list {
    margin-bottom: 24px;
}

.bbd-faq-item {
    border: 1px solid var(--ps-green-border, #d4dd9d);
    background: #fff;
    margin-bottom: 10px;
}

.bbd-faq-item__q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 0;
    background: var(--ps-green-soft, #edf3c7);
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    color: #222;
}

.bbd-faq-item.is-open .bbd-faq-item__q {
    background: var(--ps-green, #93b219);
    color: #fff;
}

.bbd-faq-item__num {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ps-green, #93b219);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bbd-faq-item.is-open .bbd-faq-item__num {
    background: #fff;
    color: var(--ps-green, #93b219);
}

.bbd-faq-item__text {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.bbd-faq-item__icon {
    flex: 0 0 auto;
    transition: transform 0.2s ease;
}

.bbd-faq-item.is-open .bbd-faq-item__icon {
    transform: rotate(180deg);
}

.bbd-faq-item__a {
    padding: 0 16px 16px;
    background: #fff;
}

.bbd-faq-item__a-inner {
    padding-top: 12px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
    color: #444;
    border-top: 1px solid var(--ps-green-border, #d4dd9d);
}

.bbd-faq-empty {
    padding: 24px;
    text-align: center;
    background: var(--ps-green-soft, #edf3c7);
    border: 1px solid var(--ps-green-border, #d4dd9d);
    font-weight: 600;
    color: #555;
}

.bbd-faq__help {
    text-align: center;
    margin: 28px 0 10px;
}

.bbd-faq__help p {
    margin: 0 0 10px;
    font-weight: 600;
    color: #555;
}

/* Homepage FAQ section */
.bbd-faq-home {
    padding: 50px 0;
    background: #fff;
}

.bbd-faq-home .bbd-faq-list {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
}

.bbd-faq-home__more {
    text-align: center;
    margin-top: 20px;
}

.bbd-faq-home__more a {
    display: inline-block;
    padding: 10px 20px;
    background: var(--bbd-green, var(--ps-green, #93b219));
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
}

.bbd-faq-home__more a:hover {
    background: var(--bbd-green-dark, #6f8a12);
}

@media (max-width: 767px) {
    .bbd-faq-item__q {
        padding: 12px;
        gap: 10px;
    }

    .bbd-faq-item__text {
        font-size: 14px;
    }

    .bbd-faq-item__a {
        padding: 0 12px 12px;
    }

    .bbd-faq-item__a-inner {
        font-size: 14px;
    }

    .bbd-faq-home {
        padding: 36px 0;
    }
}
