.faq-heading{
    border-bottom: #777;
    padding: 20px 60px;
}
.faq-container{
display: flex;
justify-content: center;
flex-direction: column;
}

/* Style the buttons that are used to open and close the faq-page body */
.faq-page {
    /* background-color: #eee; */
    color: black;
    cursor: pointer;
   
   
    border: none;
    outline: none;
    transition: 0.4s;
    padding-bottom:10px;
    font-size:14px;
    border-bottom:2px solid;
    padding-right:14px;
}
.faq-body{
    margin: auto;
    /* text-align: center; */
   
   
   
}
/* 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) */

/* Style the faq-page panel. Note: hidden by default */
.faq-body {
    
    background-color: white;
    display: none;
    overflow: hidden;
}
.faq-page:after {
    content: '\02795';
    /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: black;
    float: right;
    padding-left:10px;
}
