.faq {
  background-color: #FFFFFF;
  display: block;
}

.faq-mobile {
  background-color: #FFFFFF;
  display: none;
}

.faq-main-text {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2.25rem;
}

.faq-card {
  padding-left: 4.3125rem;
  padding-right: 4.3125rem;
  padding-top: 1.9375rem;
  padding-bottom: 1.9375rem;
  border-radius: 1.25rem;
  background-color: #F5F5F5;
  text-align: left;
}

.faq-card-title {
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}

.faq-card-caption {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
}

.faq-secondary-text {
  font-weight: 500;
  font-size: 1rem;
}

.faq-button {
  color: #2251B1;
  width: 92px;
  height: 40px;
  background: #F2F6FF;
  border-radius: 6.25rem;
  font-weight: 500;
  font-size: 1rem;
  border: none;
}

body {
  font-family: 'Poppins', sans-serif;
}


@media screen and (max-width: 1024px) {
  .faq {
    display: none;
  }

  .faq-mobile {
    display: block;
  }

  .faq-button {
    width: 7.0625rem;
    height: 2.0625rem;
    font-size: 0.75rem;
  }

  .faq-main-text {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }

  .faq-secondary-text {
    font-size: 0.875rem;
  }
}

table {
  border: 2px solid;
}

th,
td {
  border: 1px solid black;
  border-radius: 10px;
  padding: 8px;
}