@font-face {
  font-family: 'Chalkduster';
  src: url('fonts/Chalkduster.ttf') format('truetype');
}

body {
  font-family: 'Chalkduster', sans-serif;
  background-color: #f4fff4;
  color: #1b4d1b;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

section {
  padding: 60px 20px;
  text-align: center;
}

h2 {
  font-size: 32px;
  color: #2d572c;
  margin-bottom: 20px;
}

p {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 18px;
  color: #2d572c;
}

.hero-img {
  max-width: 20%;
  height: auto;
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Eco Goals */
.eco-goals {
  background-color: #e4fbe4;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.goal-box {
  background-color: #d0f0d0;
  border: 2px solid #a1cfa1;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.goal-box h3 {
  color: #145214;
  margin-bottom: 10px;
}

/* Partner Slider */
.slider-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  justify-content: center;
  scroll-snap-type: x mandatory;
}

.partner-box {
  flex: 0 0 auto;
  width: 200px;
  background-color: #e9ffe9;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  scroll-snap-align: start;
}

.partner-box img {
  max-width: 100%;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* Coming Soon */
.coming-soon {
  font-style: italic;
  color: #6c6c6c;
}

/* Footer */
.footer-section {
  background-color: #145214;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.footer-copy {
  margin-bottom: 15px;
  font-size: 16px;
  color: #fff;
}

.footer-green {
  font-size: 14px;
  color: #ccffcc;
}
