body{
  background: linear-gradient(to right, #c2ebff, #f6eaac);
}

.product-container {
  margin: 50px auto;
  max-width: 900px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.product-title {
  font-size: 27px;
  font-weight: bold;
  margin-top: 20px;
}
.product-description {
  margin: 20px 0;
  font-size: 1.1rem;
  color: #555;
}
.product-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #28a745;
}
.enquiry-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}
.enquiry-btn:hover {
  background-color: #333;
  text-decoration: none;
}
.carousel img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}