/*FAQ CARD DESIGN*/

.faq-card {
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

/* Question */
.faq-question {
  font-weight: 600;
  color: #0b3d91; /* navy deep blue */
  display: flex;
  align-items: center;
}

/* Answer hidden */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #6c757d;
  font-size: 14px;
}

/* Open state */
.faq-card.active .faq-answer {
  margin-top: 10px;
  max-height: 200px;
}

/* Active border highlight */
.faq-card.active {
  border-left: 4px solid #dc3545; /* red */
}