.cap-stacked-sections-lg {
		background-position: center !important;
}

.step-block {
  background: #eeeeee;
  padding: 15px;
  border-radius: 20px;
  position: relative;
  text-align: left;
  max-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

/* Add angled divider (arrow shape) between step blocks */
.step-block:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 40px;
  height: 100%;
  background: #eeeeee;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 1;
}

/* Content layering */
.step-block > * {
  position: relative;
  z-index: 2;
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-label {
  font-weight: 800;
  font-family: 'Vitesse', sans-serif;
  font-size: 3rem;
  text-transform: uppercase;
  margin-right: 10px;
  line-height: 1.1;
}

.step-logo{
  height: 36px;
  width: auto;
}
.step-icon {
  position: absolute;
  top: -30px;
  right: 0px;
  height: 80px;
  width: auto;
}
.step-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.step-number {
  font-size: 7rem;
  font-family: 'Vitesse', sans-serif;
  font-weight: 900;
  line-height: 1;
  margin-right: auto;
}

.step-text {
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 600;
  color: #333;
  margin: 0px;
}


/* Responsive behavior */
@media screen and (max-width: 900px) {
  .three-step-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .step-block {
    border-radius: 12px;
    padding: 15px;
  }

  .step-block:not(:last-child)::after {
    display: none;
  }

  .step-header {
    gap: 10px;
  }
  .step-logo {
    height: 35px;
  }

  .step-icon {
    position: absolute;
    top: -45px;
    right: 0px;
    height: auto;
    width: auto;
  }

   .step-number {
    font-size: 6rem;
  }

  .step-text {
    font-size: 1.2rem;
  }

}