
.wrapper {
    max-width: 95%;
    margin: auto;
  }
  
  .wrapper > p {
    margin: 10px 0;
    font-size: 17px;
    color: orange;
    text-align: center;
  }
  
  .wrapper > h1 {
    margin: 1.5rem 0;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 30px;
  }
  
  .accordion {
    background-color: white;
    color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    font-size: 1.2rem;
    width: 100%;
    padding: 2rem 2.5rem;
    border: none;
    outline: none;

    text-align: left;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
  }
  
  .accordion i {
    font-size: 1.6rem;
    color: orange;
    background: white;
    padding: 10px;
    border-radius: 10px;
  }
  
  .active,
  .accordion:hover {
    background-color: #ffaa0030;
  }
  .pannel {
    padding: 0 2rem 2.5rem 2rem;
    background-color: white;
    overflow: hidden;
 
    text-align: left;
    background-color: #ffaa0030;
    display: none;
  }
  .pannel p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.2rem;
    line-height: 1.4;
  }
  
  .faq {
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin: 10px 0;
  }
  .faq.active {
    border: none;
  }
  