.faq {
    padding-top: 68px;
    padding-bottom: 140px;
    position: relative;
    overflow: hidden;
}

.title {
    text-align: center;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -2px;
    color: white;
}

.filters {
    display: flex;
    justify-content: space-around;
    grid-column-gap: 16px;
    margin-top: 51px;
}

.filters .item {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: rgb(112, 112, 123);
}

.filters .item.active {
    border-bottom: 1px solid rgb(217, 217, 217);
    color: white;
}

.accordion-container {
    width: 100%;
    margin-top: 50px;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.accordion-header {
    padding: 32px 0px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header span {
    color: white;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}

.accordion-header img {
    height: 48px;
    width: auto;
}

.accordion-content {
    color: rgba(255, 255, 255, 0.7);
    padding-bottom: 32px;
}

.lspot, .rspot {
    background: rgba(32, 31, 39, 0.6);
    filter: blur(50px);
    border-radius: 50%;
    width: 680px;
    height: 680px;
    position: absolute;
}

.lspot {
    left: -300px;
    top: -300px;
    z-index: 1;
}

.rspot {
    right: -300px;
    bottom: -300px;
}

@media screen and (max-width: 768px) {
    .faq {
        padding-top: 32px;
        padding-bottom: 75px;
    }

    .title {
        font-size: 36px;
    }

    .filters .item {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 525px) {
    .title {
        font-size: 24px;
    }

    .filters {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 27px;
    }

    .accordion-container {
        margin-top: 0;
    }

    .accordion-header {
        padding: 16px 0;
    }

    .accordion-header span {
        font-size: 14px;
        line-height: 20px;
    }

    .accordion-header img {
        height: 24px;
    }

    .accordion-content {
        font-size: 14px;
    }
}








