* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('assets/hero.jpg');
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 20px;
}

.benefits-grid,
.recipes-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
}

.card,
.recipe-card,
.faq-item {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}

.recipe-card {
  text-decoration: none;
  color: inherit;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 42px;
}

.long-content {
  margin-top: 80px;
}

.long-content h3 {
  margin-top: 50px;
}

footer {
  background: #12311a;
  color: white;
  padding: 60px 0;
  margin-top: 80px;
}

footer a {
  display: block;
  color: white;
  margin-bottom: 10px;
  text-decoration: none;
}

@media(max-width:768px){
  .hero h1 {
    font-size: 42px;
  }

  nav {
    display: none;
  }
}