/* Standalone FAQ accordion styles - no build step, no Bootstrap JS dependency */

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover,
.faq-question:focus-visible {
  background: rgba(46, 90, 23, 0.25);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  margin-left: 1rem;
  font-size: 1.25rem;
  line-height: 1;
  color: #6fae3d;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.25rem 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
}

.faq-answer[hidden] {
  display: none;
}
