/* Spoločný vzhľad pre samostatné stránky (Ochrana súkromia, Napíšte nám, Ďakujeme) */
:root {
  --bg: #fffbeb;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --accent: #b45309;
  --border: #fcd34d;
  --button: #2563eb;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}
main {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}
.back {
  display: inline-block;
  margin-bottom: 16px;
  font-weight: 800;
  color: var(--button);
  text-decoration: none;
}
.card {
  background: var(--card);
  border: 3px solid var(--border);
  border-radius: 24px;
  padding: 24px;
}
h1 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 8px;
}
h2 {
  font-size: 1.15rem;
  margin: 28px 0 6px;
  color: var(--accent);
}
.lead {
  background: #ecfdf5;
  border: 2px solid #6ee7b7;
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 700;
}
.muted {
  color: var(--muted);
  font-size: 0.9rem;
}
label {
  display: block;
  font-weight: 800;
  margin: 16px 0 6px;
}
input,
select,
textarea {
  width: 100%;
  font: inherit;
  padding: 10px 12px;
  border: 2px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
}
textarea {
  min-height: 140px;
  resize: vertical;
}
button,
.button {
  display: inline-block;
  margin-top: 20px;
  background: var(--button);
  color: #fff;
  font: inherit;
  font-weight: 900;
  border: 0;
  border-radius: 14px;
  padding: 12px 22px;
  cursor: pointer;
  text-decoration: none;
}
.hidden {
  display: none;
}
.warning {
  background: #fef3c7;
  border: 2px solid #f59e0b;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
}
