.faq-section {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    padding: 92px 0;
    gap: 80px;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-base);
    background: var(--background-color-secondary);
    padding-right: 2rem;
    padding-left: 2rem;
    margin-right: auto;
    margin-left: auto;
}

.faq-section .faq-title {
    width: 100%;
    max-width: 488px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-section .faq-title h2 {
    color: var(--text-color-white);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 52px */
    letter-spacing: -0.76px;
}

.faq-section .faq-title p {
    color: var(--text-color-white);
    font-size: var(--font-size-base);
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: -0.02em;
}

.faq-section .faq-title a {
    color: var(--text-color-white);
    font-size: var(--font-size-base);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.faq-section .faq-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-section .accordion {
    width: 100%;
    max-width: 608px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

.faq-section .accordion-item {
    border-radius: 8px;
    border: 1px solid #d9d9d9;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

.faq-section .accordion-collapse {
    transition: height 0.3s ease;
}

.faq-section .accordion-button svg {
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.faq-section .accordion-button.collapsed svg {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

.accordion-button:not(.collapsed)::after {
    display: none;
}

.accordion-button::after {
    display: none;
}

.faq-section .accordion-button {
    background: #f5f5f5;
    color: var(--text-color-black-light);
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 22.4px */
    border-radius: 8px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-section .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.faq-section .accordion-body {
    background: #f5f5f5;
    color: var(--text-color-black-light);
    font-family: var(--font-family-base);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
    padding: 0 1.25rem 16px 1.25rem;
    border-radius: 8px;
}

@media screen and (max-width: 992px) {
    .faq-section {
        flex-wrap: wrap;
        padding: 80px 36px;
    }

    .faq-section {
        gap: 64px;
    }

    .faq-section .accordion {
        min-height: auto;
    }

    .faq-section .faq-title {
        max-width: 608px;
        text-align: center;
    }

    .faq-section .faq-title p,
    .faq-section .faq-title a {
        max-width: 450px;
        text-align: center;
        margin: 0 auto;
    }

    .faq-section .accordion {
        justify-content: start;
    }
}

@media screen and (max-width: 576px) {
    .faq-section {
        padding: 48px 24px 72px;
        gap: 32px;
    }

    .faq-section .faq-links {
        gap: 8px;
    }

    .faq-section .faq-title p,
    .faq-section .faq-title a {
        max-width: 264px;
        text-align: left;
        margin: 0;
    }

    .faq-section .faq-title h2 {
        font-size: 32px;
        text-align: left;
    }
}
