.container-FAQ{
     display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3em;
}
.accordion {
    max-width: 70%;
    padding-top: 2em;

}

article {
      border: 2.5px double black;
    border-bottom-left-radius: 20px 200px;
    border-bottom-right-radius: 300px 40px;
    border-top-left-radius: 250px 30px;
    border-top-right-radius: 20px 200px;
    padding: 1em;
    background-color: #eddbb7a6;
       cursor: pointer;
   
}

input[type="radio"] {
  appearance: none;
  position: fixed;
  top: -100vh; left: -100vh;
    

  & ~ div {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
  }

  &:checked ~ div {
    max-height: 500px;
  }
}

thead tr th{
  border-bottom: 1px solid #5a5a5aad;
}

tbody tr td{
  border-bottom: 2px solid #ccc;
  padding-left: 1em;
}

article h2{
  font-size: large;
}
article div{
  padding-top: 0.5em;
}

article p{
  margin-bottom: 0.5em;
}

table{
   margin-top: 1em;
}


    @media (max-width: 500px) {
       .table-responsive {
        overflow: auto !important;
    }
}

 