.lion-faq-container {
    margin: 20px 0;
}

.lion-faq-search-container {
    margin-bottom: 20px;
}


.lion-faq-search {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    font-size: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #ddd !important;
    width: 400px !important;
    margin: 0 auto !important;
}



.lion-faq-search:focus {
    outline: none;
    border-color: #bbb;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.lion-faq-item {
    margin-bottom: 10px;
    /* border: 1px solid #eee; */
    border-radius: 4px;
    overflow: hidden;
}

.lion-faq-item-header {
    padding: 15px;
    /* Removed background-color: #f9f9f9; */
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.lion-faq-icon {
    margin-right: 10px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    padding: 10px;
    border:1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lion-faq-icon svg {
    width: 30px;
    height: 30px;
    fill:#333;
}

.lion-faq-title {
    flex-grow: 1;
    font-weight: bold;
}

.lion-faq-toggle {
    margin-left: 10px;
    transition: transform 0.3s;
}

.lion-faq-item.active .lion-faq-toggle i {
    transform: rotate(180deg);
}

.lion-faq-description {
    padding: 15px;
    background-color: transparent; /* Changed from #fff to transparent */
    border-top: 1px solid #eee;
}

.lion-faq-item.no-match {
    display: none;
}

/* Animation for FAQ toggle */
.lion-faq-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.lion-faq-item.active .lion-faq-description {
    max-height: 1000px;
}

/* Fix for Elementor compatibility */
.elementor .lion-faq-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.elementor .lion-faq-item.active .lion-faq-description {
    max-height: 1000px;
}
