.how-to-steps {
  border: 1px solid #29276C;
  border-radius: 8px;
  padding: 40px;
  background-color: #ffffff;
  
  .steps-eyebrow {
    color: #0088F1 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px !important;
  }
  
  .steps-title {
    color: #29276C !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    margin-top: 0 !important;
    margin-bottom: 32px !important;
  }
  
  ol.steps-list {
    list-style: none !important;
    counter-reset: step;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  ol.steps-list > li {
    counter-increment: step;
    position: relative;
    padding: 24px 0 24px 50px;
    color: #54607A !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
  }
  
  /* Adds dividers between all list items, but skips the top of the first item */
  ol.steps-list > li + li {
    border-top: 1px solid #E5E9F0;
  }
  
  ol.steps-list > li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #29276C;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Forces the inline strong tag to act as a block-level header without using <br> or a Heading block */
  ol.steps-list > li > strong {
    display: block;
    color: #29276C !important;
    font-size: 18px !important;
    margin-bottom: 4px;
  }
  
  .pro-tip {
    background: #E8F4FB;
    border-left: 4px solid #0AB78C;
    padding: 20px 24px;
    border-radius: 0 4px 4px 0;
    margin-top: 16px;
  }
  
  .pro-tip p {
    margin: 0 !important;
    color: #54607A !important;
    font-size: 16px !important;
  }
  
  /* Highlights just the "Pro tip:" text while keeping the rest dark gray */
  .pro-tip p strong {
    color: #0AB78C !important;
  }
  
  /* Mobile Overrides */
  @media (max-width: 600px) {
    padding: 24px;
    
    ol.steps-list > li {
      padding-left: 42px;
    }
    
    ol.steps-list > li::before {
      width: 28px;
      height: 28px;
      font-size: 12px;
    }
  }
}
.steps-list li {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
      transition-delay: var(--step-delay, 0s);
    }
    .steps-list li.animate-in {
      opacity: 1;
      transform: translateY(0);
    }