/* GRID */
#apolloFaqRoot {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.apollo-faq-card {
  background: #f3f7fb;
  border-radius: 12px;
  padding: 18px;
}

/* QUESTION */
.apollo-faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.faq-text-question{
font-family: 'Poppins', sans-serif;
font-weight: 500;
font-size: 20px;
line-height: 150%;
letter-spacing: 0.02em;
vertical-align: middle;
color:#003469;
}
/* ICON (NO BORDER, NO BG, SAME COLOR, FIXED SIZE) */
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 32px;
  font-weight: 600;

  color: #f5b316; /* SAME COLOR FOR + AND - */

  transition: transform 0.25s ease;
  user-select: none;
}

/* ANSWER SMOOTH */
.apollo-faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.35s ease;
  margin-left: 44px;
  margin-top: 0;

font-family: 'Poppins', sans-serif;
font-weight: 500;
font-size: 16px;
line-height: 150%;
letter-spacing: 0;
text-align: start;
vertical-align: middle;
color:#00477DCC


}

/* OPEN STATE */
.apollo-faq-card.active .apollo-faq-a {
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
}

/* ICON ANIMATION (OPTIONAL NICE TOUCH) */
.apollo-faq-card.active .faq-icon {
  transform: rotate(180deg);
}

/* MOBILE */
@media (max-width: 768px) {
  #apolloFaqRoot {
    grid-template-columns: 1fr;
  }
}