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

body {
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #2e7d32;
  background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
  min-height: 100vh;
}

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

header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid #8bc34a;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(139, 195, 74, 0.3);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2.5rem;
  font-weight: 800;
  color: #388e3c;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #8bc34a 0%, #4caf50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #2e7d32;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 600;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.nav-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, #8bc34a 0%, #4caf50 100%);
  transition: width 0.3s;
  border-radius: 2px;
}

.nav-links a:hover::before {
  width: 80%;
}

.nav-links a:hover {
  color: #388e3c;
  background: rgba(139, 195, 74, 0.1);
}

main {
  margin-top: 80px;
}

.hero {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(139, 195, 74, 0.9) 0%, rgba(56, 142, 60, 0.9) 100%),
    url("/placeholder.svg?height=600&width=1200") center / cover;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  animation: float 20s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #e8f5e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #8bc34a 0%, #4caf50 100%);
  color: white;
  padding: 1.3rem 3rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(139, 195, 74, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 195, 74, 0.5);
  background: linear-gradient(135deg, #9ccc65 0%, #66bb6a 100%);
}

.features {
  padding: 6rem 0;
  background: white;
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(139,195,74,0.05)"/><circle cx="90" cy="20" r="1.5" fill="rgba(139,195,74,0.03)"/><circle cx="20" cy="90" r="0.8" fill="rgba(139,195,74,0.04)"/><circle cx="80" cy="80" r="1.2" fill="rgba(139,195,74,0.06)"/></svg>');
  opacity: 0.3;
}

.features .container {
  position: relative;
  z-index: 1;
}

.features h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #388e3c 0%, #8bc34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.feature-card {
  background: linear-gradient(135deg, #f8fff8 0%, #ffffff 100%);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s;
  border: 2px solid #e8f5e8;
  box-shadow: 0 8px 25px rgba(139, 195, 74, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 195, 74, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: #8bc34a;
  box-shadow: 0 20px 50px rgba(139, 195, 74, 0.25);
}

.feature-icon {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  color: #2e7d32;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: #4a4a4a;
  font-size: 1.1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.stats {
  padding: 6rem 0;
  background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q30,10 40,20 T60,20" stroke="rgba(255,255,255,0.1)" fill="none"/><path d="M10,50 Q20,40 30,50 T50,50" stroke="rgba(255,255,255,0.08)" fill="none"/></svg>');
  animation: float 25s infinite linear;
}

.stats .container {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.2);
}

.stat-item h3 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-item p {
  font-size: 1.3rem;
  opacity: 0.9;
  font-weight: 600;
}

footer {
  background: #1b5e20;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: #81c784;
  font-weight: 700;
  font-size: 1.3rem;
}

.footer-section a {
  color: #c8e6c9;
  text-decoration: none;
  display: block;
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #81c784;
}

.footer-section p {
  color: #c8e6c9;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.social-links a {
  display: inline-block;
  margin-right: 1rem;
  padding: 1rem;
  background: rgba(129, 199, 132, 0.2);
  border-radius: 50%;
  transition: all 0.3s;
}

.social-links a:hover {
  background: rgba(129, 199, 132, 0.4);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #4caf50;
  padding-top: 2rem;
  text-align: center;
  color: #a5d6a7;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}
