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

    :root {
  --orange: #C9A84C; --orange-light: #E0C06A;
      --navy: #0B2D5E;
      --navy-2: #0D3570;
      --navy-3: #1A4A8A;
      --navy-light: #E8EFF9;
      --gold: #C9A84C;
      --gold-light: #E0C06A;
      --gold-pale: #FBF5E6;
      --white: #FFFFFF;
      --off-white: #F7F8FC;
      --text: #1A1E2E;
      --text-mid: #4A5168;
      --text-muted: #8890A8;
      --border: #DDE2EE;
      --shadow: 0 4px 24px rgba(11, 45, 94, 0.10);
      --shadow-md: 0 8px 40px rgba(11, 45, 94, 0.14);
    }

    html {
      scroll-behavior: smooth
    }

    body {
      background: var(--white);
      color: var(--text);
      font-family: 'Sora', sans-serif;
      overflow-x: hidden;
      font-size: 16px;
      line-height: 1.6
    }

    

    /* ── TOPBAR ── */
    .topbar {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.75rem;
      padding: 0.45rem 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      letter-spacing: 0.03em
    }

    .topbar a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none
    }

    .topbar a:hover {
      color: #fff
    }

    .topbar-right {
      display: flex;
      gap: 2rem
    }

    /* ── NAVBAR ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow)
    }

    .nav-inner {
      padding: 0 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none
    }

    .nav-logo-mark {
      width: 44px;
      height: 44px;
      background: var(--navy);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Merriweather', serif;
      font-weight: 900;
      color: #fff;
      font-size: 18px;
      letter-spacing: -1px
    }

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

    .nav-logo-name {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: 0.01em;
      line-height: 1.2
    }

    .nav-logo-sub {
      font-size: 0.62rem;
      color: var(--orange);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 500
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none
    }

    .nav-links>li {
      position: relative
    }

    .nav-links>li>a {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 0 1.1rem;
      height: 70px;
      color: var(--text-mid);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      border-bottom: 3px solid transparent;
      transition: all 0.2s
    }

    .nav-links>li>a:hover,
    .nav-links>li>a.active {
      color: var(--navy);
      border-bottom-color: var(--orange)
    }

    .nav-links>li>a .arrow {
      font-size: 0.6rem;
      transition: transform 0.2s
    }

    .nav-links>li:hover>a .arrow {
      transform: rotate(180deg)
    }

    /* Dropdowns */
    .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      min-width: max-content;
      box-shadow: var(--shadow-md);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: all 0.25s;
      z-index: 300
    }

    .nav-links>li:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0)
    }

    .dropdown a {
      display: block;
      padding: 0.65rem 1.2rem;
      color: var(--text-mid);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 400;
      white-space: nowrap;
      border-bottom: 1px solid var(--border);
      transition: all 0.2s
    }

    .dropdown a:last-child {
      border-bottom: none
    }

    .dropdown a:hover {
      background: var(--off-white);
      color: var(--navy);
      padding-left: 1.5rem
    }

    .nav-cta {
      background: var(--orange);
      color: var(--navy);
      padding: 0.55rem 1.4rem;
      border-radius: 5px;
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: all 0.3s;
      white-space: nowrap
    }

    .nav-cta:hover {
      background: var(--orange-light);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4)
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      border: none;
      background: none
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all .3s
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg)
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg)
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--white);
      z-index: 190;
      overflow-y: auto;
      padding: 1rem 0;
      border-top: 1px solid var(--border)
    }

    .mobile-menu.open {
      display: block
    }

    .mob-link {
      display: block;
      padding: 0.9rem 2rem;
      color: var(--text-mid);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      border-bottom: 1px solid var(--border)
    }

    .mob-link:hover,
    .mob-link.active {
      color: var(--navy);
      background: var(--navy-light)
    }

    .mob-sub {
      padding-left: 3rem;
      font-size: 0.82rem;
      background: var(--off-white)
    }

    .mob-cta {
      margin: 1.5rem 2rem;
      display: block;
      background: var(--gold);
      color: var(--navy);
      padding: 0.85rem;
      border-radius: 6px;
      text-align: center;
      font-weight: 700;
      font-size: 0.88rem;
      text-decoration: none
    }

    /* PAGE HERO */
    .page-hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
      padding: 4rem 2rem;
      position: relative;
      overflow: hidden
    }

    .page-hero-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.04;
      background-image: repeating-linear-gradient(0deg, #fff 0, #fff 1px, transparent 1px, transparent 60px), repeating-linear-gradient(90deg, #fff 0, #fff 1px, transparent 1px, transparent 60px)
    }

    .page-hero-glow {
      position: absolute;
      right: -100px;
      top: -100px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 65%)
    }

    .page-hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 3rem;
      align-items: center
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 1.2rem;
      flex-wrap: wrap
    }

    .breadcrumb a {
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none
    }

    .breadcrumb a:hover {
      color: var(--gold-light)
    }

    .breadcrumb-sep {
      color: rgba(255, 255, 255, 0.3)
    }

    .breadcrumb-current {
      color: var(--gold-light)
    }

    .page-hero h1 {
      font-family: 'Merriweather', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 0.8rem
    }

    .page-hero h1 em {
      font-style: normal;
      color: var(--gold-light)
    }

    .page-hero-sub {
      font-size: 0.93rem;
      color: rgba(255, 255, 255, 0.65);
      max-width: 540px;
      line-height: 1.85;
      font-weight: 300
    }

    .hero-icon-box {
      width: 110px;
      height: 110px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      flex-shrink: 0
    }

    /* CONTENT */
    .policy-wrap {
      max-width: 1100px;
      margin: 0 auto;
      padding: 5rem 2rem
    }

    .policy-grid {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 4rem;
      align-items: start
    }

    .policy-sidebar {
      position: sticky;
      top: 90px
    }

    .sidebar-title {
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 1rem
    }

    .sidebar-nav {
      display: flex;
      flex-direction: column;
      gap: 0.3rem
    }

    .sidebar-link {
      display: block;
      padding: 0.65rem 1rem;
      border-radius: 7px;
      color: var(--text-mid);
      text-decoration: none;
      font-size: 0.82rem;
      border: 1px solid transparent;
      transition: all .2s
    }

    .sidebar-link:hover {
      background: var(--navy-light);
      color: var(--navy);
      border-color: var(--border)
    }

    .sidebar-link.active {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy)
    }

    .sidebar-policies {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border)
    }

    .sidebar-pol-title {
      font-size: 0.66rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
      font-weight: 600;
      margin-bottom: 0.8rem
    }

    .sidebar-pol-link {
      display: block;
      padding: 0.55rem 0.8rem;
      color: var(--text-mid);
      text-decoration: none;
      font-size: 0.78rem;
      border-radius: 5px;
      transition: all .2s
    }

    .sidebar-pol-link:hover {
      color: var(--navy);
      background: var(--off-white)
    }

    .sidebar-pol-link.cur {
      color: var(--gold);
      font-weight: 600
    }

    /* POLICY BODY */

    .policy-section {
      margin-bottom: 3.5rem; scroll-margin-top: 100px
    }

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

    .pol-section-tag {
      font-size: 0.66rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--gold);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 0.6rem
    }

    .pol-section-tag::before {
      content: '';
      width: 22px;
      height: 2px;
      background: var(--gold);
      border-radius: 1px
    }

    .pol-section-title {
      font-family: 'Merriweather', serif;
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--navy);
      margin-bottom: 1rem
    }

    .pol-text {
      font-size: 0.9rem;
      color: var(--text-mid);
      line-height: 1.9;
      margin-bottom: 1rem
    }

    .pol-text:last-child {
      margin-bottom: 0
    }

    /* PRINCIPLE CARDS */
    .principles-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin: 1.5rem 0
    }

    .prin-card {
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.3rem;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      transition: border-color .2s
    }

    .prin-card:hover {
      border-color: var(--gold)
    }

    .prin-icon {
      width: 38px;
      height: 38px;
      background: var(--navy-light);
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0
    }

    .prin-title {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.25rem
    }

    .prin-text {
      font-size: 0.77rem;
      color: var(--text-mid);
      line-height: 1.7
    }

    /* HIGHLIGHT BOX */
    .pol-highlight {
      background: var(--navy-light);
      border-left: 3px solid var(--gold);
      border-radius: 0 8px 8px 0;
      padding: 1.2rem 1.5rem;
      margin: 1.5rem 0
    }

    .pol-highlight p {
      font-size: 0.88rem;
      color: var(--navy);
      font-weight: 500;
      line-height: 1.75;
      margin: 0
    }

    /* DIVIDER */
    .pol-divider {
      height: 1px;
      background: var(--border);
      margin: 2.5rem 0
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      border-top: 1px solid rgba(255, 255, 255, 0.08)
    }

    .footer-main {
      padding: 4rem;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem
    }

    .footer-brand-name {
      font-family: 'Merriweather', serif;
      font-size: 1.2rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 0.6rem
    }

    .footer-brand-sub {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--orange-light);
      margin-bottom: 1rem;
      font-weight: 600
    }

    .footer-desc {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.85;
      max-width: 270px
    }

    .footer-col-title {
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--orange-light);
      margin-bottom: 1.2rem;
      font-weight: 600
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.65rem
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      font-size: 0.8rem;
      transition: color 0.2s;
      font-weight: 300
    }

    .footer-links a:hover {
      color: #fff
    }

    .footer-bottom {
      background: rgba(0, 0, 0, 0.2);
      padding: 1.2rem 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .footer-copy {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.38);
      letter-spacing: 0.03em
    }

    .footer-socials {
      display: flex;
      gap: 0.7rem
    }

    .social-link {
      width: 32px;
      height: 32px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      font-size: 0.72rem;
      font-weight: 600;
      transition: all 0.2s
    }

    .social-link:hover {
      border-color: var(--orange);
      color: var(--orange-light);
      background: rgba(232, 96, 10, 0.1)
    }

    
/* ════════════════════════════════
   RESPONSIVE — MOBILE
════════════════════════════════ */
@media(max-width:900px){
  .nav-links,.nav-cta,.nav-cta-desktop{display:none}
  .hamburger{display:flex}
  .topbar{font-size:0.68rem;padding:0.4rem 1rem}
  .topbar-right{gap:1rem}

  .page-hero{padding:3rem 1.2rem}
  .page-hero-stats{gap:0.5rem}
  .phs-item{flex:1;min-width:80px;padding:0 0.8rem}

  section{padding:3.5rem 1.2rem}

  .who-grid{grid-template-columns:1fr;gap:2.5rem}
  .who-img{height:260px}

  .journey-grid{grid-template-columns:1fr;gap:2rem}

  .co-grid{grid-template-columns:1fr !important;gap:1.2rem}

  .policies-grid{grid-template-columns:1fr 1fr;gap:1rem}

  .companies-intro{grid-template-columns:1fr;gap:1rem}

  .footer-main{grid-template-columns:1fr;gap:2rem}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:0.8rem}

  .certs-row{gap:0.8rem}
  .cert-badge{padding:0.8rem 1rem}
}
@media(max-width:560px){
  .nav-inner{padding:0 1rem;height:60px}
  .mobile-menu{top:92px}
  .nav-logo img{height:36px}
  .nav-logo-name{font-size:0.85rem}

  .page-hero h1{font-size:1.8rem}
  .page-hero-stats{flex-direction:column;gap:1rem}
  .phs-item{border-right:none;padding:0;border-bottom:1px solid rgba(255,255,255,0.08);padding-bottom:0.8rem}
  .phs-item:last-child{border-bottom:none;padding-bottom:0}

  .section-title{font-size:1.7rem}

  .policies-grid{grid-template-columns:1fr}

  .cta-actions{flex-direction:column;align-items:center}
  .btn-gold,.btn-outline-w{width:100%;text-align:center}
}


  




/* ════════════════════════════════
   POLICY SPECIFIC RESPONSIVE FIXES
════════════════════════════════ */
@media(max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr !important; }
  .hero-icon-box { display: none !important; }
  .policy-grid { grid-template-columns: 1fr !important; gap: 2rem; }
  .policy-sidebar { display: none !important; margin-bottom: 1rem; }
  .principle-grid, .principles-grid { grid-template-columns: 1fr !important; gap: 1rem; }
  .policy-wrap { padding: 3rem 1.2rem !important; }
}




.mob-link-flex { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.mob-link-flex .mob-link { border-bottom: none; flex: 1; }
.mob-link { text-transform: uppercase; }
.mob-sub { text-transform: none !important; }
.mob-toggle { padding: 0.9rem 2rem; color: var(--text-mid); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.3s; }
.mob-toggle-text { cursor: pointer; text-transform: uppercase; }
.mob-dropdown { display: none; background: var(--off-white); border-bottom: 1px solid var(--border); }
.mob-item.open > .mob-dropdown { display: block; border-bottom: none; }
.mob-item.open > .mob-link-flex > .mob-toggle { transform: rotate(180deg); color: var(--navy); }
.mob-item.open > .mob-link-flex > .mob-toggle-text { color: var(--navy); }
.mob-dropdown .mob-link { border-bottom: none; }

@media (max-width: 1150px) {
  .nav-links, .nav-cta, .nav-cta-desktop { display: none !important; }
  .hamburger { display: flex !important; }
}

    /* Nested Dropdown */
    .sub-dropdown-wrap { position: relative; }
    .sub-dropdown {
      position: absolute; left: 100%; top: 0; background: #fff;
      min-width: 200px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-radius: 4px; opacity: 0; visibility: hidden;
      transform: translateX(10px); transition: all 0.3s ease; z-index: 101;
    }
    .sub-dropdown-wrap:hover .sub-dropdown {
      opacity: 1; visibility: visible; transform: translateX(0);
    }
    .right-arrow { float: right; }
    .mob-sub-sub { padding-left: 40px !important; text-transform: none; }

.sub-dropdown.show { display: block !important; }


/* Force Title Case for mobile sub-menus */
.mob-sub { text-transform: none !important; }
.mob-sub-sub { text-transform: none !important; }


/* Hide mobile menu on desktop screens even if open class is present */
@media (min-width: 1151px) {
  .mobile-menu { display: none !important; }
}


/* Update font sizes for mobile sub and sub-sub links */
.mob-sub { 
    font-size: 0.92rem !important; 
    font-weight: 600 !important; 
}
.mob-sub-sub { 
    font-size: 0.82rem !important; 
    font-weight: 400 !important; 
}

/* Update left padding for mobile sub-sub links to indent them properly */
.mob-sub-sub { 
    padding-left: 4.5rem !important; 
}
