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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #2d5a3a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Hero */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #142e23;
  padding: 2rem;
}

.hero-content {
  text-align: center;
  max-width: 600px;
}

.logo {
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: #f5f0e8;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: #c8a87c;
  font-size: 1.125rem;
}

/* Features */

.features {
  background-color: #f5f0e8;
  padding: 5rem 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  border-top: 3px solid #8fbc6a;
}

.feature-card h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2d5a3a;
}

.feature-card p {
  font-size: 0.9375rem;
  color: #3d6b4a;
  line-height: 1.6;
}

/* Footer */

.footer {
  background-color: #142e23;
  padding: 2rem;
  text-align: center;
}

.footer-icon {
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.footer p {
  color: #f5f0e8;
  font-size: 0.875rem;
  opacity: 0.6;
}

/* Responsive */

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

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

@media (max-width: 480px) {
  .features {
    padding: 3rem 1rem;
  }

  .logo {
    width: 120px;
    height: auto;
  }
}
