body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
  scroll-behavior: smooth;
}

header {
  background: linear-gradient(to right, #7bc043, #39b54a);
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  animation: fadeInDown 1s ease-out;
}

header h1 {
  margin: 0;
  font-size: 2.8rem;
}

header p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

nav {
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #39b54a;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #7bc043;
}

.section {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: auto;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section h2 {
  color: #39b54a;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta {
  background: #39b54a;
  color: white;
  text-align: center;
  padding: 2rem;
  font-size: 1.3rem;
  font-weight: bold;
  animation: pulse 2s infinite;
}

.cta a {
  display: inline-block;
  margin-top: 1rem;
  background: white;
  color: #39b54a;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s;
}

.cta a:hover {
  transform: scale(1.05);
}

footer {
  text-align: center;
  background: #eee;
  padding: 1rem;
  font-size: 0.9rem;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}
