
      .text-custom-blue { color: #006EF5; }
      .bg-custom-blue { background-color: #006ef5; }
      .bg-blue-cusotm { background-color: #006ef5; }
      .text-custom-dark { color: #091235; }
      .bg-custom-dark { background-color: #091235; }
      .nav-link.active { color: #006ef5 !important; }
      .mobile-nav-link.active { color: #006ef5 !important; }
      /* Initial animation states */
      [data-animate] { opacity: 0; transform: translateY(16px); }
      [data-animate].in-view { opacity: 1; transform: translateY(0); transition: opacity 1.5s ease, transform .7s ease; }
      .faq-answer {
        transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
      }
      .faq-answer.open {
      max-height: 500px; /* Adjust if your content might be taller */
      opacity: 1;
      }



      