<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.stylez-faq-wrapper {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
}
.stylez-faq-item {
    margin-bottom: 15px;
    position: relative;
}
.stylez-faq-question {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 6px;
    position: relative;
    z-index: 2;
    transition: background 0.3s;
}
.stylez-faq-question::after {
    content: 'â–¼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    transition: transform 0.3s ease;
}
.stylez-faq-question.active::after {
    content: 'â–²';
}
.stylez-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 20px;
    margin-top: 5px;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.stylez-faq-answer.open {
    padding: 15px 20px;
    max-height: 500px;
}
</pre></body></html>