/* q & a */
.accordion {
    background-color:white;
   
    color: black;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    transition: 0.5s;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* .section-q .active, .accordion:hover {
    background-color: rgb(41, 83, 41);
    color: white;
  } */
  
  /* .accordion:after {
    content: '\002B';
    font-weight: bold;
    float: right;
    margin-left: 5px;
  } */
  
  /* .active:after {
    content: "\2212";
  } */
  
  .panel {
    padding: 0px 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  .panel p{
      padding-top: 10px;
      text-align: center;
      margin-top:20px;
      color:black;
  }
  
  
  @media screen and (max-width:600px) {
      .accordion {
        width: 100%;
    border-bottom: 1px solid;
      }
  .section-q  .prpl{
    font-size: 30px !important;
  }    
      
  }
  .accordion i {
    float: right;
    transform: rotate(0deg); /* Initial rotation */
    transition:.5s; /* Transition for rotation */
}
.accordion.active i {
  transform: rotate(86deg); /* Rotate the icon when accordion is active */
}
  /* q & a */