.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 14px 0;
}

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

.faq-question {
  background: none;
  border: none;
  font-weight: 600;
  font-size: 18px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 0;
  position: relative;
  padding-right: 20px;
  color: #004c97;
}

.faqArrow {
  position: absolute;
  right: 0;
  top: 4px;
  line-height: 14px;
}

.faq-item.active .faqArrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0;
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  /* or auto with JS */
  padding: 10px 0;
}

@media (max-width: 767.98px) {
  .faq-question {
    font-size: 16px;
  }
}

