* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Roboto', sans-serif;
  background: #eef1f8;
  color: #1c2b45;
  min-height: 100vh;
}

/* ── HEADER ─────────────────────────────────── */
.header {
  background: #fff;
  border-bottom: 1px solid #e2e8f5;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}
.header img { height: 26px; }

.lang-switcher {
  display: flex;
  gap: 4px;
}
.lang-btn {
  padding: 4px 9px;
  border-radius: 6px;
  border: 1px solid #e2e8f5;
  background: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  color: #8fa3bf;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.lang-btn:hover  { border-color: #cc0000; color: #cc0000; }
.lang-btn.active { background: #cc0000; border-color: #cc0000; color: #fff; }

/* ── CONTENT ─────────────────────────────────── */
.page {
  max-width: 540px;
  margin: 0 auto;
  padding: 24px 16px 16px;
}

.page-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1c2b45;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

/* ── CARDS ───────────────────────────────────── */
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 6px rgba(28,43,69,.07);
  margin-bottom: 14px;
  overflow: hidden;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px 14px;
  border-bottom: 1px solid #f0f3f9;
}
.card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.card-icon svg { width: 18px; height: 18px; }
.icon-card   { background: #e8f0fe; color: #3b82f6; }
.icon-badge  { background: #ede9fe; color: #7c3aed; }
.icon-tip    { background: #fff7e6; color: #f59e0b; }

.card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1c2b45;
}

.card-body {
  padding: 14px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-body p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #3d5068;
}

.card-body ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-body ul li {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #3d5068;
  padding-left: 16px;
  position: relative;
}

.card-body ul li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: #cc0000;
  font-weight: 700;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f3f9;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.78rem;
  color: #5a6a7e;
  line-height: 1.5;
}
.info-pill svg { width: 14px; height: 14px; flex-shrink: 0; color: #94a3bc; }

  