.faq-container {
    width: 100%;
    padding: 4rem 6rem;
    margin-top: 9rem;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
  }
  
  .faq-item {
    margin-bottom: 10px;
    overflow: hidden;
    width: 60%;
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    font-size: 18px;
    color: white;
    cursor: pointer;
    background-color: rgb(13, 13, 13);
  border: 0.4px solid #f3f3f318;
  border-top-left-radius: 10px; border-top-right-radius: 10px;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: #333;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    color: white;
    padding: 0 15px;
  }
  
  .faq-answer p {
    margin: 10px 0;
  }
  
.plus {
    font-weight: bold;
    transition: transform 0.4s ease-out;
}

@media (max-width:768px) {
  .faq-container {
    width: 100%;
    padding: 4rem 2rem;
    margin-top: 2rem;
  }
  .faq-item{
    width: 100%;
  }
  .faq-question {
    font-size: 1rem;
  }
}
