/* FAQ Accordion */
.hh-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.hh-faq-item {
  border: 1px solid var(--hh-card-border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  background: var(--hh-card-bg);
  overflow: hidden;
  transition: border-color var(--hh-fast);
}

.hh-faq-item[open] {
  border-color: rgba(255, 107, 53, 0.3);
}

.hh-faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--hh-text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--hh-fast);
}

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

.hh-faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--hh-brand-teal);
  transition: transform var(--hh-fast);
  flex-shrink: 0;
  margin-left: 1rem;
}

.hh-faq-item[open] .hh-faq-question::after {
  content: "\2212";
  color: var(--hh-brand-orange);
}

.hh-faq-question:hover {
  color: var(--hh-brand-orange);
}

.hh-faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--hh-muted);
  line-height: 1.7;
}

.hh-faq-answer p {
  margin: 0;
}

/* FAQ category headers */
.hh-faq-category {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: var(--hh-brand-orange);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.hh-faq-category:first-of-type {
  margin-top: 0;
}
