body {
  margin: 0;
  overflow-x: hidden; /* This line prevents horizontal scrolling */
  font-family: 'Open Sans', sans-serif, Arial;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.service-card {
  max-width: 300px;
  flex: 1 1 300px;
}

.service-card img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.service-card h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #2d2d62;
  line-height: 1.4;
}

.service-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.service-card img {
  width: 100%;
  height: 200px;         /* Fixed height for uniform size */
  object-fit: cover;     /* Crop excess and maintain aspect */
  border-radius: 10px;
}
/* Mobile responsiveness */
@media (max-width: 600px) {
  .services {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 10px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }
}