/* ConnectMySoul legal pages – shared stylesheet */
:root {
  --brand-1: #00D68F;
  --brand-2: #00B8A9;
  --bg: #F7F9FB;
  --surface: #FFFFFF;
  --text: #1F2937;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: #fff;
  padding: 32px 24px 96px;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.2px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav a {
  color: #fff;
  margin-left: 18px;
  font-weight: 500;
  opacity: 0.9;
}

.nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

main.container {
  max-width: 880px;
  margin: -64px auto 60px;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 36px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 8px;
}

h1 {
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.last-updated {
  color: var(--text-muted);
  margin: 0 0 28px;
  font-size: 14px;
}

h2 {
  font-size: 20px;
  margin: 32px 0 10px;
  color: var(--text);
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

h2:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 24px;
}

h3 {
  font-size: 16px;
  margin: 20px 0 6px;
  color: var(--text);
}

p {
  margin: 0 0 12px;
}

ul {
  margin: 0 0 12px;
  padding-left: 22px;
}

ul li {
  margin-bottom: 6px;
}

.contact {
  margin-top: 32px;
  padding: 20px 22px;
  background: rgba(0, 214, 143, 0.08);
  border-radius: 12px;
  border-left: 4px solid var(--brand-1);
}

.contact strong {
  display: block;
  margin-bottom: 4px;
}

.site-footer {
  text-align: center;
  padding: 28px 16px 48px;
  color: var(--text-muted);
  font-size: 13px;
}

.site-footer a {
  margin: 0 10px;
}

@media (max-width: 600px) {
  .site-header {
    padding: 24px 16px 80px;
  }
  .card {
    padding: 28px 22px;
  }
  h1 {
    font-size: 26px;
  }
  .nav a {
    margin-left: 12px;
    font-size: 14px;
  }
  .brand {
    font-size: 17px;
  }
  main.container {
    margin-top: -56px;
  }
}
