.service-card-enhanced {
  position: relative;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(25, 25, 112, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: none !important;
}

.service-card-enhanced:hover {
  box-shadow: none !important;
}

.service-image-container {
  position: relative;
  overflow: hidden;
  height: 256px;
  min-height: 256px;
  max-height: 256px;
  width: 100%;
  flex-shrink: 0;
}

.service-image-container img {
  width: 100%;
  height: 256px;
  min-height: 256px;
  max-height: 256px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.service-content {
  position: relative;
  z-index: 1;
}

.service-action {
  margin-top: 1rem;
}

