.faq-container2 {
  width: 90%;
  max-width: 800px;
  padding: 40px;
  border-radius: 10px;
}


.faq-content2 {
  text-align: center;
}



.faq-content2 h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.faq-content2 h2 {
  font-size: 28px;
  color: black;
  font-weight: bold;
}

.faq-list2 {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.faq-item2 {
  border-top: 1px solid #ccc;
  padding: 15px;
  cursor: pointer;
}

.faq-item2:last-child {
  border-bottom: 1px solid #ccc;
}

.faq-question2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon2 {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: 1px solid rgb(212, 212, 212);
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

.faq-item2:hover .faq-icon2 {
  transform: rotate(120deg);
}

.faq-answer2 {
  max-height: 0;
  /* overflow: hidden; */
  transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}


.faq-answer2 p {
  text-align: left;
}


.faq-item2.open .faq-answer2 {
  max-height: 300px;
  opacity: 1;
}

.faq-item2.open .faq-icon2 {
  transform: rotate(90deg);
}

@media only screen and (max-width: 768px) {
  .faq-icon2 {
    height: 50px;
    width: 50px;
  }
}