.faq {
  background-color: #252d87;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0px;
}

.faq-content {
  max-width: 1220px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-left: 20px;
  margin-right: 20px;
}

.faq-content-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #d8d9e9;
  border-radius: 20px;
  padding: 30px;
  width: 30%;
}

.faq-content-box h1 {
  font-weight: 700;
  font-size: 30px;
  text-align: start;
  color: #1e293b;
  line-height: 40px;
}

.faq-content-box p {
  font-weight: 400;
  font-size: 16px;
  text-align: start;
  color: #545964;
  line-height: 30px;
  margin-bottom: 16px;
}

@media (max-width: 425px) {
  .faq-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .faq-content-box {
    width: 80%;
  }
}
