/* Style for the accordion */
  .accord-new {
    border: 1px solid #ccc;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
  }
  .accord-new .accordion-header {
    background-color: #f1f1f1;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
  }
  .accord-new .accordion-content {
    padding: 10px;
    display: none; /* Hide content by default */
  }
  .accord-new .accordion-content.active {
    display: block; /* Show content when active */
  }