.faq-section {
  --black: #231F20;

  margin: 2rem 0;
}

.faq-section .faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-item a {
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
  color: var(--black);
}

@media (max-width: 600px) {
  .faq-section .faq-list {
    display: flex;
    flex-direction: column;
  }

  .faq-section h2 {
    margin-bottom: 1.5rem;
  }
}