/* Shared legal document layout for wmsolutions.tech */
:root {
  --wm-bg: #050b18;
  --wm-surface: #0c1428;
  --wm-text: #e8eef8;
  --wm-muted: #8898b8;
  --wm-accent: #11c5e4;
  --wm-border: rgba(17, 197, 228, 0.15);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.65;
  color: var(--wm-text);
  background: linear-gradient(180deg, var(--wm-bg) 0%, var(--wm-surface) 100%);
  min-height: 100vh;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--wm-border);
}

.topbar a {
  color: var(--wm-accent);
  text-decoration: none;
  font-size: 0.9rem;
}

.topbar a:hover { text-decoration: underline; }

.logo {
  height: 28px;
  width: auto;
}

h1 {
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
}

.meta {
  color: var(--wm-muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: 1.08rem;
  margin-top: 1.6rem;
  color: var(--wm-accent);
}

p, li { font-size: 0.96rem; }

ul { padding-left: 1.2rem; }

a { color: var(--wm-accent); }

.notice {
  background: rgba(154, 103, 0, 0.12);
  border-left: 4px solid #d4a017;
  padding: 0.85rem 1rem;
  margin: 1rem 0;
  border-radius: 0 8px 8px 0;
}

.notice-danger {
  background: rgba(180, 35, 24, 0.12);
  border-left-color: #ef5350;
}

footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--wm-border);
  color: var(--wm-muted);
  font-size: 0.85rem;
}
