.faq-section-title {
  margin-top: 80px;
  margin-bottom: 20px;
  text-align: center;
}

.faq-section-title:first-child {
  margin-top: 0;
}

.faq-section-title h2 {
  font-size: 26px;
}

.faq-title-line {
  margin: 0 auto 50px;
  height: 5px;
  width: 80px;
  background: linear-gradient(to right, #38BEB9, #B2DBD8);
}

.faq li {
  margin-bottom: 20px;
  background: #38BEB9;
  padding: 20px;
  border-radius: 20px;
  cursor: pointer;
}

.question {
  display: flex;
  align-items: center;
}

.question h3 {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}

.question span {
  margin-left: auto;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

.answer {
  display: none;
  margin-top: 20px;
  padding: 20px;
  background-color: #eeeeee;
  border-radius: 10px;
}

.answer p {
  margin-bottom: 0;
}

@media screen and (max-width: 480px) {
  .faq-section-title {
    margin-top: 60px;
    margin-bottom: 20px;
  }
  .faq-section-title h2 {
    font-size: 20px;
  }
  .faq-title-line {
    margin: 0 auto 40px;
    width: 60px;
  }
  .faq li {
    padding: 15px;
  }
  .question h3 {
    margin-right: 5px;
    font-size: 15px;
  }
  .question span {
    font-size: 18px;
  }
  .answer p {
    font-size: 14px;
  }
}
