.wc-simple-faq-container {
    margin-top: 20px;
}

.wc-simple-faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.wc-simple-faq-question {
    background-color: #f5f5f5;
    padding: 15px;
    margin: 0;
    cursor: pointer;
    position: relative;
}

.wc-simple-faq-question::after {
    content: "+";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.wc-simple-faq-question.active::after {
    content: "-";
}

.wc-simple-faq-answer {
    padding: 15px;
    display: none;
}