.services-section {
  background: #fff;
}

.section-title {
  color: #2e572f;
  font-size: 2.5rem;
  font-weight: bold;
}

.swiper {
  padding-bottom: 10px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #2e572f;
  margin-bottom: 5px;
  min-height: 48px;
}

.service-card p {
  font-size: 14px;
  color: #555;
  flex-grow: 1;
}

.service-card .btn {
  margin-top: 10px;
  margin-bottom: 15px;
  background: #4CAF50;
  border: none;
  color: #fff;
}

.service-card .btn:hover {
  background: #64c666;
}
