
.acet-faq-container {
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

#acet-faq-search {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.acet-faq-category h2 {
    margin-top: 20px;
    font-size: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.acet-faq-item {
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.acet-faq-question {
    width: 100%;
    text-align: left;
    padding: 12px;
    background: #f9f9f9;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.acet-faq-question:hover {
    background: #f1f1f1;
}

.acet-faq-answer {
    display: none;
    padding: 12px;
    background: #fff;
    border-top: 1px solid #ddd;
    font-size: 15px;
    color: #333;
}

.arrow {
    transition: transform 0.3s ease;
}

.acet-faq-question.active .arrow {
    transform: rotate(180deg);
}
