.content-container {
    width: 100%;
    min-width: 400px;
    margin: 20px auto;
  }
  
  h2 {
    font-size: 30px;
    font-weight: 700;
  }
  
  .eqd-accordion__heading {
    margin-bottom: 0;
  }
  
  .eqd-accordion__button {
      border: 0;
      border-radius: 5px;
      border-bottom-right-radius: 5px;
      border-bottom-left-radius: 5px;
      box-shadow: none;
      justify-content: normal;
      text-align: left;
      color: #666666;
      background-color: #e2e4e1;
      background-image: url(https://equalizedigital.com/wp-content/uploads/2024/07/minus.svg), linear-gradient(transparent, transparent);
      background-repeat: no-repeat;
      background-position: right 1.25rem center;
      background-size: 1.5rem;
      cursor: pointer;
      display: inline-block;
      font-weight: 400;
      font-size: 22px;
      margin: 0;
      padding: 1rem 3.5rem 1rem 1.25rem;
      text-decoration: none;
      width: 100%;
      font-family: Assistant;
      box-shadow: 0 0px 20px rgb(0 0 0 / 0.1);
      -webkit-transition: all .5s ease-in-out;
      -moz-transition: all .5s ease-in-out;
      -o-transition: all .5s ease-in-out;
      -ms-transition: all .5s ease-in-out;	
      transition: all .5s ease-in-out;
  }

  .eqd-accordion__button:hover {
    background-color: #b8c3b2;
  }
  
  .eqd-accordion__button[aria-expanded=false], 
  .eqd-accordion__button[aria-expanded=false]:hover {
      background-image: url(https://equalizedigital.com/wp-content/uploads/2024/07/plus.svg), linear-gradient(transparent, transparent);
      background-repeat: no-repeat;
  }
  
  .eqd-accordion__button[aria-expanded=false] {
      background-size: 1.5rem;
  }

  .eqd-accordion__button[aria-expanded=true] {
    border-bottom-right-radius: 0;
      border-bottom-left-radius: 0;
}
  
  .eqd-accordion__content {
      color: #1b1b1b;
      background-color: #fff;
      margin-top: 0;
      overflow: auto;
      padding: 1rem 1.25rem calc(1rem - .25rem);
      font-size: 1.06rem;
      line-height: 1.5;
      border-bottom: .25rem solid #e2e4e1;
      border-left: .25rem solid #e2e4e1;
      border-right: .25rem solid #e2e4e1;
  }

  @media screen and (max-width: 600px) {
    .content-container {
      width: 100%;
      min-width: 300px;
      margin: 0 auto;
    }

    .eqd-accordion__button {
      border: 0;
      border-radius: 5px;
      border-bottom-right-radius: 5px;
      border-bottom-left-radius: 5px;
      box-shadow: none;
      justify-content: normal;
      text-align: left;
      color: #1b1b1b;
      background-color: #e2e4e1;
      background-image: url(https://equalizedigital.com/wp-content/uploads/2024/07/minus.svg), linear-gradient(transparent, transparent);
      background-repeat: no-repeat;
      background-position: right 1.25rem center;
      background-size: 1.5rem;
      cursor: pointer;
      display: inline-block;
      font-weight: 400;
      font-size: 22px;
      margin: 0;
      padding: 1rem 3.5rem 1rem 1.25rem;
      text-decoration: none;
      width: 100%;
      font-family: Assistant;
  }
  }