body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #C0DCF9;
  color: #2F4F4F;
}

.sidebar {
  background-color: #4682B4;
  color: white;
  width: 200px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.nav a {
  color: white;
  display: block;
  margin: 0.5rem 0;
  text-decoration: none;
}

.nav a:hover {
  color: #F5F6F5;
}

main {
  margin-left: 220px;
  padding: 2rem;
}

.banner {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(rgba(70, 130, 180, 0.7), rgba(70, 130, 180, 0.7)), url('images/banner.jpg');
  background-size: cover;
  color: white;
  animation: fadeIn 1s;
}

.banner h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.btn {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}

.btn-accent {
  background-color: #4682B4;
  color: white;
}

.btn-secondary {
  background-color: #F5F6F5;
  color: #2F4F4F;
  border: 1px solid #2F4F4F;
}

.benefits, .products, .health-tips, .product-details, .reviews, .cart, .about, .contact, .policy {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeIn 1s;
}

.benefit-grid, .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.benefit-card, .product-card {
  background: #F5F6F5;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.benefit-card:hover, .product-card:hover {
  transform: scale(1.05);
}

.product-card img {
  max-width: 100%;
  border-radius: 8px;
}

.footer {
  background-color: #2F4F4F;
  color: white;
  text-align: center;
  padding: 1rem;
}

.footer a {
  color: #F5F6F5;
  margin: 0 0.5rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(47, 79, 79, 0.8);
  color: white;
  padding: 1rem;
  display: none;
}

.cookie-consent button {
  margin: 0 0.5rem;
}

form input, form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #F5F6F5;
  border-radius: 5px;
}

form textarea {
  height: 100px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: static;
  }
  main {
    margin-left: 0;
  }
  .banner h1 {
    font-size: 1.8rem;
  }
}