.faq-content {
  display: grid;
  gap: 28px;
}

.faq-hero {
  display: grid;
  gap: 12px;
}

.faq-section {
  display: grid;
  gap: 12px;
}

.faq-section h2 {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 16px 48px 16px 18px;
  color: #0f172a;
  font-weight: 600;
  line-height: 1.4;
}

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

.faq-item summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 18px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #1d4ed8;
  background: #eff6ff;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
}

@media (max-width: 560px) {
  .faq-content {
    gap: 22px;
  }

  .faq-item summary {
    padding-right: 42px;
  }
}
