@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');

body {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  background: #fff;
  color: #222;
  text-align: center;
}

header {
  padding: 3rem 1rem 2rem;
}

header h1 {
  font-size: 2.5rem;
  color: #1b4332;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.1rem;
  color: #2d6a4f;
  margin-bottom: 2rem;
}

.bins {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.bins img {
  width: auto;
  height: auto;
}

section {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

section h2 {
  font-size: 2rem;
  color: #1b4332;
  margin-bottom: 1rem;
}

section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.download {
  margin-top: 2.5rem;
}

footer {
  background: #f5f5f5;
  padding: 1rem;
  color: #666;
  font-size: 0.9rem;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }
  .bins img {
    width: 80px;
  }
}
