.faq-section {
    background: #F5F7FA;
    padding-top: 40px;
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.faq-left {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: bold;
    font-size: 48px;
    color: #0F1113;
    margin: 0 30px;
}

.faq-right {
    flex: 1 100px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    cursor: pointer;
    padding: 20px 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;  /* medium */
    font-size: 32px;
    color: #0F1113;
    letter-spacing: -2%;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: var(--color-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    font-family: 'Inter', sans-serif;
    font-weight: 300; /* light */
    font-size: 32px;
    color: #0F1113;
    line-height: 1.2;
}

.faq-answer p {
    padding-bottom: calc(var(--spacing-unit) * 2);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    transform: rotate(45deg);
    color: #0F1113;
}

.icon-circle .fa-plus .fa-xmark {
    color: #555555;
    font-size: 14px;
}