body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #f9f9f9 !important;
  color: #333 !important;
}

 .container {
  max-width: 1200px !important;
  margin: auto !important;
  padding: 20px !important;
}

.product {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px;
}

.product-img {
  flex: 1 1 300px !important;
  max-width: 400px !important;
}

.product-img img {
  width: 100% !important;
  border-radius: 10px !important;
}

.product-details {
  flex: 2 1 500px !important;
}

.product-details h1 {
  margin-bottom: 15px !important;
  color: #00796b !important;
}

.product-details p {
  line-height: 1.7 !important;
  margin-bottom: 20px !important;
}

.section {
  margin-top: 30px !important;
}

.section h2 {
  color: #004d40 !important;
  margin-bottom: 10px !important;
}

.section ul {
  padding-left: 20px !important;
  list-style: disc ;
}

.section ul li {
  margin-bottom: 10px !important;
  line-height: 1.6 !important;
}

@media (max-width: 768px) {
  .product {
    flex-direction: column;
  }
}