* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f7f7f8;
  color: #1a1a2e;
  line-height: 1.5;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #BC000A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #BC000A;
}

h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
}

.updated {
  font-size: 13px;
  color: #6b6b76;
  margin-bottom: 32px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.highlight {
  border-left: 4px solid #38A169;
  background: rgba(188, 0, 10, 0.04);
}

.highlight h2 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.highlight ul {
  list-style: none;
}

.highlight li {
  font-size: 14px;
  padding: 4px 0;
  padding-left: 24px;
  position: relative;
}

.highlight li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #38A169;
  font-weight: 700;
}

section {
  padding: 18px 0;
  border-bottom: 1px solid #ececef;
}

section:last-of-type {
  border-bottom: none;
}

section h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

section p {
  font-size: 14px;
  color: #45454f;
}

section a {
  color: #BC000A;
}

.faq dt {
  font-size: 15px;
  font-weight: 700;
  margin-top: 16px;
}

.faq dd {
  font-size: 14px;
  color: #45454f;
  margin-top: 4px;
}

.contact-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 8px;
}

.contact-box a {
  color: #BC000A;
  font-weight: 600;
  text-decoration: none;
}

.disclaimer {
  font-size: 13px;
  color: #6b6b76;
  margin-top: 12px;
  font-style: italic;
}

footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ececef;
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #6b6b76;
}

footer a {
  color: #6b6b76;
  text-decoration: underline;
}

footer a:hover {
  color: #BC000A;
}
