/* ===== FAQ Styles ===== */

.faq-section {
  padding: 16px 24px 96px;
}

.faq-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.faq-heading h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 12px;
}

.faq-heading p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.faq-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

@media(max-width:700px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--page-radius);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 700;
  list-style: none;
}

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

.faq-q .plus {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: transform .2s;
}

details[open] .faq-q .plus {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #3d3f52;
}
