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

:root {
  --primary: #1A6B3C;
  --primary-dark: #14532D;
  --primary-light: #16A34A;
  --accent: #DC2626;
  --success: #1A6B3C;
  --error: #B91C1C;
  --text: #111827;
  --text-secondary: #6B7280;
  --border: #E5E7EB;
  --bg: #F9FAFB;
  --surface: #FFFFFF;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: white;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

header .logo {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

header a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  margin-left: auto;
}

header a:hover { color: white; }

.container {
  max-width: 740px;
  margin: 40px auto;
  padding: 0 24px 60px;
}

.page-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.page-date {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.card {
  background: var(--surface);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

h2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

h2::before {
  content: '';
  width: 4px;
  height: 16px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}

p { font-size: 14px; color: #374151; margin-bottom: 10px; }
p:last-child { margin-bottom: 0; }

ul { padding-left: 20px; margin-bottom: 10px; }
li { font-size: 14px; color: #374151; margin-bottom: 6px; }

.contact-box {
  background: rgba(26,107,60,0.05);
  border: 1px solid rgba(26,107,60,0.15);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 8px;
  font-size: 14px;
}

.contact-box a { color: var(--accent); }

footer {
  text-align: center;
  padding: 24px;
  font-size: 12px;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
}

/* Suppression form */
.form-group { margin-bottom: 18px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
input[type="email"], input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
input:focus { border-color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  border: none;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
  font-family: inherit;
}
.btn:hover { background: var(--primary-light); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

.alert {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-top: 16px;
  display: none;
}
.alert.success { background: rgba(22,163,74,0.08); color: var(--success); border: 1px solid rgba(22,163,74,0.2); }
.alert.error { background: rgba(220,38,38,0.08); color: var(--error); border: 1px solid rgba(220,38,38,0.2); }

.warning-box {
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.15);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #991B1B;
}

.nav-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.nav-link:hover { background: rgba(26,107,60,0.05); }
