/* ================= BASE STYLES ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  background: #f5f7f6;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* ================= HERO ================= */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80')
              center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero-content {
  animation: fadeInUp 1.8s ease forwards;
  max-width: 700px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.button {
  display: inline-block;
  background: #43a047;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}
.button:hover { background: #388e3c; transform: translateY(-3px); }
.button.secondary { background: #2e7d32; }

/* ================= ABOUT ================= */
.about {
  padding: 70px 20px;
  text-align: center;
  background: #e8f5e9;
}
.about h2 { font-size: 2.2rem; margin-bottom: 15px; }
.about p { max-width: 700px; margin: 0 auto; }

/* ================= FACTS ================= */
.facts {
  padding: 70px 20px;
  text-align: center;
}
.facts h2 { font-size: 2.2rem; margin-bottom: 40px; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card h3 {
  color: #43a047;
  margin: 15px 0 10px;
}
.card p {
  padding: 0 20px 20px;
  font-size: 0.95rem;
}

/* ================= ACTIONS ================= */
.actions {
  background: linear-gradient(135deg, #a5d6a7 0%, #e8f5e9 100%);
  padding: 70px 20px;
  text-align: center;
}
.actions h2 { font-size: 2.2rem; margin-bottom: 25px; }
.actions ul {
  list-style: none;
  max-width: 500px;
  margin: 0 auto 30px;
}
.actions li {
  margin: 12px 0;
  padding: 10px;
  background: rgba(255,255,255,0.7);
  border-left: 6px solid #43a047;
  border-radius: 8px;
  font-size: 1.1rem;
}

/* ================= FOOTER ================= */
footer {
  background: #43a047;
  color: #fff;
  text-align: center;
  padding: 18px;
  font-size: 0.95rem;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .hero h1 { font-size: 2.5rem; }
  .hero p  { font-size: 1.1rem; }
}