.satya {
  position: relative;
  width: 100%;
  text-align: center;
}

.satya .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.satya .satya__title {
  font-size: 46px;
  font-weight: bold;
  margin-bottom: 1rem;
}
.satya .satya__subtitle {
  font-size: 22px;
  color: #555;
  font-weight: 700;
}

.satya .satya__content {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 1rem;
  text-align: left;
  margin-top: 3rem;
}

.satya .satya__text {
  flex: 1;
  min-width: 260px;
}

.satya .satya__text p {
  width: 90%;
  line-height: 35px;
  font-size: 18px;
  text-align: justify;
}

.satya .satya__heading {
  width: 80%;
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 2rem;
}
.satya .satya__list {
  list-style: none;
  padding-left: 0;
}
.satya .satya__list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  line-height: 38px;
}
.satya .satya__list li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: #207df1;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.satya .satya__list {
  counter-reset: step;
}

.satya .satya__image {
  max-width: 220px;
  flex-shrink: 0;
}

.satya .satya__image img {
  width: 100%;
  height: auto;
}

/* Responsif */
@media (max-width: 768px) {
  
  .satya .satya__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .satya .satya__text {
    text-align: left;
  }
  .satya .satya__title {
    font-size: 30px;
  }

  .satya .satya__heading {
    width: 100%;
  }

  .satya .satya__text p {
    width: 100%;
  }
}
