.bfaq-1604-container {
    background-color: #F8F5EF;
    border-radius: 24px;
    padding: 80px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.bfaq-1604-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.bfaq-1604-eyebrow {
    color: #F39A2E;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.bfaq-1604-heading {
    color: #0A192F;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 24px;
}

.bfaq-1604-intro {
    color: #5A6A7D;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.bfaq-1604-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.bfaq-1604-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid rgba(10, 25, 47, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.bfaq-1604-item.is-active {
    border-color: #F39A2E;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.05);
}

.bfaq-1604-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.bfaq-1604-question-text {
    color: #0A192F;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding-right: 24px;
}

.bfaq-1604-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #F39A2E;
    flex-shrink: 0;
}

.bfaq-1604-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.bfaq-1604-icon-close {
    display: none;
}

.bfaq-1604-item.is-active .bfaq-1604-icon-open {
    display: none;
}

.bfaq-1604-item.is-active .bfaq-1604-icon-close {
    display: block;
}

.bfaq-1604-answer {
    overflow: hidden;
}

.bfaq-1604-answer-inner {
    padding: 0 32px 32px;
    color: #5A6A7D;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.bfaq-1604-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.bfaq-1604-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.bfaq-1604-btn-primary {
    background-color: #0A192F;
    color: #FFFFFF;
}

.bfaq-1604-btn-primary:hover {
    background-color: #1B2B44;
}

.bfaq-1604-btn-secondary {
    background-color: transparent;
    color: #0A192F;
    border: 1px solid #0A192F;
}

.bfaq-1604-btn-secondary:hover {
    background-color: rgba(10, 25, 47, 0.05);
}

@media (max-width: 767px) {
    .bfaq-1604-container {
        padding: 40px 24px;
    }
    .bfaq-1604-heading {
        font-size: 32px;
    }
    .bfaq-1604-question {
        padding: 20px 24px;
    }
    .bfaq-1604-answer-inner {
        padding: 0 24px 24px;
    }
    .bfaq-1604-actions {
        flex-direction: column;
    }
    .bfaq-1604-btn {
        text-align: center;
        width: 100%;
    }
}