h2{
  margin-right: 10px;
}
p{
  margin: 0px;
}

/* FAQ styles */
.faq-container {
  margin: 0 auto;
}
.faq {
  margin-bottom: 0px;
}
.question-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.7s ease;
}
.question-container:hover {
  background-color: #74d2e7;
}
.question-container:hover .toggle-btn {
  background-color: #3c8dbc;
}
.answer {
  padding: 0px 20px;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  overflow: hidden;
  transition: 0.3s ease, opacity 0.3s ease;
  max-height: 0;
}
.toggle-btn {
  width: 30px;
  height: 30px;
  /* min-width: 30px;
  min-height: 30px; */
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.6s ease;
}
.toggle-btn p {
  margin: 0;
  font-size: 30px;
  color: rgb(0, 0, 0);
  transition: transform 0.3s ease, opacity 0.3s 300ms;
}
.toggle-btn p.rotate {
  transform: rotate(45deg);
}
.answer.visible {
  max-height: 200px;
  opacity: 1;
  margin: 0;
  padding: 20px 20px;
}