body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
  text-align: center;
}
.page-title {
  margin-top: 160px;       /* Prevents title being hidden */
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}

/* Services grid layout */
.services-container {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding-bottom: 50px;
}

.service-box {
  width: 250px;
  text-align: center;
}

.service-box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}

.service-box h3 {
  font-size: 20px;
  font-weight: 600;
}