body {
  font-family: Arial, sans-serif;
  background: #eef2f3;
  margin: 0;
  padding: 20px;
}

.container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  width: 280px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.card p {
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }
}