    .public-health-page {
      padding-bottom: 48px;
    }

    .public-health-page .health-hero {
      position: relative;
      overflow: hidden;
      border-radius: 26px;
      border: 1px solid #cad9ef;
      background: #f8fbff !important;
      box-shadow: 0 18px 32px rgba(24, 63, 112, 0.12);
      padding: clamp(20px, 3.2vw, 34px);
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.95fr);
      gap: clamp(16px, 2.8vw, 28px);
      align-items: stretch;
    }

    .public-health-page .health-main {
      padding-right: 4px;
    }

    .public-health-page .health-eyebrow {
      margin: 0 0 6px;
      font-size: 0.82rem;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      font-weight: 700;
      color: #355f97;
    }

    .public-health-page .health-title {
      margin: 0;
      font-size: clamp(2rem, 3.8vw, 3rem);
      line-height: 1.14;
      color: #0f3f70;
      font-weight: 800;
    }

    .public-health-page .health-subtitle {
      margin: 14px 0 14px;
      color: #466182;
      font-size: 1.05rem;
      line-height: 1.72;
      white-space: pre-line;
    }

    .public-health-page .health-tip-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .public-health-page .health-tip-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(111, 146, 194, 0.24);
      color: #3f5a78;
      line-height: 1.58;
      box-shadow: 0 6px 14px rgba(34, 74, 123, 0.08);
    }

    .public-health-page .health-tip-list li::before {
      content: "•";
      color: #1f63c5;
      font-size: 1.1rem;
      line-height: 1.3;
      margin-top: -1px;
      font-weight: 700;
    }

    .public-health-page .health-cta-panel {
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.34);
      background: #2b5ea9;
      box-shadow: 0 14px 24px rgba(22, 57, 105, 0.22);
      padding: 18px;
      color: #f3f8ff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 100%;
    }

    .public-health-page .cta-label {
      margin: 0 0 6px;
      font-size: 0.78rem;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      opacity: 0.9;
      font-weight: 700;
    }

    .public-health-page .cta-title {
      margin: 0;
      font-size: clamp(1.18rem, 2.2vw, 1.5rem);
      line-height: 1.35;
      font-weight: 700;
      color: #ffffff;
    }

    .public-health-page .health-target {
      margin: 10px 0 12px;
      color: rgba(232, 241, 255, 0.93);
      font-size: 0.95rem;
      line-height: 1.45;
      word-break: break-word;
    }

    .public-health-page .btn-open-health-link {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      width: 100%;
      border: 1px solid rgba(255, 255, 255, 0.35);
      border-radius: 14px;
      padding: 13px 16px;
      font-weight: 800;
      font-size: 1.08rem;
      letter-spacing: 0.01em;
      color: #153a63;
      background: #ffc96e;
      box-shadow: 0 14px 20px rgba(8, 32, 67, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5);
      transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    }

    .public-health-page .btn-open-health-link:hover {
      color: #0f3358;
      transform: translateY(-2px);
      filter: saturate(1.06);
      background: #f3bd5e;
      box-shadow: 0 17px 24px rgba(8, 32, 67, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.56);
    }

    .public-health-page .btn-open-health-link .btn-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.6);
      font-size: 1.05rem;
      font-weight: 700;
    }

    .public-health-page .cta-note {
      margin: 10px 0 0;
      font-size: 0.82rem;
      color: rgba(236, 244, 255, 0.86);
    }

    .public-health-page .health-empty-link {
      display: inline-block;
      margin-top: 2px;
      border-radius: 999px;
      padding: 7px 11px;
      font-size: 0.84rem;
      font-weight: 700;
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.28);
      color: #fff;
    }

    @media (max-width: 991px) {
      .public-health-page .health-hero {
        grid-template-columns: 1fr;
      }

      .public-health-page .health-title {
        font-size: clamp(1.75rem, 7.2vw, 2.35rem);
      }
    }
  
