.faq-page {
  background: white;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 30px 40px;
}
.faq-header {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  margin-bottom: 30px;
}

.faq-header h1 {
  margin: 0;
  text-align: center;
}
.faq-page h1 {
  text-align: center;
  margin-bottom: 30px;
}

.faq-page details {
  margin-bottom: 12px;

  background: white;

  border: 1px solid #e7e7e7;
  border-radius: 10px;

  padding: 12px 16px;
}
.faq-page details :hover{
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.faq-page summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-page p {
  margin-top: 10px;
  line-height: 1.5;
}

#faq-back {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
}

.faq-intro {
  border-left: 4px solid #4a6fa5;
}

.faq-intro summary {
  color: #2f5d8a;
  border-left: 5px solid #2f5d8a;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 700px) {
  .faq-header{
    margin-bottom: 16px;
  }
  .faq-header h1 {
    font-size: 18px;
  }
}