.page-faq section .inner {
  max-width: 768px;
}

#faq-title {
  background-image: url('../img/bg-blue.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#faq-title > .inner {
  text-align: center;
}

#faq-title h1 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  #faq-title h1 {
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 16px;
  }
}

#faq-title p {
  font-size: 16px;
  line-height: 24px;
}

#faq-title p a {
  color: #00a3b0;
}

#faq-questions .question {
  border-bottom: 1px solid #bfbfbf;
  cursor: pointer;
  padding: 16px 0;
}

#faq-questions .question:first-child {
  padding-top: 0;
}

#faq-questions .question:last-child {
  border-bottom: none;
}

#faq-questions .question .head {
  display: grid;
  gap: 0 16px;
  grid-template-columns: auto 12px;
}

#faq-questions .question h3 {
  font-size: 16px;
  line-height: 24px;
}

@media screen and (min-width: 768px) {
  #faq-questions .question h3 {
    font-size: 20px;
    line-height: 28px;
  }
}

#faq-questions .question .icon {
  display: block;
  height: 8px;
  margin-top: 8px;
  transition: transform 200ms;
  width: 12px;
}

#faq-questions .question.open .icon {
  transform: rotate(-180deg);
}

#faq-questions .question .content {
  display: none;
  font-size: 12px;
  line-height: 20px;
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  #faq-questions .question .content {
    font-size: 16px;
    line-height: 24px;
  }
}

#faq-questions .question.open .content {
  display: block;
}
