body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
}

.container {
  padding: 20px;
}

.header {
  text-align: center;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

button {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: #d97706;
  color: white;
}

button:hover {
  background: #b45309;
}

.footer {
  text-align: center;
  margin-top: 40px;
  color: #777;
}
