
/* FAQ Styles */
.faq-container {
    background-color: transparent; /* Changed from white to transparent to inherit modal bg */
    border-radius: 8px;
    padding: 0; /* Padding handled by modal-body */
    box-shadow: none;
    width: 100%;
}
/* Removed body.dark-mode .faq-container as it's transparent now */

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}
body.dark-mode .faq-item {
    border-bottom-color: #444;
}
.faq-question {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #34495e;
}
body.dark-mode .faq-question {
    color: #3498db;
}
.faq-answer {
    line-height: 1.6;
    color: #555; /* Slightly darker for better contrast on light mode */
}
body.dark-mode .faq-answer {
    color: #ddd; /* Lighter for better contrast on dark mode */
}
