/* FAQ Custom Block Styling */

.faq-custom-block {
    max-width: 800px;
    margin: 20px auto;
}

.faq-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

/* Question Button Styling */
.faq-question {
    cursor: pointer;
    font-weight: bold;
    display: block;
    width: 100%;
    text-align: left;
    background: #007cba;
    color: #ffffff;
    padding: 15px;
    border: none;
    outline: none;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #005a8c;
}

/* Answer Box Styling */
.faq-answer {
    display: none;
    padding: 15px;
    background: #f9f9f9;
    border-top: 1px solid #ddd;
}

/* Visible Answer (Toggled State) */
.faq-answer.visible {
    display: block;
}

/* Smooth transition effect */
.faq-answer {
    transition: max-height 0.3s ease-in-out;
}
