.services {
  padding: 64px 0;
  background-color: #f9f9f9;
}

.services .section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 48px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.service-card img {
  width: 100%;
  max-width: 320px;
  height: 240px;
  object-fit: cover;
  margin-bottom: 16px;
}

.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 1rem;
  color: #555;
}
