.faq {
  max-width: 1200px;
  margin: 60px auto;
  padding: 28px 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.faq h2 {
  margin: 0 0 6px;
}

.faq-lead {
  margin: 0 0 18px;
  opacity: 0.85;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.faq-item {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
  background: transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.faq-item:hover {
  background: rgba(15, 23, 42, 0.03);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  outline: none;
}

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

.faq-item summary::after {
  content: "+";
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0.8;
  transform: translateY(-1px);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 10px 0 2px;
  opacity: 0.9;
  line-height: 1.55;
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(29, 78, 216, 0.35);
  outline-offset: 6px;
  border-radius: 10px;
}

/* .faq-cta {
  display: flex;
  justify-content: center;
  margin-top: 18px;
} */

.faq-cta {
    text-align: center;
    margin-top: 2rem;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.faq-cta-text {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
    color: var(--na-icon-color);
}