.faqs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    align-items: start;
    padding:15px;
}

.faqs h3 {
    margin: 0;
    background: #f3f3f3;
    border-radius: 4px;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 400;
    color: #333;

    display: flex;
    align-items: center;
    position: relative;

    cursor: pointer;
    transition: 0.2s;
}

.faq-icon {
    color: #F8B137;
    font-size: 28px;
    margin-right: 12px;
    flex-shrink: 0;
}

.faqs h3.ui-state-active .faq-icon {
    color: #222;
}

/* arrow */
.faqs h3::after {
    content: "\F285"; /* bootstrap chevron-right */
    font-family: "bootstrap-icons";
    position: absolute;
    right: 18px;
    font-size: 18px;
    color: #333;
    transition: 0.2s;
}

.faqs h3.ui-state-active::after {
    transform: rotate(90deg);
}

.faqs .ui-accordion-content {
    padding: 18px 20px;
    background: white;
    border: none;
    font-size: 17px;
    line-height: 1.6;
    color: #222;
}

.faqs .ui-accordion-header {
    border: none;
}

.faqs .ui-accordion-content {
    border: none;
}