.service-sec-wrap {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(3,1fr);
}
.service-section-outer {
  padding: 100px 0px;
}
.service-sec-heading h2 {
  text-align: center;
  letter-spacing: 0px;
  color: #2A545E;
  text-transform: uppercase;
  opacity: 1;
  font-size: 54px;
  line-height: 60px;
  font-weight: 400;
  padding-bottom: 50px;
  margin: 0;
}
.service-section-outer .page-center{
  box-sizing: border-box;
  float: none;
  margin: 0 auto;
  max-width: 1390px;
  padding: 0 20px;
  width: 100%;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* or 'center' if you want center-aligned content */
  justify-content: flex-start;
  padding: 20px;
  position: relative;
  background-position: 98%;
  background-repeat: no-repeat;
  background-size: contain;
  border-right: 1px solid #e0e0e0;
  text-align: left; /* override center if necessary */
}

.step:last-child {
  border-right: none;
}

.icon {
  min-height: 100px; /* adjust based on tallest image */
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 10px;
}

.icon img {
  max-height: 80px; /* optional limit */
  height: auto;
  width: auto;
  display: block;
}

.service-section-outer .text {
  text-align: left;
  letter-spacing: 0px;
  color: #2A545E;
  opacity: 1;
  font-size: 30px;
  line-height: 39px;
}

@media(max-width:1600px){
  .service-section-outer .text {
    font-size: 30px;
    line-height: 44px;
  }
  .service-sec-heading h2 {
    font-size: 40px;
    line-height: 54px;
  }
}
@media(max-width:767px){
  .service-sec-wrap {
    gap: 3rem;
    grid-template-columns: repeat(1, 1fr);
  }
  .step {
    background-position: 50%;
    background-size: contain;
  }
  .service-section-outer {
    padding: 70px 0;
  }
  .service-section-outer .text {
    font-size: 22px;
    line-height: 33px;
  }
  .service-section-outer {
    padding: 40px 0;
  }
  .service-sec-heading h2 {
    font-size: 40px;
    line-height: 54px;
  }
  @media(max-width:580px){
    .service-sec-heading h2 {
      font-size: 30px;
      line-height: 40px;
    }

  }