.faq-visible h2 {
    margin-bottom: 24px
}

.faq-visible .container-xl {
    margin: 24px 0
}

.faq-visible .faq-accordion {
    margin-top: 24px
}

.faq-visible .faq-item {
    border: 1px solid var(--bs-gray-300, #E5E7EB);
    border-radius: 8px;
    background: #fff;
    margin-bottom: 16px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .06);
    overflow: hidden
}

.faq-visible .faq-question {
    margin: 0
}

.faq-visible .faq-trigger {
    width: 100%;
    text-align: left;
    padding: 16px 48px 16px 20px;
    background: 0 0;
    border: 0;
    font-weight: 600;
    font-family: Denim, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    cursor: pointer;
    position: relative;
    color: var(--bs-gray-900, #0F172A)
}

.faq-visible .faq-trigger:focus {
    outline: 0
}

.faq-visible .faq-trigger:after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%) rotate(0);
    transition: transform .2s ease;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23005FCC" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>') no-repeat center/16px 16px
}

.faq-visible .faq-trigger[aria-expanded=true]:after {
    transform: translateY(-50%) rotate(180deg)
}

.faq-visible .faq-trigger[aria-expanded=true] {
    background: var(--bs-blue, #1b5cff);
    color: #fff
}

.faq-visible .faq-trigger[aria-expanded=true]:after {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>') no-repeat center/16px 16px
}

.faq-visible .faq-panel {
    padding: 0 20px 16px;
    color: var(--bs-gray-700, #334155);
    font-size: 15px;
    line-height: 1.7;
    transition: max-height .25s ease, opacity .25s ease;
    overflow: hidden;
    max-height: 0;
    opacity: 0
}

.faq-visible .faq-item.is-open .faq-panel {
    max-height: 500px;
    opacity: 1
}

@media (min-width:768px) {
    .faq-visible .container-xl {
        margin: 40px 0
    }

    .faq-visible .faq-accordion {
        margin-top: 32px
    }
}