/* Shared stylesheet for standalone legal/utility pages:
   privacy/index.html, delete-account/index.html */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #FAFAF7;
  color: #1a1a1a;
  line-height: 1.7;
}

nav {
  background: #1D4ED8;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
nav a { color: white; text-decoration: none; font-size: 20px; font-weight: 700; }

.container {
  max-width: 680px;
  margin: 48px auto;
  padding: 0 20px 80px;
}
.container--wide { max-width: 740px; }

h1 { font-size: 32px; font-weight: 700; margin-bottom: 6px; line-height: 1.25; }
.page-subtitle { color: #888; font-size: 14px; margin-bottom: 40px; }

h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1D4ED8;
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #DBEAFE;
}
h3 { font-size: 16px; font-weight: 600; margin: 20px 0 8px; }
p { color: #444; margin-bottom: 12px; font-size: 15px; }
ul { color: #444; padding-left: 22px; margin-bottom: 14px; font-size: 15px; }
ul li { margin-bottom: 6px; }
a { color: #1D4ED8; }

.highlight {
  background: #DBEAFE;
  border-left: 4px solid #1D4ED8;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 15px;
  color: #1E40AF;
}
.security-box {
  background: #F0FDF4;
  border: 1px solid #16A34A;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  color: #166534;
}
.warning {
  background: #FEF3C7;
  border: 1px solid #D97706;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #92400E;
}

.card {
  background: white;
  border-radius: 12px;
  border: 1px solid #E8E3D9;
  padding: 32px;
  margin-bottom: 24px;
}

/* Tables — wrap any <table class="table"> in a .table-wrap div so wide
   tables scroll horizontally on narrow screens instead of overflowing. */
.table-wrap { overflow-x: auto; margin: 12px 0 20px; }
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
  background: #F3F4F6;
  text-align: left;
  padding: 10px 14px;
  font-weight: 600;
  border-bottom: 1px solid #E8E3D9;
  color: #1a1a1a;
  white-space: nowrap;
}
.table td {
  padding: 10px 14px;
  border-bottom: 1px solid #E8E3D9;
  color: #444;
  vertical-align: top;
}

.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li {
  counter-increment: step;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.steps li::before {
  content: counter(step);
  background: #1D4ED8;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.email-btn {
  display: inline-block;
  color: white;
  background: #DC2626;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  margin-top: 8px;
}
.email-btn:hover { opacity: 0.9; }

footer {
  text-align: center;
  color: #888;
  font-size: 13px;
  padding: 32px 24px;
  border-top: 1px solid #E8E3D9;
  margin-top: 40px;
}
footer a { color: #1D4ED8; text-decoration: none; }

@media (max-width: 600px) {
  .container { margin: 32px auto; padding: 0 16px 56px; }
  h1 { font-size: 26px; }
  h2 { font-size: 18px; margin: 28px 0 10px; }
  .card { padding: 22px 18px; }
  .table { font-size: 13px; }
  .table th, .table td { padding: 8px 10px; }
}
