/* General reset */
body {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0073e6, #00c6ff);
  background-image: url('https://imgs.search.brave.com/2DSzrMklhiCV7jipj8tCWv31Pt1JCzPg8xb8FmcrOtA/rs:fit:860:0:0:0/g:ce/aHR0cHM6Ly9jZG4u/dmVjdG9yc3RvY2su/Y29tL2kvNTAwcC85/NS8xOC9mYW1pbHkt/dXNpbmctZ2FkZ2V0/cy12ZWN0b3ItNDEy/NTk1MTguanBn');
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.hero h1 {
	background: linear-gradient(90deg, #0a192f, #434343);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  font-size: 2.5rem;
}
.hero p {
   color: #0a192f;
  font-size: 1.2rem;
  margin: 10px 0 20px;
}
.btn-primary {
  background: #ff9900;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.btn-primary:hover {
  background: #e68a00;
}

/* Section titles */
section h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  text-align: center;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 400px;
  margin: 20px auto;
  text-align: center;
  transition: transform 0.2s;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}
.btn-buy {
  display: inline-block;
  background: #ff9900;
  color: #fff;
  padding: 10px 20px;
  margin-top: 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.btn-buy:hover {
  background: #e68a00;
}

/* Review Articles */
.review {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  max-width: 700px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.review h3 {
  margin-top: 0;
}
.btn-read {
  display: inline-block;
  margin-top: 15px;
  color: #0073e6;
  font-weight: bold;
  text-decoration: none;
}
.btn-read:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .product-card, .review { margin: 15px; }
}
