* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #FF6B2C;
  --navy: #131829;
  --bg: #FAFBFC;
  --surface: #FFFFFF;
  --text: #1A1D2E;
  --text-secondary: #4A4F6A;
  --text-muted: #8B90A5;
  --border: #E8EAF0;
  --accent-bg: #F5F6FA;
}
body {
  font-family: 'Cairo', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

/* ── Header ── */
.header {
  background: var(--navy);
  color: #fff;
  padding: 40px 20px 36px;
  text-align: center;
}
.header img {
  width: 44px; height: 44px;
  border-radius: 11px;
  margin-bottom: 14px;
  background: #fff;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.15);
}
.header h1 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.2px;
}
.header .subtitle {
  font-size: 12px;
  opacity: 0.45;
  margin-top: 2px;
  font-weight: 400;
}
.lang-toggle {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  margin-top: 12px;
  cursor: pointer;
  transition: all 0.15s;
}
.lang-toggle:hover {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}

/* ── Content ── */
.content {
  max-width: 640px;
  margin: 0 auto;
  padding: 28px 20px 60px;
}
.back-link {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  transition: color 0.15s;
}
.back-link:hover { color: var(--primary); }

/* ── Sections ── */
.section {
  margin-bottom: 28px;
}
.section h2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.section p {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.section ul {
  padding-right: 18px;
  margin-bottom: 8px;
}
.section li {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.section a {
  color: var(--primary);
  text-decoration: none;
}
.section a:hover { text-decoration: underline; }

/* ── Steps (for delete-data page) ── */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}
.steps li {
  counter-increment: step;
  padding: 10px 14px 10px 0;
  font-size: 13.5px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  background: var(--accent-bg);
  color: var(--text);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

/* ── Action button ── */
.action-btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s;
}
.action-btn:hover { opacity: 0.85; }

/* ── Highlight box ── */
.highlight-box {
  background: var(--accent-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 12px 0;
}
.highlight-box p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

/* ── FAQ ── */
.faq-item { margin-bottom: 16px; }
.faq-item .q {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.faq-item .a {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ── Footer ── */
.meta {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.footer {
  text-align: center;
  padding: 20px;
  font-size: 11px;
  color: var(--text-muted);
}
.footer a {
  color: var(--text-muted);
  text-decoration: none;
}
.footer a:hover { color: var(--primary); }
