/* Style for the FAQ heading */
.faq-heading {
    border-bottom: 2px solid #777;
    padding: 20px 60px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* Container for the FAQ items */
.faq-container {
    display: flex;
    justify-content: left;
    flex-direction: column;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
    background-color: #fff;
}

/* Horizontal line */
.hr-line {
    width: 60%;
    margin: auto;
    border-top: 2px solid #777;
    margin-bottom: 20px;
}

/* FAQ button style */
.faq-page {
    color: #444;
    cursor: pointer;
    padding: 30px 20px;
    width: 100%;
    max-width: 800px; /* Set a max-width to constrain the width */
    border: 1px solid #ddd;
    outline: none;
    transition: 0.4s;
    margin: 10px auto;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.faq-page:hover {
    background-color: #f9f9f9;
}

/* Style the faq-page panel. Note: hidden by default */
.faq-body {
    padding: 20px;
    background-color: white;
    width: 100%;
    max-width: 800px; /* Set a max-width to constrain the width */
    margin: 10px auto;
    display: none;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Plus and minus signs for the FAQ */
.faq-page:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 18px;
    color: #777;
    float: right;
    margin-left: 10px;
}

.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}
