*,
*::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;
}

/* Nav */

.page-nav {
  background-color: #142e23;
  padding: 1rem 2rem;
}

.nav-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #f5f0e8;
  font-weight: 600;
  font-size: 1rem;
}

/* Content pages (privacy, support) */

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.page-content h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.page-content .meta {
  color: #6b7280;
  margin-bottom: 2rem;
}

.page-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.page-content h3 {
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.25rem;
}

.page-content p {
  margin-bottom: 0.75rem;
}

.page-content ul {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.page-content li {
  margin-bottom: 0.25rem;
}

.page-content a {
  color: #2d5a3a;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9375rem;
}

.page-content th,
.page-content td {
  border: 1px solid #d1d5db;
  padding: 0.5rem 0.75rem;
  text-align: left;
}

.page-content th {
  background: #f5f0e8;
  font-weight: 600;
}

.contact-box {
  background: #f5f0e8;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2.5rem;
}

.contact-box h2 {
  margin-top: 0;
}

/* 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;
  }
}
