/*-- FAQ page --*/
#faq {
  padding: var(--sectionPadding);
}
#faq .faq-wrap {
  max-width: 50rem;
  margin: 0 auto;
}
#faq .section-head {
  text-align: center;
  margin-bottom: 3rem;
}
#faq .section-head .cs-title {
  margin: 0 auto 0.75rem;
}
#faq .section-head p {
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto;
}
#faq .faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
#faq .faq-item[open] {
  border-color: var(--primary);
}
#faq .faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 3.5rem 1.25rem 1.5rem;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--tertiary);
  font-weight: 600;
  line-height: 1.35;
}
#faq .faq-item summary::-webkit-details-marker {
  display: none;
}
#faq .faq-item summary::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--primary-dark);
  border-bottom: 2px solid var(--primary-dark);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s ease;
}
#faq .faq-item[open] summary::after {
  transform: translateY(-20%) rotate(-135deg);
}
#faq .faq-item .answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.65;
}
#faq .faq-item .answer p {
  margin-bottom: 0.6rem;
}
#faq .faq-item .answer p:last-child {
  margin-bottom: 0;
}
