.services-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 25px 20px;
  font-family: sans-serif;
}

.services-heading {
  text-align: center;
  font-size: 44px;
  margin-bottom: 35px;
  line-height: 1.4;
  font-weight: bold;
  color: #01143c;
}

.service-box {
  margin-bottom: 40px;
}

.service-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.service-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 100%;
  justify-content: center;
}

.service-icon {
  width: 70px;
  height: auto;
}

.service-title {
  font-size: 1.4rem;
  color: #000000;
  font-weight: bold;
  margin: 0;
}

.service-text {
  flex: 1 1 100%;
  margin-top: 20px;
  color: #555;
  line-height: 1.6;
}

/* For screen ≥ 992px */
@media (min-width: 992px) {
  .service-flex {
    flex-wrap: nowrap;
  }

  .service-info {
    flex: 0 0 40%;
    justify-content: flex-start;
    margin-top: 0;
  }

  .service-text {
    flex: 0 0 60%;
    margin-top: 0;
  }
}

@media (max-width:768px) {
    .services-heading{
        
        font-size: 2.2rem;
            line-height: 1.2;
            margin-bottom: 40px;
    }
}