.faq-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.faq-card:hover {
  border-color: rgba(125, 139, 110, 0.3);
  box-shadow: 0 4px 12px rgba(125, 139, 110, 0.08);
}
.faq-card:hover .faq-question {
  color: #3D2B1F;
}
.faq-card:hover .faq-q-bg {
  background: rgba(255, 255, 255, 0.95);
}
