/* ===== FAQ SECTION STYLES WITH ICONS ===== */
#faq {
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

#faq .faq {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 10px;
  background: #f9f9f9;
  border-radius: 10px;
  transition: background 0.3s ease;
}

#faq .faq.active {
  background: #e8f7fb;
}

#faq .faq-question {
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  padding: 15px 12px;
  color: #003366;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

#faq .faq-question:hover {
  color: #00bcd4;
}

#faq .faq-icon {
  font-size: 22px;
  font-weight: bold;
  color: #00bcd4;
  transition: transform 0.3s ease, color 0.3s ease;
}

#faq .faq.active .faq-icon {
  transform: rotate(45deg);
  color: #003366;
}

#faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 12px;
  color: #333;
}

#faq .faq.active .faq-answer {
  max-height: 500px;
  padding: 10px 12px 20px;
}