body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #f9fafb;
  color: #222;
}

/* Product Section */
.product-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 60px 20px;
}

/* Product Container */
.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1100px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 40px;
  transition: all 0.3s ease;
}

/* Product Image */
.product-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image img {
  width: 80%;
  max-width: 380px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.product-image img:hover {
  transform: scale(1.05);
}

/* Product Info */
.product-info {
  flex: 1 1 500px;
}

.product-title {
  font-size: 2rem;
  color: #0b3d2e;
  margin-bottom: 20px;
}

.product-description {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
}

/* Download Button */
.download-btn {
  display: inline-block;
  background: linear-gradient(135deg, #009688, #00695c);
  color: white;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: linear-gradient(135deg, #00796b, #004d40);
  transform: translateY(-3px);
}
