/* styles.css */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #fff;
  background-color: #000;
}


a {
  text-decoration: none;
}

.hero {
  background: url('promotion.jpg') no-repeat center/cover;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}


.hero p {
  font-size: 1.2rem;
  color: #ccc;
}

.hero-buttons {
  margin-top: 20px;
}

.btn {
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  margin: 0 10px;
  display: inline-block;
}

.btn.green {
  background-color: #00c46d;
  color: white;
}

.btn.outline {
  border: 2px solid #fff;
  color: white;
}

.products {
  background-color: #fff;
  color: #000;
  padding: 60px 20px;
  text-align: center;
}

.product-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.product-card {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 12px;
  width: 220px;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.why-choose {
  padding: 60px 20px;
  background-color: #000;
  text-align: center;
}

.features {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.features div {
  text-align: center;
}

.features img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.testimonial {
  padding: 60px 20px;
  background-color: #111;
  text-align: center;
}

blockquote {
  font-size: 1.5rem;
  font-style: italic;
  margin: 0 auto 20px;
  max-width: 600px;
}

.reviewer {
  margin-bottom: 20px;
  color: #aaa;
}

.testimonial-images {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.testimonial-images img {
  width: 150px;
  border-radius: 10px;
}

.subscribe {
  background-color: #222;
  padding: 40px 20px;
  text-align: center;
}

.subscribe form {
  margin-top: 20px;
}

.subscribe input {
  padding: 10px;
  width: 300px;
  max-width: 80%;
  border-radius: 5px;
  border: none;
  margin-right: 10px;
}
