
  /* Accordion styles */
  .accordion-item {
    border-bottom: 1px solid #e5e7eb;
  }
  .accordion-toggle {
    display: none;
  }
  .accordion-title {
    display: block;
    padding: 1rem;
    background-color: #f3f4f6;
    cursor: pointer;
  }
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    padding: 0 1rem;
  }
  .accordion-toggle:checked + .accordion-title + .accordion-content {
    max-height: 1000px; /* Adjust to your content height */
  }

