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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #0d101d;
  line-height: 1.6;
  background: #fff;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  padding: 20px 0;
  border-bottom: 1px solid #e4e8e4;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  display: block;
}

.logo-icon {
  height: 32px;
  max-height: 32px;
  width: auto;
}

.logo-text {
  height: 20px;
  max-height: 20px;
  width: auto;
}

.hero-logo {
  width: 220px;
  height: auto;
  margin-bottom: 32px;
}

.footer-logo {
  height: 28px;
  width: auto;
}

nav a {
  margin-left: 28px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #6bb55b;
}

/* Hero */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0d101d;
}

.subtitle {
  font-size: 20px;
  color: #555;
  max-width: 520px;
  margin: 0 auto 36px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  background: #6bb55b;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s;
}

.btn:hover {
  background: #5a9e4c;
}

/* Features */
.features {
  padding: 60px 0 100px;
  background: #f8faf7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0d101d;
}

.feature p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* Policy pages */
.policy {
  padding: 60px 0 100px;
}

.policy h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0d101d;
}

.policy .updated {
  color: #888;
  font-size: 14px;
  margin-bottom: 40px;
}

.policy h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
  color: #0d101d;
}

.policy h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  color: #0d101d;
}

.policy p, .policy li {
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
}

.policy ul, .policy ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.policy li {
  margin-bottom: 6px;
}

.policy strong {
  color: #0d101d;
}

.policy a {
  color: #6bb55b;
}

.policy a:hover {
  color: #5a9e4c;
}

.policy table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}

.policy th, .policy td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid #ddd;
}

.policy th {
  background: #f0f5ee;
  font-weight: 600;
  color: #0d101d;
}

/* Footer */
footer {
  border-top: 1px solid #e4e8e4;
  padding: 40px 0;
  background: #f8faf7;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-weight: 700;
  font-size: 16px;
}

.footer-links a {
  margin-right: 20px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #6bb55b;
}

.footer-contact {
  color: #888;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .subtitle {
    font-size: 17px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  header .container {
    flex-direction: column;
    gap: 12px;
  }

  nav a {
    margin-left: 16px;
  }

  nav a:first-child {
    margin-left: 0;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
