.accordion {
    border: 1px solid #ccc;
    background: black;
    margin-top: 15px;
  }

  .accordion-header {
    padding: 1rem;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    background: #000;
  }

  .icon {
    position: absolute;
    right: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: height 0.4s ease, padding 0.4s ease;
  }

  .accordion-content.open {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0rem;
    margin-bottom: 1rem;
  }