body{
    font-family: 'Work Sans', sans-serif;
    background-color: black;
}

.faq-heading{
    border-bottom: #777;
    padding: 20px 60px;
    color: #F9F9F9
}
.faq-container{
display: flex;
justify-content: center;
flex-direction: column;

}
.hr-line{
  width: 60%;
  margin: auto;
}
.h1 {
    color: white;
}
/* Style the buttons that are used to open and close the faq-page body */
.faq-page {
     background-color: #13101046; 
    color: #F9F9F9;
    cursor: pointer;
    padding: 30px 20px;
    width: 60%;
    border: none;
    outline: none;
    transition: 0.4s;
    margin: auto;

}
.faq-body{
    margin: auto;
    text-align: left; 
   width: 50%; 
   padding: auto;
   color: #F9F9F9
   
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: sans-serif;
    font-size: 16px;
  }
  
  header {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 20px;
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav li {
    margin: 0 20px;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
  }
  
  main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
  }
  
  .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .box {
    position: relative;
    width: calc(33.33% - 20px);
    margin-bottom: 40px;
    overflow: hidden;
  }
  
  .box img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
  }
  
  .box:hover .overlay {
    opacity: 1;
  }
  
.box{
    padding: 10px 10px;
    width: 30%;
}

/* 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: #4e4d4d;
}

/* Style the faq-page panel. Note: hidden by default */
.faq-body {
    padding: 0 18px;
    background-color: #13101046;
    display: none;
    overflow: hidden;
    text-align-last: left;
}

.faq-page:after {
    content: '\02795';
    /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #F9F9F9;
    font-size: 15px;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2796";
    /* Unicode character for "minus" sign (-) */
}