body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.title {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #222;
}

.subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.product {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-image {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.features {
  text-align: left;
  margin-bottom: 30px;
  list-style-type: disc;
  padding-left: 20px;
}

.features li {
  margin-bottom: 10px;
}

.cta-button {
  display: inline-block;
  background-color: #28a745;
  color: #fff;
  padding: 12px 24px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #218838;
}