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

body {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 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 #059669;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.3);
}

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

.logo {
  font-size: 2.8rem;
  font-weight: 700;
  color: #064e3b;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #059669 0%, #047857 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: #2d3748;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
  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, #059669 0%, #047857 100%);
  transition: width 0.3s;
  border-radius: 2px;
}

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

.nav-links a:hover {
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
}

main {
  margin-top: 80px;
}

.hero {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.9) 0%, rgba(6, 78, 59, 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: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="70" r="2.5" fill="rgba(255,255,255,0.06)"/></svg>');
  animation: float 35s infinite ease-in-out;
}

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

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

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.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, #059669 0%, #047857 100%);
  color: white;
  padding: 1.3rem 3rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(5, 150, 105, 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(5, 150, 105, 0.5);
  background: linear-gradient(135deg, #10b981 0%, #059669 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"><path d="M15,20 Q25,10 35,20 T55,20" stroke="rgba(5,150,105,0.05)" fill="none"/><path d="M65,40 Q75,30 85,40 T105,40" stroke="rgba(5,150,105,0.03)" fill="none"/></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: 700;
  background: linear-gradient(135deg, #064e3b 0%, #059669 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, #ffffff 0%, #fafafa 100%);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s;
  border: 2px solid #f0fdf4;
  box-shadow: 0 8px 25px rgba(5, 150, 105, 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(5, 150, 105, 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: #059669;
  box-shadow: 0 20px 50px rgba(5, 150, 105, 0.25);
}

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

.feature-card h3 {
  color: #064e3b;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

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

.stats {
  padding: 6rem 0;
  background: linear-gradient(135deg, #064e3b 0%, #047857 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"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="50" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="80" r="1.2" fill="rgba(255,255,255,0.06)"/></svg>');
  animation: float 40s 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: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

.content-page {
  padding: 4rem 0;
  background: white;
}

.content-page h1 {
  color: #064e3b;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.content-page h2 {
  color: #059669;
  margin: 2rem 0 1rem 0;
  font-size: 1.8rem;
  font-weight: 600;
}

.content-page h3 {
  color: #064e3b;
  margin: 1.5rem 0 0.5rem 0;
  font-size: 1.3rem;
  font-weight: 500;
}

.content-page p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #718096;
}

.contact-form {
  background: rgba(5, 150, 105, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #064e3b;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(5, 150, 105, 0.3);
  border-radius: 8px;
  background: white;
  color: #2d3748;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #059669;
  box-shadow: 0 0 10px rgba(5, 150, 105, 0.2);
}

footer {
  background: #1a202c;
  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: #6ee7b7;
  font-weight: 600;
  font-size: 1.3rem;
}

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

.footer-section a:hover {
  color: #6ee7b7;
}

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

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

.social-links a:hover {
  background: rgba(110, 231, 183, 0.4);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #059669;
  padding-top: 2rem;
  text-align: center;
  color: #cbd5e0;
  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;
  }
}
