
.sec-head {
    max-width: 860px
}

.sec-head.center {
    margin: 0 auto;
    text-align: center
}

.sec-head.center .sec-sub {
    margin-left: auto;
    margin-right: auto
}

.faq {
    background: var(--bg-white)
}

.faq-list {
    max-width: 900px;
    margin: 48px  auto 0;
}
.faq-item.open .faq-a
{
    overflow: auto;
}
.faq-item.open .faq-a faq-a-wrap{
    
}
.faq-item {
    border-bottom: 1px solid var(--border-divider)
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 4px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16.5px;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--t-fast)
}

.faq-q:hover {
    color: var(--accent-hover)
}

.faq-q svg {
    flex: 0 0 auto;
    color: var(--accent);
    transition: transform .25s ease-in-out
}

.faq-item.open .faq-q svg {
    transform: rotate(180deg)
}

.faq-a-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .28s ease-in-out
}

.faq-item.open .faq-a-wrap {
    grid-template-rows: 1fr;
    max-height: 100% !important;
}

.faq-a {
    overflow: hidden
}

.faq-a p {
    padding: 0 4px 24px;
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 820px
}
