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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f0f2f7;
  color: #1f2937;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── HEADER ─────────────────────────────────── */
.app-header {
  background: #184195;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.header-brand-text {
  display: flex;
  flex-direction: column;
}

.header-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.header-sub {
  font-size: 11px;
  color: #b8d4f0;
  margin-top: 1px;
}

.header-company {
  font-size: 13px;
  color: #b8d4f0;
}

/* ─── MAIN ───────────────────────────────────── */
.main-content {
  flex: 1;
  padding: 36px 24px;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

/* ─── PAGE HEADING ───────────────────────────── */
.page-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.page-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #184195;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-icon svg {
  width: 22px;
  height: 22px;
}

.page-title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}

/* ─── CARD ───────────────────────────────────── */
.card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07), 0 4px 16px rgba(0, 0, 0, 0.05);
  padding: 40px 48px;
}

/* ─── META ───────────────────────────────────── */
.last-updated {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

/* ─── SECTIONS ───────────────────────────────── */
.section {
  margin-bottom: 32px;
}

.section:last-child {
  margin-bottom: 0;
}

h2 {
  font-size: 16px;
  font-weight: 700;
  color: #184195;
  margin-bottom: 12px;
}

p {
  font-size: 14px;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 10px;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 10px 0 10px 20px;
  font-size: 14px;
  line-height: 1.75;
  color: #374151;
}

li {
  margin-bottom: 6px;
}

/* ─── CONTACT BOX ────────────────────────────── */
.contact-box {
  background: #f0f4ff;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  padding: 20px;
  margin-top: 16px;
}

.contact-box p {
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-box strong {
  color: #184195;
}

.contact-box a {
  color: #184195;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* ─── FOOTER ─────────────────────────────────── */
.app-footer {
  background: #184195;
  color: #b8d4f0;
  font-size: 12px;
  text-align: center;
  padding: 16px 24px;
  flex-shrink: 0;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 600px) {
  .app-header {
    padding: 0 16px;
  }

  .header-company {
    display: none;
  }

  .main-content {
    padding: 24px 16px;
  }

  .card {
    padding: 24px 20px;
  }

  .page-title {
    font-size: 20px;
  }
}
