.content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.faq-wrap {
  display: grid;
  gap: 18px;
  flex: 1;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: white;
  text-align: left;
  padding: 22px 24px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.25s ease;
}

.faq-question:hover {
  background: rgba(255,255,255,0.02);
}

.faq-question-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-question-text small {
  color: var(--muted-2);
  font-size: 0.84rem;
  font-weight: 500;
}

.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  color: #ffffff;
  font-size: 1rem;
  flex-shrink: 0;
  transition: 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
  padding: 0 24px;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.7;
  padding: 0 0 22px 0;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.footer {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 900px) {
  .footer {
    margin-top: 32px;
  }

  .faq-question {
    padding: 18px 18px;
  }

  .faq-answer {
    padding: 0 18px;
  }
}