.support-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.help-description {
  margin-bottom: 1rem;
}

.help-description,
.question > p {
  text-wrap: balance;
}

.support-content h1 {
  margin-bottom: 0.5rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--background);
  color: var(--text-on-dark);
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  transition: transform 0.2s;
  font-size: 1.25rem;
  margin: 1rem 0 2rem;
}

.contact-btn:hover {
  transform: scale(1.05);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  .question {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 768px) {
  .hero-main {
    min-height: calc(100dvh - 96px - 1.8rem);
  }

  .hero-main.support-layout {
    justify-content: center;
    align-items: center;
  }

  .support-content {
    font-size: 1.5rem;
  }

  .contact-btn {
    font-size: 1.5rem;
    transition: transform 0.2s;
    margin: 1rem 0 4rem;
  }

  .help-description,
  .question > p {
    max-width: 50ch;
  }

  .faq {
    gap: 2rem;
  }
}
