/* FAQ Item Styles */
.faq-item {
    border-bottom: 1px solid #444;
    padding: 10px 0;
  }
  .faq-question {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    position: relative;
    padding-right: 20px;
  }
  .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 18px;
    transition: transform 0.3s ease;
  }
  .faq-item.active .faq-question::after {
    transform: rotate(45deg);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    color: #ddd;
    margin-top: 5px;
  }
  .faq-item.active .faq-answer {
    max-height: 500px; /* Ensure this value is high enough for your content */
    opacity: 1;
  }