/* Start custom CSS *//* 
UHS Microcredentials page CSS
Use with Elementor Full Width layout.
Paste this into Page Settings > Advanced > Custom CSS.
The HTML widget content must be wrapped in: <div class="uhs-micro-page"> ... </div>
*/

.elementor-widget-html,
.elementor-widget-html > .elementor-widget-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.elementor-widget-html {
  overflow: visible !important;
}

.uhs-micro-page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: 'Source Sans 3', Arial, sans-serif;
  color: #10283A;
  background: #FFFFFF;
  line-height: 1.6;
}

/* Safety: do not show the old standalone landing page header or footer inside the HTML widget */
.uhs-micro-page > nav,
.uhs-micro-page > footer {
  display: none !important;
}

.uhs-micro-page {
    --navy: #123047;
    --navy-dark: #0B2235;
    --navy-light: #2F5D7F;
    --gold: #DFB240;
    --gold-light: #ECC96A;
    --gold-pale: #FDF5E0;
    --white: #FFFFFF;
    --offwhite: #F7FAFC;
    --gray-light: #E6EEF3;
    --gray: #7A8B99;
    --text: #10283A;
    --text-light: #4F6473;
  }

  .uhs-micro-page * { margin: 0; padding: 0; box-sizing: border-box; }

  .uhs-micro-page { scroll-behavior: smooth; }

  .uhs-micro-page {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  .uhs-micro-page /* ── NAV ────────────────────────────────────── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(1,42,122,0.97);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 72px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  }

  .uhs-micro-page .nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }

  .uhs-micro-page .nav-logo img {
    height: 48px;
    width: 48px;
    object-fit: contain;
  }

  .uhs-micro-page .nav-logo-text {
    display: flex;
    flex-direction: column;
  }

  .uhs-micro-page .nav-logo-text span:first-child {
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: 0.02em;
  }

  .uhs-micro-page .nav-logo-text span:last-child {
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .uhs-micro-page .nav-cta {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.2s, transform 0.15s;
  }

  .uhs-micro-page .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

  .uhs-micro-page /* ── HERO ───────────────────────────────────── */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0B2235 0%, #123047 52%, #2F5D7F 100%);
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
  }

  .uhs-micro-page .hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223,178,64,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .uhs-micro-page .hero::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223,178,64,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .uhs-micro-page .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .uhs-micro-page .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(223,178,64,0.15);
    border: 1px solid rgba(223,178,64,0.3);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
  }

  .uhs-micro-page .hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .uhs-micro-page .hero h1 {
    font-family: Arial, sans-serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .uhs-micro-page .hero h1 span { color: var(--gold); }

  .uhs-micro-page .hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
  }

  .uhs-micro-page .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }

  .uhs-micro-page .hero-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 30px;
  }

  .uhs-micro-page .hero-badge svg { color: var(--gold); flex-shrink: 0; }

  .uhs-micro-page .hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .uhs-micro-page .btn-primary {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(223,178,64,0.35);
  }

  .uhs-micro-page .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(223,178,64,0.45);
  }

  .uhs-micro-page .btn-outline {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    padding: 15px 32px;
    border-radius: 6px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.35);
    transition: border-color 0.2s, background 0.2s;
  }

  .uhs-micro-page .btn-outline:hover {
    border-color: var(--gold);
    background: rgba(223,178,64,0.08);
    color: var(--gold);
  }

  .uhs-micro-page /* Hero right — stat cards */
  .hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .uhs-micro-page .hero-stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(4px);
    transition: background 0.2s, border-color 0.2s;
  }

  .uhs-micro-page .hero-stat-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(223,178,64,0.3);
  }

  .uhs-micro-page .stat-icon {
    width: 50px; height: 50px;
    border-radius: 10px;
    background: rgba(223,178,64,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
  }

  .uhs-micro-page .stat-value {
    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }

  .uhs-micro-page .stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin-top: 3px;
  }

  .uhs-micro-page /* ── TRUST BAR ──────────────────────────────── */
  .trust-bar {
    background: var(--gold);
    padding: 14px 5%;
  }

  .uhs-micro-page .trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .uhs-micro-page .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .uhs-micro-page /* ── SECTIONS ───────────────────────────────── */
  section { padding: 96px 5%; }

  .uhs-micro-page .section-inner { max-width: 1200px; margin: 0 auto; }

  .uhs-micro-page .section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .uhs-micro-page .section-title {
    font-family: Arial, sans-serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .uhs-micro-page .section-sub {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 640px;
  }

  .uhs-micro-page /* ── INTRO ──────────────────────────────────── */
  .intro { background: var(--offwhite); }

  .uhs-micro-page .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 56px;
  }

  .uhs-micro-page .intro-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .uhs-micro-page .intro-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .uhs-micro-page .intro-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 10px;
    padding: 18px 20px;
    border-left: 4px solid var(--gold);
  }

  .uhs-micro-page .intro-point-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .uhs-micro-page .intro-point strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 3px;
  }

  .uhs-micro-page .intro-point span {
    font-size: 14px;
    color: var(--text-light);
  }

  .uhs-micro-page /* ── PRICING ────────────────────────────────── */
  .pricing { background: var(--white); }

  .uhs-micro-page .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 28px;
    margin-top: 56px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }

  .uhs-micro-page .pricing-card {
    border: 2px solid var(--gray-light);
    border-radius: 16px;
    padding: 40px 36px;
    position: relative;
    background: var(--white);
    transition: box-shadow 0.25s;
  }

  .uhs-micro-page .pricing-card:hover {
    box-shadow: 0 12px 40px rgba(1,42,122,0.1);
  }

  .uhs-micro-page .pricing-card.featured {
    border-color: var(--navy);
    background: linear-gradient(160deg, #123047 0%, #2F5D7F 100%);
    color: var(--white);
    box-shadow: 0 16px 48px rgba(1,42,122,0.3);
  }

  .uhs-micro-page .pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
  }

  .uhs-micro-page .pricing-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 8px;
  }

  .uhs-micro-page .pricing-card.featured .pricing-label { color: rgba(255,255,255,0.55); }

  .uhs-micro-page .pricing-price {
    font-family: Arial, sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
  }

  .uhs-micro-page .pricing-card.featured .pricing-price { color: var(--gold); }

  .uhs-micro-page .pricing-was {
    font-size: 16px;
    color: var(--gray);
    text-decoration: line-through;
    margin-bottom: 4px;
  }

  .uhs-micro-page .pricing-card.featured .pricing-was { color: rgba(255,255,255,0.4); }

  .uhs-micro-page .pricing-save {
    display: inline-block;
    background: rgba(223,178,64,0.15);
    color: var(--gold);
    border: 1px solid rgba(223,178,64,0.3);
    font-size: 13px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 28px;
  }

  .uhs-micro-page .pricing-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 28px;
  }

  .uhs-micro-page .pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.65); }

  .uhs-micro-page .pricing-features {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .uhs-micro-page .pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
  }

  .uhs-micro-page .pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.8); }

  .uhs-micro-page .pricing-features .check {
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .uhs-micro-page .btn-pricing {
    display: block;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.02em;
  }

  .uhs-micro-page .btn-pricing-outline {
    border: 2px solid var(--navy);
    color: var(--navy);
  }

  .uhs-micro-page .btn-pricing-outline:hover {
    background: var(--navy);
    color: var(--white);
  }

  .uhs-micro-page .btn-pricing-solid {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(223,178,64,0.4);
  }

  .uhs-micro-page .btn-pricing-solid:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(223,178,64,0.5);
  }

  .uhs-micro-page /* ── COMPARISON TABLE ───────────────────────── */
  .comparison { background: var(--offwhite); }

  .uhs-micro-page .table-wrap {
    overflow-x: auto;
    margin-top: 56px;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(1,42,122,0.1);
    border: 1px solid var(--gray-light);
  }

  .uhs-micro-page table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
  }

  .uhs-micro-page thead tr {
    background: linear-gradient(135deg, #123047, #2F5D7F);
  }

  .uhs-micro-page thead th {
    padding: 24px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .uhs-micro-page thead th:first-child { width: 200px; }

  .uhs-micro-page thead th.program-col {
    color: var(--white);
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
  }

  .uhs-micro-page thead th.program-col span {
    display: block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .uhs-micro-page tbody tr { border-bottom: 1px solid var(--gray-light); }
  .uhs-micro-page tbody tr:last-child { border-bottom: none; }

  .uhs-micro-page tbody tr:nth-child(even) { background: var(--offwhite); }

  .uhs-micro-page tbody tr:hover { background: #EAF8FC; }

  .uhs-micro-page td {
    padding: 18px 20px;
    font-size: 14px;
    color: var(--text-light);
    vertical-align: top;
  }

  .uhs-micro-page td:first-child {
    font-weight: 700;
    color: var(--navy);
    font-size: 13px;
    letter-spacing: 0.02em;
  }

  .uhs-micro-page .check-yes { color: #22a85b; font-size: 18px; font-weight: 700; }
  .uhs-micro-page .check-no { color: #ccc; font-size: 18px; }

  .uhs-micro-page .tag-launch {
    display: inline-block;
    background: rgba(34,168,91,0.1);
    color: #22a85b;
    border: 1px solid rgba(34,168,91,0.25);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-left: 8px;
    white-space: nowrap;
  }

  .uhs-micro-page .tag-soon {
    display: inline-block;
    background: rgba(223,178,64,0.12);
    color: #b8891a;
    border: 1px solid rgba(223,178,64,0.3);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-left: 8px;
    white-space: nowrap;
  }

  .uhs-micro-page /* ── PROGRAMS ───────────────────────────────── */
  .programs { background: var(--white); }

  .uhs-micro-page .programs-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 56px;
  }

  .uhs-micro-page .program-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    padding: 48px;
    border-radius: 20px;
    border: 1px solid var(--gray-light);
    background: var(--white);
    box-shadow: 0 2px 24px rgba(1,42,122,0.06);
    transition: box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }

  .uhs-micro-page .program-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px;
    height: 100%;
  }

  .uhs-micro-page .program-card.card-geriatric::before { background: var(--navy); }
  .uhs-micro-page .program-card.card-palliative::before { background: #6c3483; }
  .uhs-micro-page .program-card.card-wound::before { background: var(--gold); }

  .uhs-micro-page .program-card:hover { box-shadow: 0 8px 40px rgba(1,42,122,0.12); }

  .uhs-micro-page .prog-header { margin-bottom: 20px; }

  .uhs-micro-page .prog-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
  }

  .uhs-micro-page .prog-status.live {
    background: rgba(34,168,91,0.1);
    color: #22a85b;
    border: 1px solid rgba(34,168,91,0.25);
  }

  .uhs-micro-page .prog-status.live::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #22a85b;
    animation: pulse 2s infinite;
  }

  .uhs-micro-page .prog-status.soon {
    background: rgba(223,178,64,0.1);
    color: #b8891a;
    border: 1px solid rgba(223,178,64,0.3);
  }

  .uhs-micro-page .prog-number {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.1em;
  }

  .uhs-micro-page .prog-title {
    font-family: Arial, sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .uhs-micro-page .prog-subtitle {
    font-size: 14px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .uhs-micro-page .prog-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .uhs-micro-page .prog-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    background: var(--gray-light);
    padding: 5px 12px;
    border-radius: 20px;
  }

  .uhs-micro-page .prog-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .uhs-micro-page .prog-for {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
  }

  .uhs-micro-page .prog-for strong { color: var(--navy); }

  .uhs-micro-page .prog-right { display: flex; flex-direction: column; gap: 28px; }

  .uhs-micro-page .prog-section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 12px;
  }

  .uhs-micro-page .roles-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .uhs-micro-page .roles-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    padding: 9px 14px;
    background: var(--offwhite);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
  }

  .uhs-micro-page .gains-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .uhs-micro-page .gains-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
  }

  .uhs-micro-page .gains-list .g-check {
    color: var(--navy);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .uhs-micro-page .prog-sim-badge {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(1,42,122,0.05);
    border: 1px solid rgba(1,42,122,0.12);
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 8px;
  }

  .uhs-micro-page .prog-sim-badge .sim-icon {
    font-size: 24px;
    flex-shrink: 0;
  }

  .uhs-micro-page .prog-sim-badge strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 3px;
  }

  .uhs-micro-page .prog-sim-badge span {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
  }

  .uhs-micro-page .prog-cta {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid var(--navy);
    color: var(--navy);
  }

  .uhs-micro-page .prog-cta:hover {
    background: var(--navy);
    color: var(--white);
  }

  .uhs-micro-page /* ── WHO ────────────────────────────────────── */
  .who { background: var(--navy); }
  .uhs-micro-page .who .section-title { color: var(--white); }
  .uhs-micro-page .who .section-sub { color: rgba(255,255,255,0.65); }
  .uhs-micro-page .who .section-eyebrow { color: var(--gold); }

  .uhs-micro-page .who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 48px;
  }

  .uhs-micro-page .who-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: background 0.2s, border-color 0.2s;
  }

  .uhs-micro-page .who-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(223,178,64,0.35);
  }

  .uhs-micro-page .who-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(223,178,64,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }

  .uhs-micro-page .who-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
  }

  .uhs-micro-page /* ── WHY UHS ────────────────────────────────── */
  .why { background: var(--white); }

  .uhs-micro-page .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 56px;
  }

  .uhs-micro-page .why-card {
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: left;
    background: var(--white);
    transition: box-shadow 0.25s, border-color 0.25s;
  }

  .uhs-micro-page .why-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(223,178,64,0.15);
  }

  .uhs-micro-page .why-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .uhs-micro-page .why-title {
    font-family: Arial, sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
  }

  .uhs-micro-page .why-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
  }

  .uhs-micro-page /* ── FAQ ────────────────────────────────────── */
  .faq { background: var(--offwhite); }

  .uhs-micro-page .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 56px;
  }

  .uhs-micro-page .faq-item {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 28px;
    border-left: 4px solid var(--navy);
  }

  .uhs-micro-page .faq-q {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.45;
  }

  .uhs-micro-page .faq-a {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
  }

  .uhs-micro-page /* ── FINAL CTA ──────────────────────────────── */
  .final-cta {
    background: linear-gradient(135deg, #0B2235, #123047 50%, #2F5D7F);
    padding: 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .uhs-micro-page .final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223,178,64,0.08) 0%, transparent 65%);
    pointer-events: none;
  }

  .uhs-micro-page .final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
  }

  .uhs-micro-page .final-cta h2 {
    font-family: Arial, sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .uhs-micro-page .final-cta h2 span { color: var(--gold); }

  .uhs-micro-page .final-cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .uhs-micro-page .final-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .uhs-micro-page .final-contact {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
  }

  .uhs-micro-page .final-contact a {
    color: var(--gold);
    text-decoration: none;
  }

  .uhs-micro-page .final-contact a:hover { text-decoration: underline; }

  .uhs-micro-page /* ── FOOTER ─────────────────────────────────── */
  footer {
    background: #123047;
    padding: 48px 5%;
    text-align: center;
  }

  .uhs-micro-page .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .uhs-micro-page .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .uhs-micro-page .footer-logo img {
    height: 44px;
    width: 44px;
    object-fit: contain;
  }

  .uhs-micro-page .footer-logo span {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: var(--white);
    font-weight: 700;
  }

  .uhs-micro-page .footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .uhs-micro-page .footer-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
  }

  .uhs-micro-page .footer-links a:hover { color: var(--gold); }

  .uhs-micro-page .footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
  }

  .uhs-micro-page .footer-abhes {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.06em;
  }

  .uhs-micro-page /* ── RESPONSIVE ─────────────────────────────── */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-right { display: none; }
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
    .program-card { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
    .faq-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    .uhs-micro-page section { padding: 64px 5%; }
    .uhs-micro-page .trust-bar-inner { gap: 16px; }
    .uhs-micro-page .trust-item { font-size: 11px; }
  }
  

/* Extra responsive protection */
@media (max-width: 767px) {
  .uhs-micro-page {
    overflow-x: hidden !important;
  }

  .uhs-micro-page .hero h1 {
    font-size: clamp(34px, 12vw, 46px) !important;
  }

  .uhs-micro-page .pricing-grid,
  .uhs-micro-page .faq-grid,
  .uhs-micro-page .intro-grid,
  .uhs-micro-page .program-card {
    width: 100% !important;
  }

  .uhs-micro-page .btn-primary,
  .uhs-micro-page .btn-outline,
  .uhs-micro-page .btn-pricing,
  .uhs-micro-page .prog-cta {
    width: 100% !important;
    text-align: center !important;
  }
}

/* FINAL SMALL FIX ONLY
   Paste this at the very bottom of Elementor Page Settings > Advanced > Custom CSS.
   Do not delete your working CSS if the page already looks good.
*/

/* Remove extra white space above the landing content */
.elementor-widget-html,
.elementor-widget-html > .elementor-widget-container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.elementor-section,
.elementor-container,
.elementor-widget-wrap {
  margin-top: 0 !important;
}

/* Remove the white border/gap around the final CTA section */
.final-cta {
  margin: 0 !important;
  border: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  background: #123047 !important;
}

/* Match the CTA background with the UHS footer color */
.final-cta {
  background: linear-gradient(135deg, #123047 0%, #143850 55%, #2F5D7F 100%) !important;
}

/* Make the transition into the real UHS footer smoother */
.final-cta + footer,
footer {
  margin-top: 0 !important;
}

/* Match gold button and gold title with UHS style */
.final-cta h2 span,
.final-contact a {
  color: #DFB240 !important;
}

.final-cta .btn-primary {
  background: #DFB240 !important;
  color: #123047 !important;
  border: 1px solid #DFB240 !important;
}

.final-cta .btn-primary:hover {
  background: #ECC96A !important;
  color: #123047 !important;
}

/* Make the outline button cleaner */
.final-cta .btn-outline {
  color: #FFFFFF !important;
  border-color: rgba(255,255,255,0.45) !important;
}

.final-cta .btn-outline:hover {
  color: #DFB240 !important;
  border-color: #DFB240 !important;
}

/* Reduce excessive vertical space on mobile */
@media (max-width: 767px) {
  .final-cta {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
}

/* FINAL COLOR MATCH WITH UHS HEADER */

/* Match top UHS blue header */
.hero {
  background: linear-gradient(
    135deg,
    #123047 0%,
    #244E6E 55%,
    #5BBBD3 100%
  ) !important;
}

/* Make dark sections match UHS footer and header */
.final-cta,
.who {
  background: #123047 !important;
}

/* Make the top hero text clear */
.hero h1,
.hero-sub,
.hero-badge,
.hero-stat-card,
.stat-label {
  color: #FFFFFF !important;
}

/* Keep gold highlights */
.hero h1 span,
.section-eyebrow,
.final-cta h2 span,
.pricing-card.featured .pricing-price {
  color: #DFB240 !important;
}

/* Keep gold buttons */
.btn-primary,
.btn-pricing-solid,
.pricing-badge {
  background: #DFB240 !important;
  color: #123047 !important;
}

/* Featured pricing card match */
.pricing-card.featured {
  background: #123047 !important;
  border-color: #244E6E !important;
}

/* Table header match */
thead tr {
  background: linear-gradient(135deg, #123047, #244E6E) !important;
}/* End custom CSS */