/* ============================
   Flow FAQ – Clean BFCM Match
   ============================ */
#docs-heading1 {
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 20px;
}
#docs-heading2 {
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 15px;
}
#flowFaqWrapper {
  padding: 0 !important;
  background: transparent !important;
}

/* FAQ Card */
#flowFaqWrapper .faq-item {
  background: #ffffff !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
  margin-bottom: 20px !important;
  overflow: hidden !important;
  transition: all 0.25s ease !important;
  border: none !important;
  padding: 0 !important;
}

#flowFaqWrapper .faq-item:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08) !important;
}

/* Question Header */
#flowFaqWrapper .faq-header {
  padding: 22px 28px !important;
  background: #f8f9fb !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  transition: background 0.25s ease !important;
}

/* Question Text */
#flowFaqWrapper .faq-header h3 {
  margin: 0 !important;
  font-family: var(--font-body-family) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #1e3a5f !important;
  flex: 1 !important;
  line-height: 1.5 !important;
}

/* Active Header */
#flowFaqWrapper .faq-item.active .faq-header {
  background: rgba(0,122,255,0.08) !important;
}

#flowFaqWrapper .faq-item.active .faq-header h3 {
  color: #007aff !important;
}

/* Remove Purple Icon Completely */
#flowFaqWrapper .faq-icon {
  all: unset !important;
  margin-left: auto !important;
  position: relative !important;
  width: 18px !important;
  height: 18px !important;
}

/* Chevron Arrow */
#flowFaqWrapper .faq-icon::before {
  content: "▾";
  font-size: 16px;
  color: #1e3a5f;
  transition: transform 0.3s ease;
}

#flowFaqWrapper .faq-item.active .faq-icon::before {
  transform: rotate(180deg);
}

/* Hide + / − text */
#flowFaqWrapper .faq-icon {
  font-size: 0 !important;
}

/* Answer Section */
#flowFaqWrapper .faq-content {
  padding: 22px 28px 28px !important;
  font-family: var(--font-body-family) !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
  color: #334155 !important;
  display: none !important;
}

#flowFaqWrapper .faq-item.active .faq-content {
  display: block !important;
}