.hero {
  background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836');
  background-size: cover;
  background-position: center;
  min-height: 80vh;
}

.card {
  flex: 1 1 250px;
  max-width: 250px;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card span {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: bold;
}

.card:hover img {
  transform: scale(1.1);
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.review {
  flex: 1 1 250px;
  max-width: 300px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  font-style: italic;
  transition: 0.3s;
}

.review span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  font-style: normal;
}

.review:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  footer {
    background-color: #111;
  }
}