* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #000;
  color: #fff;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  position: fixed;
  width: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
}

header a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.hero h1 {
  font-size: 60px;
  font-weight: 600;
}

.hero p {
  font-size: 22px;
  margin-top: 10px;
  color: #aaa;
}

.section {
  padding: 100px 50px;
  text-align: center;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: white;
  color: black;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}

footer {
  padding: 40px;
  text-align: center;
  background: #111;
  color: #888;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
}.product-card {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.product-card img {
  width: 400px;
  border-radius: 15px;
}

.product-info {
  max-width: 600px;
}

.product-info ul {
  margin-top: 10px;
  padding-left: 20px;
}

.product-info li {
  margin-bottom: 8px;
}