.faq-list {
  max-width: 750px;
  margin: 0 auto;

  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;

  border-radius: 16px;
  border: 1px solid rgba(1, 164, 128, 0.14);

  background: radial-gradient(circle at 92% 0%, rgba(1, 164, 128, 0.08), transparent 34%), linear-gradient(180deg, rgba(13, 29, 49, 0.88), rgba(8, 22, 36, 0.96));

  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.faq-item:hover,
.faq-item.is-open {
  border-color: rgba(1, 164, 128, 0.34);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.26),
    0 0 20px rgba(1, 164, 128, 0.08);
}

.faq-item__question {
  width: 100%;
  min-height: 58px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 16px 18px;

  background: transparent;
  border: 0;

  color: var(--text);
  text-align: left;

  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;

  cursor: pointer;
}

.faq-item__question span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
  border: 1px solid rgba(1, 164, 128, 0.2);
  background: rgba(1, 164, 128, 0.08);

  color: var(--accent);
  font-size: 18px;
  line-height: 1;

  transition: 0.2s ease;
}

.faq-item.is-open .faq-item__question span {
  transform: rotate(45deg);
  background: rgba(1, 164, 128, 0.16);
  border-color: rgba(1, 164, 128, 0.42);
}

.faq-item__answer {
  display: none;

  padding: 0 18px 18px;

  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.faq-item__answer p {
  margin: 0;
}

.faq-item.is-open .faq-item__answer {
  display: block;
}

@media (max-width: 560px) {
  .faq-list {
    max-width: 100%;
  }

  .faq-item__question {
    min-height: 52px;
    padding: 14px 15px;
    font-size: 15px;
  }

  .faq-item__answer {
    padding: 0 15px 15px;
    font-size: 14px;
  }
}
