body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  max-width: 760px;
  margin: 0 auto;
  padding: 2em 1.5em;
  color: #2a2a2a;
  line-height: 1.65;
  background: #fff;
}

header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75em 1.5em;
  border-bottom: 2px solid #2d6a4f;
  margin-bottom: 1.5em;
  padding-bottom: 0.8em;
}

header .brand {
  font-size: 1.4em;
  font-weight: 600;
  text-decoration: none;
  color: #2a2a2a;
}

header nav a {
  color: #555;
  text-decoration: none;
  margin-right: 1.5em;
  font-size: 0.95em;
}

header nav a:last-child { margin-right: 0; }
header nav a:hover { color: #2d6a4f; }

h1 { font-size: 1.75em; margin: 0.5em 0 0.2em; }
h2 { font-size: 1.2em; margin-top: 1.8em; }
.lead { color: #555; font-size: 1.05em; }
.meta { color: #888; font-size: 0.9em; margin-bottom: 1.5em; }

form .field { margin-bottom: 1rem; }

form input[type="text"],
form input[type="tel"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}

.consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.25rem 0 0.5rem;
  cursor: pointer;
}

.consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.consent .label { font-weight: 600; }
.consent .required { color: #c00; font-size: 0.85em; font-weight: 500; margin-left: 0.35em; }

.fine {
  font-size: 0.9em;
  color: #555;
  margin: 0 0 1rem 2rem;
}

.fine a { color: #2d6a4f; }

.submit-btn {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.85rem 1.5rem;
  background: #2d6a4f;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.submit-btn:hover { background: #1b4332; }
.submit-btn:disabled { opacity: 0.7; cursor: wait; }

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  display: none;
}

.form-status.error {
  display: block;
  background: #fdecea;
  color: #b71c1c;
}

.form-status.success {
  display: block;
  background: #e8f5e9;
  color: #1b5e20;
}

footer {
  border-top: 1px solid #eee;
  margin-top: 3em;
  padding-top: 1em;
  font-size: 0.85em;
  color: #888;
}

footer a { color: #555; margin-right: 1em; }
a { color: #2d6a4f; }

@media (max-width: 600px) {
  header { flex-direction: column; align-items: flex-start; }
  header nav a { margin: 0 1em 0 0; }
  .fine { margin-left: 0; }
}
