.faq-top {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.faq-top img {
    width: 100%;
    height: auto;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-content-column {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 48px;
}

.faq-content-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-content-section h3 {
    font-size: var(--title-title-large-font-size);
    font-family: var(--title-title-large-font-family);
    font-weight: var(--title-title-large-font-weight);
    line-height: var(--title-title-large-line-height);
}

.faq-content-section .line {
    border-color: var(--light-outlinevariant);
}

.faq-content-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-content-item {
    display: flex;
    flex-direction: column;
}

.faq-content-item h4 {
    flex: 1;
    font-size: var(--label-label-large-font-size);
    font-family: var(--label-label-large-font-family);
    font-weight: var(--label-label-large-font-weight);
    line-height: var(--label-label-large-line-height);
}

.faq-content-item p {
    display: none;
    font-size: var(--body-body-medium-font-size);
    font-family: var(--body-body-medium-font-family);
    font-weight: var(--body-body-medium-font-weight);
    line-height: var(--body-body-medium-line-height);
}

.faq-content-item-question {
    display: flex;
    flex-direction: row;
    cursor: pointer;
}

.faq-content-item-question img {
    transition: transform 0.3s ease-in-out;
}

@media (min-width: 768px) {
    .secondary-content {
        gap: 64px;
    }

    .faq-top {
        flex-direction: row;
        align-items: center;
        gap: 64px;
    }
    .faq-top > * {
        flex: 1;
    }

    .faq-content {
        flex-direction: row;
        gap: 64px;
    } 
}