.services-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.services-container {
  max-width: 1300px;
  margin: 0 auto;
}

.services-container h2 {
  font-size: 34px;
  color: #145a2f;
  margin-bottom: 15px;
}

.services-container p {
  color: #555;
  margin-bottom: 50px;
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 0 0 25px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 4px solid #145a2f;
}

.service-card h3 {
  color: #145a2f;
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  padding: 0 20px;
}

@media (max-width: 600px) {
  .service-card img {
    height: 150px;
  }

  .services-container h2 {
    font-size: 26px;
  }
}

/* ===============================
      CreatedBy Isac Pelembe    
   =============================== */