.page-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 24px;
}

.faq-switch-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.faq-switch-button {
    flex: 0 1 128px;
    color: var(--dark-100);
    font-feature-settings: 'case' on;
    font-family: Inter, sans-serif;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    padding: 10px 8px;
    letter-spacing: -0.24px;
    border-radius: 24px;
    border: 1px solid var(--dark-60);
}

.faq-switch-button:hover, .faq-switch-button.active {
    color: var(--white);
    background-color: var(--dark-100);
}

.page-description-content {
    max-width: unset;
    margin: 64px 0;
    gap: 30px;
}

.faq-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--dark-10);
}

.faq-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.faq-card-title {
    color: var(--dark-100);
    font-weight: 600;
}

.faq-card-expand-button {
    width: 30px;
    height: 30px;
}

.faq-card-expand-icon, .faq-card-shrink-icon {
    flex: 0 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    text-align: center;
    background-color: var(--dark-100);
    color: var(--white);
    font-weight: 700;
    font-size: 24px;
    border-radius: 50%;
}

.faq-card-shrink-icon {
    padding-top: 2px;
}

.faq-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--dark-80);
    font-size: 16px;
    line-height: 140%;
}

.faq-card .hidden {
    display: none;
}

@media screen and (max-width: 960px) {
    .page-description-content {
        flex-direction: column;
        gap: 64px;
    }

    .page-description-item {
        flex: 1 0 100%;
    }
}

@media screen and (max-width: 590px) {
    .faq-switch-buttons {
        flex-direction: column;
    }

    .faq-switch-button {
        flex: unset;
    }
}
