
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: #f2f5fa;
  color: #333;
}
.banner {
  background: linear-gradient(to right, #005b94, #003f6b);
  color: white;
  text-align: center;
  padding: 60px 20px;
}
.banner h1 {
  font-size: 36px;
  margin-bottom: 10px;
}
.banner p {
  font-size: 16px;
  margin-bottom: 20px;
}
.cta-btn {
  background: #ff9800;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
}
.product-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 10px;
}
.product-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  max-width: 900px;
  margin: 20px;
  overflow: hidden;
}
.product-img {
  width: 45%;
  object-fit: cover;
}
.product-info {
  padding: 20px;
  width: 55%;
}
.product-info h2 {
  margin-top: 0;
  color: #003f6b;
}
.product-info table {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
}
.product-info td {
  padding: 6px;
  border-bottom: 1px solid #eee;
}
.price {
  font-weight: bold;
  color: #ff5722;
  text-align: center;
  font-size: 16px;
}
.contact {
  background: white;
  text-align: center;
  padding: 40px 20px;
}
.contact a {
  color: #005b94;
  text-decoration: underline;
}
.qrcode {
  width: 120px;
  margin-top: 10px;
}
footer {
  background: #003f6b;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}
