/* FAQ Styles */
.faq-section {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    font-weight: bold;
    cursor: pointer;
    background-color: #0073aa;
    color: #fff;
    padding: 10px;
    margin: 0;
    border-bottom: 1px solid #005885;
    transition: background 0.3s;
}

.faq-question:hover {
    background-color: #005885;
}

.faq-answer {
    display: none;
    padding: 10px;
    background-color: #f9f9f9;
    line-height: 1.6;
}
