/* Shared base styles across all public/*.html templates (ASG-5725). */
* { box-sizing: border-box; }
body {
  font-family: Georgia, serif;
  color: #2c2c2c;
  line-height: 1.6;
  background: #fafaf8;
}
nav { margin-bottom: 24px; font-size: 0.9rem; }
nav a { color: #2c5f2e; text-decoration: none; }
nav a:hover { text-decoration: underline; }

.btn, .cta-btn, button[type=submit] {
  display: inline-block;
  background: #2c5f2e;
  color: #fff;
  border: none;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
}
.btn:hover, .cta-btn:hover, button[type=submit]:hover { background: #1e4220; }
.btn:disabled, button[type=submit]:disabled { background: #999; cursor: not-allowed; }
