  /* Faq Section animation */
  .faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.35s ease-out;
  }
  .faq-item.active .faq-button {
    background-color: #14A762;
    color: white;
  }
  .faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding: 1.5rem;
    background-color: #ffffff;
  }
  .faq-item.active .icon-plus {
    transform: rotate(135deg);
    color: white;
  }
  .icon-plus {
    transition: transform 0.3s ease;
    color: #14A762;
  }
  .faq-button {
    transition: all 0.3s ease;
  }
  /* Style for h3 to ensure it behaves like the original span */
  .faq-button h3 {
    margin: 0;
    padding: 0;
    display: inline-block;
  }
  .faq-item.active .faq-button h3 {
  color: white !important;
}
/* Hover Card Animation */
.card {
  transition:
    transform 0.3s ease-in-out,
    height 0.4s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
  height: 350px;
}

.content {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}

.card:hover .content {
  opacity: 1;
  transform: translateY(0);
}
