h1 {
  text-align: center;
  color: #2461a6;
  margin-bottom: 2rem;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px #eaeaea;
  padding: 24px 32px;
  width: 300px;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.3em;
  color: #2c3e50;
}

.service-card p {
  color: #555;
  font-size: 1em;
  margin-bottom: 0;

}
.service-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 20%;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}