/* Bearking Policy Site — English */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1565C0;
  --blue-dark: #0D47A1;
  --blue-light: #2680FF;
  --green: #2E7D32;
  --red: #C62828;
  --bg: #EFF3F8;
  --card: #ffffff;
  --text: #1a1a2e;
  --muted: #64748b;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(13, 71, 161, 0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
}

.container { max-width: 820px; margin: 0 auto; padding: 0 20px; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.hero {
  background: linear-gradient(160deg, var(--blue-light) 0%, var(--blue-dark) 100%);
  color: #fff;
  padding: 48px 20px 40px;
  text-align: center;
}

.hero-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }

.logo-img {
  width: 96px; height: 96px;
  border-radius: 22px;
  object-fit: cover;
  background: #fff;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  margin-bottom: 8px;
}

.hero h1 { font-size: 2.4rem; font-weight: 800; letter-spacing: 1px; }
.tagline { font-size: 1rem; opacity: 0.85; margin-bottom: 12px; }

.free-banner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.92rem;
  backdrop-filter: blur(4px);
  max-width: 520px;
}

.free-icon {
  background: var(--green);
  color: #fff;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: bold;
  flex-shrink: 0;
}

.store-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

.store-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 10px 18px;
  color: #fff;
  font-size: 0.88rem;
  min-width: 200px;
}

.store-badge svg { flex-shrink: 0; opacity: 0.95; }
.store-badge strong { display: block; font-size: 0.95rem; }
.store-badge span { opacity: 0.8; font-size: 0.78rem; }

.nav {
  background: var(--card);
  border-bottom: 1px solid #e2e8f0;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex; flex-wrap: wrap; gap: 4px;
  padding: 10px 20px;
  justify-content: center;
}

.nav a {
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  transition: background 0.2s;
}

.nav a:hover { background: #e3f2fd; text-decoration: none; }

main { padding: 32px 0 48px; display: flex; flex-direction: column; gap: 24px; }

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow);
}

.card h2 {
  font-size: 1.45rem;
  color: var(--blue-dark);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e3f2fd;
}

.card h3 { font-size: 1.05rem; color: var(--blue); margin: 20px 0 8px; }
.card h4 { font-size: 0.98rem; margin-bottom: 6px; color: var(--text); }

.card p { margin-bottom: 10px; color: #334155; }
.card ul, .card ol { margin: 8px 0 12px 0; padding-left: 22px; color: #334155; }
.card li { margin-bottom: 6px; }

.updated { font-size: 0.85rem; color: var(--muted); margin-bottom: 16px !important; }

.highlight-card {
  border: 2px solid var(--blue);
  background: linear-gradient(135deg, #fff 0%, #e3f2fd 100%);
}

.check-list { list-style: none; padding-left: 0 !important; }
.check-list li::before { content: '✓ '; color: var(--green); font-weight: bold; }

.danger-card { border-left: 4px solid var(--red); }

.steps { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }

.step {
  display: flex; gap: 16px; align-items: flex-start;
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid #e2e8f0;
}

.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
}

.info-box {
  margin-top: 20px;
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 12px;
  padding: 16px 18px;
}

.note { font-size: 0.88rem; color: var(--muted); margin-top: 8px !important; }

.contact-list { list-style: none; padding-left: 0 !important; font-size: 1.05rem; }
.contact-list li { margin-bottom: 10px; }

.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 28px 20px;
}

.footer .small { font-size: 0.8rem; opacity: 0.6; margin-top: 6px; }

@media (max-width: 600px) {
  .hero h1 { font-size: 1.8rem; }
  .card { padding: 20px 18px 24px; }
  .nav a { font-size: 0.8rem; padding: 6px 10px; }
  .store-badge { min-width: 100%; justify-content: center; }
}
