* {
  padding: 0;
  margin: 0;
}
.app {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header,
.content,
.footer {
  max-width: 1200px;
  width: 100%;
}
.header {
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  width: calc(100% - 48px);
}
.logo {
  height: 40px;
  width: 40px;
}
.header .text {
  font-size: 18px;
  margin-left: 8px;
}
.content {
  padding: 24px;
  width: calc(100% - 48px);
}
.content .title {
  color: #201515;
  font-size: 42px;
  font-weight: 600;
  text-align: center;
}
.content .title2 {
  color: #201515;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-top: 40px;
}
.content .btnWrapper {
  text-align: center;
  margin-top: 40px;
}
.content .btn {
  background-color: #3c7eff;
  border-radius: 22px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 24px;
  display: inline-block;
  cursor: pointer;
}
.content .title3 {
  color: #201515;
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-top: 80px;
}
.item {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  align-items: center;
  padding-bottom: 40px;
  flex-wrap: wrap;
}
.itemImg,
.itemText {
  width: calc(50% - 20px);
}
.itemImg {
  height: auto;
}
.itemText {
  display: flex;
  flex-direction: column;
}
.subItem {
  display: flex;
  margin-top: 24px;
}
.subItemIcon {
  width: 18px;
  height: 18px;
  margin-right: 16px;
  position: relative;
  top: 2px;
}
.subItemText {
  color: #403f3e;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
.faqTitle {
  color: #201515;
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-top: 40px;
}
.faqQuestion {
  color: #201515;
  font-size: 20px;
  font-weight: 500;
  margin-top: 40px;
}
.faqAnswer {
  color: #201515;
  font-size: 18px;
  font-weight: 400;
  margin-top: 24px;
}
.footer {
  height: 60px;
  display: flex;
  align-items: center;
  margin-top: 80px;
}
.footerText {
  color: #403f3e;
  font-size: 14px;
  font-weight: 400;
  margin-left: 22px;
}

@media (max-width: 926px) {
  .content .title {
    padding-top: 0;
    font-size: 36px;
  }
  .content .title3 {
    margin-top: 40px;
    font-size: 26px;
  }
  .item {
    padding-bottom: 0;
  }
  .itemImg,
  .itemText {
    width: 100%;
    margin-bottom: 40px;
  }
}
