.faq-header {
  padding: 10px 0 20px;
}

.faq-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 249 244 / 0.74);
  box-shadow: none;
}

.faq-header h1 {
  margin: 28px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 42px);
  color: var(--ink);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  padding-bottom: 60px;
}

@media (min-width: 901px) {
  .faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .faq-list {
    margin-inline: auto;
  }
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgb(255 249 244 / 0.74);
  box-shadow: none;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-deep);
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}

.faq-answer p {
  margin: 0 0 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer-email {
  color: var(--accent);
  font-weight: 800;
}
