.accordion {
      margin: auto;
    }
     .accordion-item {
      background: white;
      border-bottom: 1px solid #ccc;
      border-radius: 5px;
      margin-bottom: 10px;
      overflow: hidden;
    }
    .accordion-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      position: relative;
      text-align: left;
      width: 100%;
      padding: 1em 0.5em;
      font-weight:600;
      color: black
      border: none;
      background: none;
      outline: none;
      transition: color 0.2s;
    }
    .accordion-title:hover {
      background: none;
      color: #fd8800;
    }
    .icon {
      font-size: 18px;
      transition: transform 0.3s;
    }
    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding: 0 15px;
    }
  
    .accordion-content p {
      margin: 15px 0;
    }
 	.accordion-content p a {font-size: 16px !important;}

    .accordion-item.active .accordion-content {
      max-height: 200px;
      padding-bottom: 15px;
    }
    .active .accordion-title {color: #fd8800; }
    .active .icon {color: #fd8800; }
    .accordion-title:hover .icon {
    color: #fd8800; 
  }

  .icon {
    font-size: 18px;
    transition: color 0.3s;
  }