.faq-section__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
    gap: 16px;
}

.faq-section__title * {
    color: #1700FF;
    font-family: "ClashDisplay-SemiBold";
    font-size: 28px;
    line-height: 36px;
    margin: 0;
}

@media (max-width: 550px) {
    .faq-section__title * {
        font-size: 24px;
        line-height: 1.2;
    }
}

.faq-section__description * {
    font-family: "ClashDisplay-Light";
    font-size: 16px;
    color: #000;
    text-align: right;
    margin: 0;
}

.faq-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

@media (max-width: 768px) {
    .faq-section__grid {
        grid-template-columns: 1fr;
    }

    .faq-section__header {
        flex-direction: column;
    }

    .faq-section__description * {
        text-align: left;
    }
}

.faq-section__item {
    border: 1px solid #12112724;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}

.faq-section__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: "ClashDisplay-SemiBold";
    font-size: 15px;
    line-height: 1.4;
    color: #121127;
    text-align: left;
    gap: 12px;
}

.faq-section__question:hover {
    background-color: #FBFBFE;
}

.faq-section__chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #999;
}

.faq-section__item.is-open .faq-section__chevron {
    transform: rotate(180deg);
}

.faq-section__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-section__answer-inner {
    padding: 0 16px 16px 16px;
    font-family: "ClashDisplay-Light";
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.faq-section__answer-inner p {
    margin: 0 0 8px 0;
}

.faq-section__answer-inner p:last-child {
    margin-bottom: 0;
}

.faq-section__answer-inner ul {
    margin: 0;
    padding-left: 20px;
}

.faq-section__answer-inner ul li {
    margin-bottom: 4px;
}

.faq-section__answer-inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 8px 0;
}

.faq-section__answer-inner table th,
.faq-section__answer-inner table td {
    padding: 8px 12px;
    border-bottom: 1px solid #12112724;
    text-align: left;
    font-size: 14px;
}

.faq-section__answer-inner table th {
    font-family: "ClashDisplay-SemiBold";
}

.faq-section__answer-inner em {
    font-style: italic;
    color: #666;
}
