:root {
  color-scheme: light;
  --bg: #f4f7fc;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #5b6475;
  --border: rgba(99, 124, 173, 0.18);
  --accent: #8c9dc5;
  --accent-deep: #566f9e;
  --shadow: 0 24px 60px rgba(49, 67, 107, 0.12);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: radial-gradient(circle at top, rgba(140, 157, 197, 0.18), transparent 30%), var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}
a { color: var(--accent-deep); }
a:hover { color: #3d4f73; }
.site-shell {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  font-weight: 800;
  font-size: 1.2rem;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}
.brand b { color: var(--accent); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.85);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}
.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 40px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(140, 157, 197, 0.12);
  color: var(--accent-deep);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
header h1 {
  margin: 16px 0 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}
.updated {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}
.lead {
  margin: 22px 0 0;
  font-size: 1.08rem;
  color: var(--text);
}
.section-intro {
  margin: 0 0 20px;
  color: var(--muted);
}
.faq-list {
  display: grid;
  gap: 16px;
}
.faq-item {
  padding: 18px 18px 4px;
  border: 1px solid rgba(99, 124, 173, 0.14);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(140, 157, 197, 0.08), rgba(255, 255, 255, 0));
}
.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.35;
}
.faq-item p:last-child,
.faq-item ul:last-child {
  margin-bottom: 0;
}
.contact-card {
  margin-top: 32px;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(140, 157, 197, 0.16), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(99, 124, 173, 0.14);
}
.contact-card h2 {
  margin-bottom: 10px;
}
.contact-card p:last-child {
  margin-bottom: 0;
}
.feedback-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field {
  display: grid;
  gap: 8px;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  font-weight: 700;
  color: var(--text);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(244, 247, 252, 0.72);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.field textarea {
  min-height: 170px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(86, 111, 158, 0.58);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(140, 157, 197, 0.16);
}
.help-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.submit-button {
  border: 0;
  border-radius: 999px;
  background: var(--accent-deep);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 13px 20px;
  box-shadow: 0 16px 34px rgba(86, 111, 158, 0.24);
}
.submit-button:hover {
  background: #455b86;
}
.direct-email {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
section + section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(99, 124, 173, 0.14);
}
h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}
p {
  margin: 0 0 14px;
  color: var(--text);
}
ul {
  margin: 0 0 14px 20px;
  padding: 0;
}
li + li { margin-top: 8px; }
.footer-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}
@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .back-link { width: 100%; justify-content: center; }
  .form-grid { grid-template-columns: 1fr; }
}
