    :root {
      --bg-main: #ffffff;
      --text-main: #141414;
      --text-muted: #444444;
      --accent: #0f7f9b;
      --border-soft: #dddddd;
      --section-bg: #f5f7fa;
      --link: #0f7f9b;
      --gold: #c79a2b;
    }

    * {
      box-sizing: border-box;
      scroll-behavior: smooth;
      margin: 0;
      padding: 0;
    }

    html, body {
      font-family: "Roboto", Arial, sans-serif;
      background: var(--bg-main);
      color: var(--text-main);
      font-size: 16px;
      line-height: 1.7;
    }

    a {
      color: var(--link);
      text-decoration: underline;
    }

    a:hover {
      text-decoration: none;
    }

    a:focus {
      outline: 3px solid #003568;
    }

    h1, h2, h3 {
      font-weight: 700;
      color: var(--text-main);
      margin-top: 0;
    }

    h1 {
      font-size: 28px;
      margin-bottom: 8px;
    }

    h2 {
      font-size: 22px;
      margin-top: 28px;
      margin-bottom: 8px;
      border-bottom: 1px solid #e0e0e0;
      padding-bottom: 4px;
    }

    h3 {
      font-size: 18px;
      margin-top: 18px;
      margin-bottom: 6px;
    }

    p {
      margin: 6px 0 10px;
      color: var(--text-muted);
    }

    ul, ol {
      margin: 6px 0 12px 20px;
      padding: 0;
    }

    li {
      margin-bottom: 4px;
    }

    /* HERO */
    .hero {
      background: radial-gradient(circle at top left, #fef3c7, #ffffff);
      border-bottom: 1px solid #ddd;
      padding: 22px 16px 18px;
    }

    .hero-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(199, 154, 43, 0.12);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-main);
      margin-bottom: 10px;
    }

    .hero-title {
      font-size: 30px;
      line-height: 1.15;
      margin-bottom: 8px;
      font-weight: 750;
      letter-spacing: -0.03em;
    }

    .hero-subtitle {
      font-size: 16px;
      max-width: 700px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .pill-label {
      display: inline-block;
      padding: 4px 10px;
      border-radius: 999px;
      background: #e9f4f7;
      color: var(--accent);
      font-size: 12px;
      font-weight: 500;
      margin-top: 4px;
    }

    /* MAIN WRAPPER */
    .page-wrapper {
      max-width: 1100px;
      margin: 0 auto;
      padding: 20px 16px 48px;
    }

    /* JUMP-TO NAV (user spec) */
    .jump-nav {
      border-bottom: 1px solid #ddd;
      background: #ffffff;
      position: sticky;
      top: 0;
      z-index: 50;
    }

    .jump-nav-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 10px 16px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }

    .jump-nav-label {
      font-size: 12px;
      font-weight: 700;
      margin-right: 4px;
    }

    .jump-nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .jump-nav a {
      font-size: 12px;       /* size 12 */
      font-weight: 700;      /* bold */
      color: #000000;        /* black */
      padding: 4px 10px;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid #d6d6d6;
      text-decoration: none;
      white-space: nowrap;
    }

    .jump-nav a:hover {
      background: #f0f0f0;
    }

    .active-link {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px var(--accent) inset;
    }

    /* SHARED BOXES */
    .section-box {
      border: 1px solid #cfcfcf;
      border-radius: 12px;
      padding: 16px 16px 14px;
      background: #fafafa;
      margin-top: 10px;
    }

    .tag-list {
      border-radius: 10px;
      border: 1px solid var(--border-soft);
      padding: 12px 14px;
      background: var(--section-bg);
      margin: 10px 0 4px;
    }

    .notice-box {
      border-radius: 10px;
      border: 1px solid #f2c94c;
      background: #fffaf0;
      padding: 12px 14px;
      margin: 12px 0 16px;
      font-size: 14px;
    }

    .footer-note {
      margin-top: 24px;
      font-size: 13px;
      color: #666666;
      border-top: 1px solid #bfbfbf;
      padding-top: 12px;
    }

    .back-top {
      display: block;
      margin-top: 12px;
      font-size: 13px;
      font-weight: 600;
      text-align: right;
    }

    .top-btn {
      position: fixed;
      right: 18px;
      bottom: 18px;
      background: #004a8f;
      color: #ffffff;
      padding: 10px 12px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 700;
      font-size: 12px;
    }

    .top-btn:hover {
      text-decoration: none;
      background: #003568;
    }

    /* COMMUNITY CARE LAYOUT ELEMENTS */
    .section-label {
      font-size: 13px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #374151;
      margin-bottom: 6px;
    }

    .section-title-smaller {
      font-size: 20px;
      margin-bottom: 4px;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .section-subtitle {
      font-size: 15px;
      color: #374151;
      max-width: 720px;
      margin-bottom: 14px;
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 8px;
    }

    .pill {
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 13px;
      border: 1px solid #d1d5db;
      color: var(--text-main);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      background: #f9fafb;
    }

    .layout-split {
      display: grid;
      grid-template-columns: 1.5fr 1.2fr;
      gap: 20px;
      align-items: flex-start;
    }

    .list-compact {
      font-size: 14px;
      color: var(--text-main);
    }

    .list-compact li {
      margin-bottom: 5px;
    }

    .disclaimer-block {
      border-radius: 16px;
      border: 1px dashed #d1d5db;
      padding: 16px 14px;
      background: #f9fafb;
      font-size: 14px;
      color: var(--text-main);
    }

    .cards-grid-2,
    .cards-grid-3 {
      display: grid;
      gap: 18px;
    }

    .cards-grid-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cards-grid-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .card {
      border-radius: 16px;
      border: 1px solid #d1d5db;
      background: #ffffff;
      padding: 16px 14px 14px;
    }

    .card.soft {
      background: #f3f4f6;
    }

    .card h3 {
      font-size: 17px;
      margin-bottom: 6px;
      font-weight: 650;
      color: var(--text-main);
    }

    .card .price {
      font-size: 14px;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .card .tagline {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .card ul {
      list-style: none;
      font-size: 14px;
      margin-bottom: 8px;
      color: var(--text-main);
      padding-left: 0;
    }

    .card ul li {
      margin-bottom: 5px;
    }

    .card-footer {
      margin-top: 10px;
      padding-top: 8px;
      border-top: 1px dashed #d1d5db;
      font-size: 13px;
      color: #6b7280;
    }

    .contact-panel {
      border-radius: 16px;
      border: 1px solid #d1d5db;
      padding: 16px 14px;
      background: #ffffff;
      font-size: 14px;
      color: var(--text-main);
    }

    .contact-panel h3 {
      font-size: 17px;
      margin-bottom: 8px;
      font-weight: 650;
    }

    .inline-label {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #6b7280;
    }

    .contact-panel small {
      display: block;
      margin-top: 8px;
      color: #6b7280;
      font-size: 13px;
    }

    @media (max-width: 900px) {
      html, body {
        font-size: 15px;
      }
      h1 {
        font-size: 26px;
      }
      h2 {
        font-size: 20px;
      }
      .layout-split,
      .cards-grid-2,
      .cards-grid-3 {
        grid-template-columns: 1fr;
      }
      .hero-title {
        font-size: 26px;
      }
      .hero-inner {
        padding-bottom: 4px;
      }
      .jump-nav-inner {
        padding-inline: 12px;
      }
    }
  html, body, #container
{
   width: 100%;
   height: 100%;
}
body
{
   background-color: #FFFFFF;
   color: #400000;
   font-family: Garamond;
   font-weight: normal;
   font-size: 13px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
a
{
   color: #400000;
   text-decoration: underline;
}
a:hover
{
   color: #400000;
   text-decoration: underline;
}
