.faq-hero {
  padding-top: 120px;
  .content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;

    h1 {
      text-align: center;
      margin-bottom: 24px;
    }
    p {
      text-align: center;
      max-width: 630px;
      font-size: 20px;
      letter-spacing: -0.005em;
    }
  }
}

.faqs {
  margin-top: 100px;
}

.faq {
  border: 1px solid var(--text-secondary);
  margin-bottom: 24px;
  overflow: hidden;
  color: #000000;
  background-color: #f9f9f9;
  padding: 2px 6px;
}

.faq input {
  display: none;
}

.faq-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px;
  color: #000000;
  font-size: 20px;
  line-height: 160%;
  cursor: pointer;
  font-weight: 400;
  transition: background-color 0.3s ease;
}

.faq-icon::before {
  content: "+";
  font-size: 32px;
  transition: transform 0.3s ease;
  color: var(--highlight-gold);
}

.faq input:checked + .faq-label .faq-icon::before {
  content: "−";
  color: var(--highlight-gold);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  color: var(--text-secondary);
  line-height: 28px;
  letter-spacing: -0.001em;
  font-size: 16px;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq input:checked ~ .faq-content {
  max-height: 300px;
  padding: 16px;
  padding-top: 2px;
}
