body{
  padding-left: 30px;
  padding-right: 30px;
}
.about-section {
  max-width: 85%;
  margin: 0 auto;
  text-align: center;
}

.about-section h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
}

.about-section p {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}
.process-section{
  max-width: 90%;
}
.process-image {
  flex: 1;
  background: url('../images/elect.png') center/cover no-repeat;
  min-height: 400px;
}
@media (max-width: 768px) {
  body {
    padding-left: 15px; 
    padding-right: 15px;
  }

  .about-section h2 {
    font-size: 30px;
  }

  .about-section p {
    font-size: 16px;
    text-align: justify;
  }

  .process-section {
    flex-direction: column;
  }

  .process-image {
    min-height: 250px;
    width: 100%;
  }

  .step {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number {
    margin-bottom: 5px;
  }
}