:root {
  color: #071957;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
}

* { box-sizing: border-box; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: #fff;
  color: #26364c;
}

.max-w-4xl { max-width: 896px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.py-8 { padding-top: 32px; padding-bottom: 32px; }
.pt-6 { padding-top: 24px; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-sm { font-size: 14px; }
.text-base { font-size: 16px; }
.text-2xl { font-size: 24px; }
.text-3xl { font-size: 30px; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-primary { color: #071957; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.leading-relaxed { line-height: 1.75; }
.border { border: 1px solid #dbe7f8; }
.border-t { border-top: 1px solid #e5e7eb; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.bg-gray-50 { background: #f9fafb; }
.overflow-x-auto { overflow-x: auto; }
.min-w-full { min-width: 100%; }
.py-2 { padding-top: 8px; padding-bottom: 8px; }
.pl-6 { padding-left: 24px; }
.list-disc { list-style-type: disc; }

h1, h2, h3, p, ul { margin-top: 0; }
h1, h2, h3 { color: #071957; line-height: 1.35; }
h2 { margin-top: 40px; }
h3 { margin-top: 24px; }
strong { color: #182c5d; }
ul { padding-left: 24px; }
li + li { margin-top: 4px; }
table { border-collapse: collapse; }
th, td { vertical-align: top; }

.policy-card {
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid #dbe7f8;
  border-radius: 8px;
  background: #fbfdff;
}

.policy-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.policy-card-header h3 { margin: 0; }
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}
.badge-green { background: #059669; }
.badge-red { background: #dc2626; }

@media (min-width: 768px) {
  .md\\:py-12 { padding-top: 48px; padding-bottom: 48px; }
}

@media (max-width: 767px) {
  .text-3xl { font-size: 26px; }
  .text-2xl { font-size: 21px; }
  .text-base { font-size: 15px; }
  .policy-card { padding: 18px; }
}

@media print {
  body { color: #000; }
  .no-print { display: none !important; }
}
