        .faq-section {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            margin-top: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
        }

        .accordion-body {
            background-color: #fff;
            color: #222222;
        }

        #faqSearch {
            border: 2px solid #009cfd;
            border-radius: 8px;
            padding-right: 30px; 
        }

        #faqSearch:focus {
            border-color: #009cfd;
            box-shadow: 0 0 5px rgba(255, 153, 0, 0.5);
        }
.accordion-button {
    display: flex;
    align-items: center;
    gap: 5px; 
}

.faq-number {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: linear-gradient(45deg, #009cfd);
    color: white;
    font-weight: bold;
    border-radius: 50%;
    font-size: 16px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    margin-right: 8px;
}


@media (max-width: 1024px) {
    .faq-number {
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 14px;
        margin-right: 6px;
    }
}

        .clear-search {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: red;
            font-size: 20px;
            display: none;
        }
        