.fp-table-faq h2 {
  text-align: center;
  color: #f5c119;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.fp-table-faq h2 svg {
  width: 60px;
  height: 16px;
}
.fp-table-faq table {
  width: 100%;
  border-collapse: collapse;
  background-color: #3c2c4a;
  border-radius: 10px;
  overflow: hidden;
}
.fp-table-faq th, .fp-table-faq td {
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
}
.fp-table-faq th {
  background-color: #2e1f3b;
  font-weight: 600;
  width: 30%;
}
.fp-table-faq td {
  background-color: #3c2c4a;
}
.fp-table-faq tr + tr td, .fp-table-faq tr + tr th {
  border-top: 1px solid #5a4863;
}
@media (max-width: 600px) {
  .fp-table-faq th, .fp-table-faq td {
    display: block;
    width: 100%;
    padding: 12px;
  }
  .fp-table-faq th {
    background-color: #2e1f3b;
  }
  .fp-table-faq tr {
    margin-bottom: 20px;
    display: block;
  }
}