.faq-section { margin-bottom: 3rem; }
.faq-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.faq-item { background: var(--white); border-radius: 16px; border: 1.5px solid var(--border); margin-bottom: 0.75rem; overflow: hidden; }
.faq-question { padding: 1.25rem 1.5rem; font-weight: 600; font-size: 0.95rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: "﹢"; font-size: 1.2rem; color: var(--muted); flex-shrink: 0; margin-left: 1rem; }
details[open] .faq-question::after { content: "−"; }
.faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.95rem; line-height: 1.8; color: #4a3e38; }
.faq-answer a { color: var(--green-text); text-decoration: underline; }
