
.faq {
    width: 100%;
    border: none;
}

.faqitem {
    margin-bottom: 20px;
    border: none !important;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.faqitem .header {
    padding: 20px 25px;
    background: #000000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faqitem .header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.faqitem .header .fa.fa-minus {
    display: none;
}

.faqitem.jquery-accordion-active {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faqitem.jquery-accordion-active .header {
    background: #ffffff;
    color: #000;
    border-radius: 12px 12px 0 0;
}

.faqitem.jquery-accordion-active .fa.fa-minus {
    display: block;
    color: #000;
}

.faqitem.jquery-accordion-active .fa.fa-plus {
    display: none;
}

.faqitem .content {
    padding: 20px 25px;
    background: #ffffff;
    display: none;
}

.content p {
    color: #444 !important;
    line-height: 1.7;
    margin-bottom: 10px;
}

.content ul {
    color: #444;
    padding-left: 20px;
}

.content ul li {
    margin-bottom: 5px;
}