.accordion {
      width: 100%;
      margin: 0 auto;
    }

    .accordion-item {
      border-bottom: 1px solid #fff;
      background: #00a3d9;
      overflow: hidden;
      
    }

    .accordion-title {
      background-color: #02B1FF;
      color: #fff;
      width: 100%;
      text-align: left;
      padding: 1em;
      font-weight: bold;
      border: none;
      outline: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s ease;
    }

    .accordion-title:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
    }

    .accordion-title .icon {
      font-weight: normal;
      font-size: 1em;
      transition: transform 0.3s ease;
    }

.icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #fff;
  color: #00a3d9; /*  */
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1em;
      border-left: 1px solid #02B1FF;
      border-right: 1px solid #02B1FF;
      border-bottom: 1px solid #02B1FF;
}

.accordion-content.open {
  padding: 1em;
}