.categories-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 44px;
    margin-bottom: 60px;
    padding: 15px 0 0 0;
    overflow: auto;
}

@media screen and (max-width: 1299px) {
    .categories-top {
        gap: 0 24px;
        margin-bottom: 48px;
    }
}

@media screen and (max-width: 991px) {
    .categories-top {
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: calc(100% + 60px);
        margin-left: -30px;
        padding: 0 30px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .categories-top::-webkit-scrollbar {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .categories-top {
        width: calc(100% + 40px);
        margin-left: -20px;
        padding: 0 20px;
    }
}

.categories-top .category a {
    display: flex;
    align-items: center;
    padding: 22px 0 0 0;
    border-top: 3px solid transparent;
    line-height: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #C6CBD1;
    white-space: nowrap;
    text-transform: uppercase;
}

.categories-top .category.active a {
    border-color: #1e3a5f;
    color: #000;
}

.categories-top .category a:hover {
    border-color: #1e3a5f;
    color: #000;
}

.categories-top .category a img {
    margin-right: 10px;
}

.category-items {
    display: flex;
    flex-direction: column;
}

.category-faq-block .category-items:not(:last-child) {
    margin-bottom: 64px;
}

.category-faq-block .category-items:nth-last-child(2) {
    margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
    .category-faq-block .category-items:not(:last-child) {
        margin-bottom: 48px;
    }

    .category-faq-block .category-items:nth-last-child(2) {
        margin-bottom: 24px;
    }
}

.category-faq-block .category-items .heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
    .category-faq-block .category-items .heading {
        margin-bottom: 24px;
    }
}

.category-faq-block .category-items .category-items__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #9DC6E4;
    user-select: none;
    pointer-events: none;
    border-radius: 50%;
}

.category-faq-block .category-items .heading h2 {
    font-size: 20px;
    text-transform: uppercase;
    color: #000;
}

.category-faq-block .category-items .accordion .accordion-item:last-child {
    margin-bottom: 0;
}

/* Hidden class for category filtering */
.category-faq-block .category-items.hidden {
    display: none;
}

/* Active category tab styling */
.categories-top .category.active a {
    color: #000;
    font-weight: 600;
}

.categories-top .category a {
    color: #666;
    text-decoration: none;
}

.categories-top .category a:hover {
    color: #000;
}

