.services-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 32px 0 0 0;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(14,30,37,0.12), 0 2px 16px rgba(14,30,37,0.18);
  padding: 32px 24px 24px 24px;
  width: 350px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s;
}
.service-card:hover {
  box-shadow: 0 4px 16px rgba(19,128,155,0.18), 0 8px 32px rgba(19,128,155,0.12);
}
.service-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin: 16px 0 8px 0;
  color: #222;
}
.service-desc {
  font-size: 1rem;
  font-weight: 400;
  color: #444;
}
@media (max-width: 900px) {
  .services-flex {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .service-card {
    width: 95%;
    min-width: 0;
  }
}
