:root {
  --bg: #f6f7fb;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --line: #e5e7eb;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #dbeafe 0, #f6f7fb 38%);
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 14px; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.ewello-topnav {
  background: #0f172a;
  color: #fff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.ewello-topnav .nav-inner {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.ewello-topnav a { color: #c7d2fe; }

.hero {
  margin: 16px 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
}
.hero h1 { margin: 0 0 10px 0; line-height: 1.15; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.hero p { margin: 0; color: #dbeafe; }

.panel {
  margin: 12px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.breadcrumbs { color: #4b5563; font-size: 0.92rem; margin: 14px 0 0; }
.grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card { border: 1px solid var(--line); border-radius: 12px; padding: 14px; background: #fff; }
.card h3 { margin: 0 0 6px 0; font-size: 1rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.93rem; }

.table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.table th, .table td { border-bottom: 1px solid var(--line); text-align: left; padding: 10px; vertical-align: top; }
.table th { background: #eff6ff; }

.notice {
  border-left: 4px solid #2563eb;
  background: #eff6ff;
  color: #1e3a8a;
  padding: 10px 12px;
  border-radius: 8px;
  margin: 10px 0;
  font-size: 0.92rem;
}
.notice.health {
  border-left-color: #dc2626;
  background: #fef2f2;
  color: #7f1d1d;
}

.cta-wrap { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); margin-top: 12px; }
.btn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 11px 12px;
  font-weight: 700;
  border: 1px solid transparent;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); text-decoration: none; }
.btn-secondary { background: #fff; border-color: var(--line); color: #111827; }
.btn-secondary:hover { background: #f9fafb; text-decoration: none; }

footer {
  margin: 24px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: #4b5563;
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  .table { display: block; overflow-x: auto; }
}
