/* FAQ Items */
.faq-item {
  background: transparent;
  margin-bottom: 12px;
  border-bottom: 1px solid #F6D23C;
  overflow: hidden;
  transition: 0.3s;
  text-align: left;
}

.faq-question {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #0A2342;
}

.faq-toggle {
  font-size: 35px;
  color: #F6D23C;
  font-weight: 500;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active {
  background: #F6D23C;
  border: none;
  border-radius: 8px;
}

.faq-item.active .faq-question {
  color: #FFFFFF;
}

.faq-item.active .faq-answer {
  max-height: 300px;   /* big enough to show full content */
  padding: 15px 20px;
  background: #F6D23C;
  color: #FFFFFF;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFFFFF;
}