.faq-heading{
    border-bottom: #777;
    padding: 20px 60px;
}
.faq-container{
display: flex;
justify-content: center;
flex-direction: column;
}
.hr-line {
    width: 100%;
    margin: auto;
    background-color: #CCC;
    height: 1px;
}
/* Style the buttons that are used to open and close the faq-page body */
.faq-page {
    /* background-color: #eee; */
    cursor: pointer;
    padding: 30px 20px;
    border: none;
    outline: none;
    transition: 0.4s;
    margin: auto;
    max-width: 970px;
    font-family: 'Aka-Acid-Odin';
    font-size: 1.5rem;
    color: var(--maincolor);
}

.faq-body{
    margin: auto;
    /* text-align: center; */
   max-width: 970px;
   padding: auto;
   
}
/* 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:15px;
    background-color: white;
    display: none;
    overflow: hidden;
    font-size: 18px;
    line-height: 1.6;  
}
.faq-body p {
    margin-bottom: 15px;
}

.faq-body ul li {
    list-style: initial;
    margin-bottom: 10px;
}
.faq-body ul {
    margin-bottom: 3rem;
    margin-left:3rem;
}

.faq-page:after {
    content: '\02795';
    /* Unicode character for "plus" sign (+) */
    font-size: 15px;
    color: var(--maincolor);;
    float: right;
    margin-left: 5px;
}
.active:after {
    content: "\2796";
    /* Unicode character for "minus" sign (-) */
}
