body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.services-section {
  padding: 60px 20px;
  background-color: #EAE4D5;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #333;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #777;
  margin-bottom: 40px;
}

.cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 30px;
}

.service-card {
  background: #fff;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 22px;
  margin: 15px 20px 10px;
  color: #594100;
}

.service-card p {
  font-size: 15px;
  margin: 0 20px 20px;
  color: #555;
  flex-grow: 1;
}

.card-btn {
  display: block;
  margin: 0 20px 20px;
  padding: 10px 15px;
  background-color: #594100;
  color: white;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
}

.card-btn:hover {
  background-color: #62542d;
}

/* Responsive for tablets and phones */
@media (max-width: 1024px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
}
