.schema-faq-section {
    border-bottom: 1px solid #444; /* Darker border for dark mode compatibility */
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.schema-faq-question {
    display: block;
    cursor: pointer;
    padding: 10px 0;
    position: relative;
    padding-right: 25px; /* Space for icon */
    font-size: 1.1em;
    color: #e0e0e0; /* Light text for dark background */
    font-weight: 600;
    transition: color 0.3s ease;
}

.schema-faq-question:hover {
    color: #ffffff; /* White on hover */
}

.schema-faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 10px;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
    color: #e0e0e0;
}

.schema-faq-section.active .schema-faq-question::after {
    content: '-';
}

.schema-faq-answer {
    display: none;
    padding: 5px 0 15px 0;
    margin-top: 0;
    color: #cccccc; /* Light grey for answer text */
    line-height: 1.6;
}
