/* Services Section Styling */
.services-section {
  background-color: #f9f7f4;
  margin-bottom: 40px;
}

.services-section .card {
  border: none;
  border-radius: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background-color: #fff;
}

.services-section .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.services-section .card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
}

.services-section .card-title {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  margin-top: 15px;
  color: #2c2c2c;
}

.services-section .card-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.services-section .btn-warning {
  background-color: #d4af37;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.services-section .btn-warning:hover {
  background-color: #8a7800;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .services-section .card-img-top {
    height: 180px;
  }
}
