* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #f4fdf3;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #27ae60;
  font-size: 1.8rem;
  font-weight: 700;
}

nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #27ae60;
}

.hero {
  background: #f4fdf3;
  padding: 80px 0;
  position: relative;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
}

.hero h2 {
  font-size: 2.8rem;
  color: #222;
}

.hero p {
  margin: 15px 0;
  color: #555;
  max-width: 500px;
}

.hero-img {
  flex: 1;
  text-align: center;
}

.hero-img img {
  max-width: 100%;
  border-radius: 10px;
}

.btn-primary {
  background: #27ae60;
  color: white;
  border: none;
  padding: 12px 28px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.ratings {
  position: absolute;
  bottom: 400px;
  right: 800px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 25px;
  font-size: 1rem;
  color: #333;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.ratings .stars span {
  color: #27ae60;
  font-size: 1.4rem;
}

.brand-logo {
  text-align: left;
  margin-left: 360px;
}

.services {
  padding: 70px 0;
  background: #ffffff;
  text-align: center;
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.3), rgba(0,0,0,0));
}

.services::after {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.3), rgba(0,0,0,0));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  justify-content: center;
}

.service-item {
  padding: 25px 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit {
  position: relative;
  padding: 70px 20px;
  background: #ffffff;
  text-align: left;
}

.benefit-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.benefit-img {
  flex: 1;
  text-align: left;
  order: 1;
}

.benefit-text {
  flex: 1;
  order: 2;
}

.benefit-img img {
  max-width: 100%;
  border-radius: 10px;
}

.benefit h3 {
  color: #000000;
  font-weight: 600;
}

.benefit h2 {
  margin: 10px 0 20px;
  font-size: 2rem;
}

.benefit-list {
  list-style: none;
  margin-bottom: 30px;
  color: #444;
}

.stats {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.stats div h4 {
  color: #27ae60;
  font-size: 1.5rem;
}

.fruit {
  position: relative;
  padding: 70px 20px;
  background: #ffffff;
  text-align: left;
}

.fruit-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.fruit-text {
  flex: 1;
  order: 1;
}

.fruit-img {
  flex: 1;
  text-align: right;
  order: 2;
}

.fruit-img img {
  max-width: 100%;
  border-radius: 10px;
}

.fruit h3 {
  color: #000000;
  font-weight: 600;
}

.fruit h2 {
  margin: 10px 0 20px;
  font-size: 2rem;
}

.fruit .stats {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.fruit .stats div h4 {
  color: #27ae60;
  font-size: 1.5rem;
}

.fruit .btn-promo {
  background: #27ae60;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 20px;
  transition: 0.3s;
}

.fruit .btn-promo:hover {
  background: #219150;
}

.features-gallery h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #222;
  margin-top: 40px;
}

.features-gallery h5 {
  text-align: center;
  font-size: 1rem;
  color: #222;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #27ae60;
  padding: 10px 20px;
  border-radius: 5px;
  color: #27ae60;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: 0.3s;
}

.btn-primary1 {
  background: transparent;
  color: #27ae60;
  padding: 12px 28px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #27ae60;
}

.products {
  padding: 80px 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.product-card {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s;
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.promo {
  position: relative;
  padding: 0;
  text-align: center;
}

.promo-content {
  position: relative;
}

.promo-img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.promo-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  max-width: 600px;
}

.promo-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.promo-text p {
  margin: 15px 0;
}

.promo-text .btn-primary {
  margin-bottom: 10px;
}

footer {
  color: #fff;
  padding: 50px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col1 {
  color: #27ae60;
  margin-bottom: 15px;
}

.footer-col h3,
.footer-col h4 {
  color: #000000;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #000000;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #27ae60;
}

.footer-col form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border: 1px solid #000000;
}

.footer-col input {
  flex: 1;
  padding: 10px;
  border-radius: 4px;
  border: none;
}

.footer-col button {
  background: #27ae60;
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #000000;
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .ratings {
    position: static;
    margin-top: 20px;
  }

  .brand-logo {
    margin-left: 0;
    text-align: center;
  }

  .benefit-content, .fruit-content {
    flex-direction: column;
    text-align: center;
  }

  .fruit-img, .benefit-img {
    text-align: center;
  }

  .promo-text h2 {
    font-size: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .services::before, .services::after {
    display: none;
  }

  .benefit h2, .fruit h2 {
    font-size: 1.5rem;
  }

  .promo-text h2 {
    font-size: 1.3rem;
  }
}
