:root {
  --green: #1D9E75;
  --green-dark: #0F6E56;
  --green-light: #E1F5EE;
  --amber: #EF9F27;
  --amber-light: #FAEEDA;
  --amber-dark: #854F0B;
  --text: #2C2C2A;
  --text-secondary: #5F5E5A;
  --bg: #FAF8F4;
  --white: #FFFFFF;
  --border: rgba(0,0,0,0.08);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px;
}

.header {
  background: var(--green);
  color: white;
  padding: 24px 20px;
  text-align: center;
  position: relative;
}

.header h1 {
  font-size: 24px;
  margin-bottom: 4px;
}

.header p {
  opacity: 0.9;
  font-size: 14px;
}

.back-link {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
}

.back-link:hover { opacity: 1; }

.content {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  margin: 20px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.content h2 {
  color: var(--green-dark);
  font-size: 20px;
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-light);
}

.content h2:first-child { margin-top: 0; }

.content h3 {
  color: var(--text);
  font-size: 16px;
  margin: 20px 0 8px;
}

.content p {
  margin-bottom: 14px;
  color: var(--text-secondary);
}

.content strong { color: var(--text); }

.content ul, .content ol {
  margin: 12px 0 16px 24px;
  color: var(--text-secondary);
}

.content li { margin-bottom: 8px; }

.highlight-box {
  background: var(--amber-light);
  border-left: 4px solid var(--amber);
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

.highlight-box.green {
  background: var(--green-light);
  border-left-color: var(--green);
}

.highlight-box p { color: var(--amber-dark); margin-bottom: 0; }

.highlight-box.green p { color: var(--green-dark); }

.manifesto {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  padding: 32px 28px;
  border-radius: 16px;
  margin: 20px 0;
  text-align: center;
}

.manifesto h2 {
  color: white;
  border: none;
  font-size: 22px;
  margin-bottom: 16px;
}

.manifesto p {
  color: rgba(255,255,255,0.95);
  font-size: 15px;
  line-height: 1.8;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.stat-card {
  background: var(--green-light);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.stat-card .value {
  font-size: 24px;
  font-weight: 700;
  color: var(--green-dark);
}

.stat-card .label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 32px 20px;
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 20px;
  margin-bottom: 16px;
}

.footer-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  padding: 4px 0;
}

.footer-links a:hover { color: white; }

.footer .copyright {
  opacity: 0.6;
  font-size: 12px;
}

.contact-card {
  background: var(--green-light);
  border-radius: 12px;
  padding: 20px;
  margin: 16px 0;
}

.contact-card a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover { text-decoration: underline; }

.update-date {
  background: #f0efea;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  margin: 16px 0;
}

@media (max-width: 480px) {
  .content { padding: 20px 18px; }
  .header h1 { font-size: 20px; }
  .stat-grid { grid-template-columns: 1fr; }
}
