.services-section {
  padding: 5rem 2rem;
  background: #fffef8;
  text-align: center;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #4a3700;
  font-family: 'Georgia', serif;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #734c00;
}

.service-card p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}
