* {
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #ece6dc;
  margin: 0;
  padding: 40px;
}

.card-section {
  max-width: 1200px;
  margin: auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 30px 25px;
  min-height: 260px;

  background: linear-gradient(135deg, #ffffff 60%, #e9eef2);
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);

  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

.card img {
  width: 140px;
  height: auto;
  margin-bottom: 26px;
}

.card h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: #111;
}