.faq-accordion {
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    background: #fff;
    font-family: Arial, sans-serif;
    overflow: hidden;
    margin-bottom:30px;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    background: #f6f6f6;
    border: none;
    border-radius:0px!important;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    color:#333;
}
body.dark-mode .faq-question{
    background: #333;
    color:#fff;
}
.faq-question:hover {
    background: linear-gradient(to right, #7f00ff, #00c6ff);
    color:#fff;
}
.faq-question.active {
    background: linear-gradient(to right, #7f00ff, #00c6ff)!important;
    color: #fff!important;
}
.faq-icon i {
  margin-left: 10px;
}
body.dark-mode .faq-icon i {
  color:#7f00ff;
}
.faq-answer {
    display: none;
    padding: 15px 20px;
    background: #fff;
    color: #333;
}
body.dark-mode .faq-answer {
    background: #1e1e1e!important;
    color: #fff;
}