.faq-section {
  background: #F7F5F0;
  border-left: 3px solid #DAA520;
  border-top: 2px solid #FF6B35;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(218, 165, 32, 0.1);
}

.faq-section h2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 1.4em;
  color: #DAA520;
}

.faq-item {
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(218, 165, 32, 0.15);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item:hover {
  background: rgba(218, 165, 32, 0.03);
}

.faq-toggle {
  display: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1em;
  user-select: none;
  transition: color 0.3s ease;
  color: #333;
}

.faq-question:hover {
  color: #FF6B35;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  font-size: 1.2em;
  color: #DAA520;
  transition: transform 0.3s ease;
  margin-left: 12px;
}

.faq-toggle:checked ~ .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  line-height: 1.6;
  color: #1a1a1a;
  font-size: 0.95rem;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 1000px;
  opacity: 1;
  padding: 0.75rem 0 1rem 1rem;
  background: transparent;
  border-left: 2px solid #FF6B35;
}

.faq-answer p {
  margin: 8px 0;
}

.faq-answer p:first-child {
  margin-top: 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
  margin: 8px 0 8px 20px;
}

@media (prefers-reduced-motion: reduce) {
  .faq-question,
  .faq-icon {
    transition: none;
  }
}
