body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 400px;
  width: 100%;
}

.card h2 {
  margin-top: 0;
}

.description {
  color: #555;
}

.prices {
  margin-top: 10px;
}

.prices p {
  margin: 5px 0;
}

.buy-button,
.contact-button {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
}

.buy-button:hover,
.contact-button:hover {
  background-color: #0056b3;
}

.contact-button {
  background-color: #28a745;
  margin-right: 10px;
}

.card {
  position: relative;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}