
.faq-container {
    width: 100%;
    padding: 24px;
}

.faq_header 
{
    padding:0 0 2rem ;
    text-align: center;
}
.faq_header .section_title 
{
    color: #ce0303;
}

.search-box {
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    border: 1px solid #ddd;
}

.search-box input {
    background: none;
    border: none;
    color: #000;
    font-size: 16px;
    width: 100%;
    padding-left: 8px;
    outline: none;
}

.search-box input::placeholder {
    color: #8888A0;
}

.search-icon {
    color: #8888A0;
    font-size: 18px;
}

.faq-item {
    border-bottom: 1px solid #2A2A2A;
    margin-bottom: 16px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    color: black;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #ce0303;
}

.faq-answer {
    color: #8888A0;
    font-size: 14px;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-right: 24px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 16px;
}

.arrow {
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}
.categories {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.categories::-webkit-scrollbar {
    display: none;
}

.category {
    background: #2A2A2A;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category.active {
    background: #8A70FF;
    color: blcak;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.faq-item.hidden {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    color: black;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #8A70FF;
}

.faq-answer {
    color: #8888A0;
    font-size: 14px;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-right: 24px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 16px;
}

.arrow {
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.no-results {
    color: #8888A0;
    text-align: center;
    padding: 20px;
    display: none;
}