.text-orange { color: var(--orange) !important; }
    .bg-navy { background: var(--navy) !important; color: #fff; }
    .btn-orange {
      background: var(--orange);
      color: #fff;
      border: none;
      padding: 0.8rem 1.5rem;
      border-radius: 8px;
      font-weight: 600;
      transition: .25s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }
    .btn-orange:hover {
      background: var(--orange-2);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 12px 24px -14px rgba(242, 131, 39, .8);
    }
    .btn-outline-light-2 {
      border: 1px solid rgba(255,255,255,.6);
      color: #fff;
      background: transparent;
      padding: 0.8rem 1.5rem;
      border-radius: 8px;
      font-weight: 600;
      transition: .25s ease;
    }
    .btn-outline-light-2:hover {
      background: #fff;
      color: var(--navy);
    }
    .eyebrow {
      color: var(--orange);
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: .77rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: .6rem;
    }
    .eyebrow::before {
      content: "";
      width: 26px;
      height: 2px;
      background: var(--orange);
      display: inline-block;
    }

    .site-header {
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1030;
      background: var(--navy);
      box-shadow: 0 10px 30px -20px rgba(0,0,0,.45);
      padding: 0.4rem 0;
    }
    .navbar-brand {
      color: #fff;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 700;
    }
    .brand-badge {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: #fff;
      display: grid;
      place-items: center;
      color: var(--navy);
      font-size: 1.2rem;
    }
    .brand-name {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.2rem;
      line-height: 1.1;
    }
    .brand-sub {
      color: var(--orange);
      font-size: .7rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      display: block;
      margin-top: 2px;
    }
    .site-header .nav-link {
      color: #e6ebf5 !important;
      font-weight: 500;
      padding: .5rem 1rem !important;
      font-size: .95rem;
    }
    .site-header .nav-link:hover,
    .site-header .nav-link.active {
      color: var(--orange) !important;
    }

    .program-hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
      color: #fff;
      padding: 4rem 0 5rem;
      position: relative;
      overflow: hidden;
    }
    .program-hero::after {
      content: "";
      position: absolute;
      right: -80px;
      top: 30px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: rgba(242, 131, 39, .08);
      filter: blur(10px);
    }
    .breadcrumb-wrap {
      color: rgba(255,255,255,.8);
      font-size: .9rem;
      margin-bottom: 1rem;
    }
    .breadcrumb-wrap a { color: #fff; }
    .program-hero h1 {
      font-size: clamp(2.1rem, 4vw, 3.5rem);
      margin-top: 0.8rem;
      margin-bottom: 1rem;
      line-height: 1.08;
    }
    .program-hero p {
      color: rgba(255,255,255,.8);
      font-size: 1.03rem;
      line-height: 1.8;
      max-width: 680px;
    }
    .tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: .7rem;
      margin-top: 1.6rem;
    }
    .tag-list span {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      padding: .45rem .8rem;
      border-radius: 999px;
      font-size: .82rem;
      color: #fff;
    }
    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 1.8rem;
    }

    .program-panel {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 18px;
      padding: 1.5rem;
      backdrop-filter: blur(10px);
      box-shadow: 0 25px 50px -25px rgba(0,0,0,.4);
    }
    .mini-card {
      border-radius: 13px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.08);
      padding: 1rem 1.1rem;
      margin-bottom: 1rem;
    }
    .mini-card .label {
      color: rgba(255,255,255,.72);
      font-size: .74rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: .3rem;
    }
    .mini-card .value {
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
    }

    .section-wrap {
      padding: 4.5rem 0;
      background: #f5f6f8;
    }
    .content-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 1.8rem;
      box-shadow: 0 18px 42px -30px rgba(11,26,58,.25);
    }
    .content-card + .content-card { margin-top: 1.4rem; }
    .content-card h3 {
      font-size: 1.6rem;
      margin-bottom: 1rem;
      color: var(--navy);
    }
    .content-card p, .content-card li {
      color: var(--muted);
      line-height: 1.8;
    }
    .content-card ul {
      margin: 1rem 0 0;
      padding-left: 1.2rem;
    }
    .check-list {
      list-style: none;
      padding-left: 0;
      margin: 1.2rem 0 0;
    }
    .check-list li {
      position: relative;
      padding-left: 1.8rem;
      margin-bottom: 0.8rem;
    }
    .check-list li::before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      color: var(--success);
      position: absolute;
      left: 0;
      top: 0.1rem;
      font-size: .85rem;
    }
    .summary-box {
      background: var(--navy);
      color: #fff;
      border-radius: 16px;
      padding: 1.4rem;
      position: sticky;
      top: 90px;
    }
    .summary-box h4 { margin-bottom: 1rem; }
    .summary-box .row-item {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      padding: .6rem 0;
      border-bottom: 1px solid rgba(255,255,255,.1);
      color: rgba(255,255,255,.82);
    }
    .summary-box .row-item:last-child { border-bottom: none; }
    .summary-box strong { color: #fff; }

    .program-highlight {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 20px;
      box-shadow: 0 20px 45px -35px rgba(11,26,58,.35);
      padding: 2rem;
      margin-top: -3rem;
      position: relative;
      z-index: 2;
    }
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 1.2rem;
    }
    .feature-box {
      background: linear-gradient(180deg, #fff, #f8fafc);
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 1rem;
    }
    .feature-box .label {
      display: block;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--muted);
      font-size: .7rem;
      margin-bottom: .45rem;
    }
    .feature-box strong {
      color: var(--navy);
      font-size: 1rem;
      line-height: 1.5;
    }
    .feature-box .small {
      color: var(--muted);
      display: block;
      margin-top: .35rem;
      font-size: .8rem;
    }
    .topic-list {
      list-style: none;
      padding: 0;
      margin: 1.2rem 0 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: .8rem 1rem;
    }
    .topic-list li {
      background: #f8fafc;
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: .8rem .9rem;
      color: var(--text);
      font-size: .95rem;
      line-height: 1.6;
    }
    .topic-list li::before {
      content: '\f111';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      color: var(--orange);
      margin-right: .55rem;
      font-size: .62rem;
      vertical-align: middle;
    }
    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: .7rem;
      margin-top: 1rem;
    }
    .pill-row span {
      display: inline-flex;
      align-items: center;
      padding: .5rem .8rem;
      border-radius: 999px;
      background: rgba(242, 131, 39, .1);
      color: var(--navy);
      border: 1px solid rgba(242, 131, 39, .15);
      font-weight: 600;
      font-size: .82rem;
    }
    .objective-box {
      background: linear-gradient(135deg, rgba(11,26,58,.04), rgba(242,131,39,.08));
      border-left: 4px solid var(--orange);
      border-radius: 14px;
      padding: 1.2rem 1.3rem;
      margin-top: 1rem;
    }
    .note-box {
      background: #fff7ed;
      border: 1px solid rgba(242, 131, 39, .18);
      border-radius: 12px;
      padding: 1rem 1.1rem;
      color: var(--navy);
      font-weight: 600;
    }
    .program-content-wrap {
      display: grid;
      grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
      gap: 2rem;
      align-items: start;
    }
    .content-panel {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 2rem;
      box-shadow: 0 18px 40px -30px rgba(11,26,58,.25);
    }
    .content-panel h2 {
      font-size: 2.1rem;
      color: var(--navy);
      margin: 0 0 1rem;
    }
    .content-panel h3 {
      font-size: 1.5rem;
      color: var(--navy);
      margin: 1.8rem 0 .8rem;
    }
    .content-panel p,
    .content-panel li {
      color: var(--muted);
      line-height: 1.9;
      font-size: 1rem;
    }
    .content-panel ul {
      padding-left: 1.2rem;
      margin: 1rem 0;
    }
    .content-panel strong {
      color: var(--navy);
    }
    .callout {
      background: linear-gradient(135deg, rgba(242,131,39,.08), rgba(11,26,58,.04));
      border-left: 4px solid var(--orange);
      padding: 1rem 1.1rem;
      border-radius: 12px;
      margin-top: 1.2rem;
      color: var(--navy);
      font-weight: 600;
    }
    .short-summary {
      background: #f8fafc;
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 1rem 1.1rem;
      margin-bottom: 1.2rem;
      color: var(--text);
      font-size: 1rem;
      line-height: 1.8;
    }

    .program-contact {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
      color: #fff;
      padding: 4.5rem 0;
      position: relative;
      overflow: hidden;
    }
    .program-contact::before {
      content: "";
      position: absolute;
      right: -12%;
      top: 10%;
      bottom: 10%;
      width: 55%;
      border-radius: 50%;
      background: radial-gradient(circle at center, rgba(242,131,39,.12), transparent 60%);
      pointer-events: none;
    }
    .program-contact .info-box {
      position: relative;
      z-index: 1;
    }
    .program-contact h2 {
      font-size: clamp(2rem, 3vw, 2.5rem);
      margin-top: 1rem;
      margin-bottom: 0.8rem;
    }
    .program-contact .lead {
      color: rgba(255,255,255,.74);
      line-height: 1.8;
    }
    .contact-meta {
      margin-top: 2rem;
    }
    .info-row {
      display: flex;
      align-items: flex-start;
      gap: .9rem;
      margin-bottom: 1.1rem;
      color: rgba(255,255,255,.82);
    }
    .info-row i {
      background: rgba(255,255,255,.06);
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 10px;
      color: var(--orange);
      flex-shrink: 0;
    }
    .info-row strong {
      display: block;
      color: #fff;
      margin-bottom: .2rem;
      font-size: .95rem;
    }

    .contact-form {
      background: #fff;
      color: var(--text);
      border-radius: 16px;
      padding: 1.5rem;
      position: relative;
      z-index: 1;
      box-shadow: 0 20px 50px -28px rgba(0,0,0,.35);
    }
    .contact-form label {
      display: block;
      font-size: .8rem;
      font-weight: 700;
      margin-bottom: .45rem;
      color: var(--text);
    }
    .contact-form .form-control,
    .contact-form .form-select {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: #f8fafc;
      padding: .82rem 1rem;
      font-size: .92rem;
      color: var(--text);
    }
    .contact-form .form-control:focus,
    .contact-form .form-select:focus {
      outline: none;
      border-color: rgba(242, 131, 39, .9);
      box-shadow: 0 0 0 4px rgba(242, 131, 39, .12);
    }
    textarea.form-control {
      min-height: 120px;
      resize: vertical;
    }