
    /* ── SCROLL PROGRESS ────────────────────────────────────────── */
    #scroll-bar {
      position: fixed; top: 0; left: 0; z-index: 9999;
      height: 3px; width: 0%;
      background: linear-gradient(90deg, #1565C0, #D94040, #E5A020);
      transition: width .1s linear; pointer-events: none;
    }

    /* ── DESIGN TOKENS ──────────────────────────────────────────── */
    :root {
      --g900: #0A2558;
      --g800: #0D3380;
      --g700: #1565C0;
      --g600: #1976D2;
      --g200: #BBDEFB;
      --g100: #DDEEFF;
      --g50:  #F0F7FF;
      --gold:       #E5A020;
      --gold-light: #F0BA45;
      --gold-pale:  #FEF9ED;
      --gold-dark:  #B87A10;
      --white: #FFFFFF;
      --ink:   #111827;
      --gray-700: #374151;
      --gray-500: #6B7280;
      --gray-400: #9CA3AF;
      --gray-300: #D1D5DB;
      --gray-200: #E5E7EB;
      --gray-100: #F3F4F6;
      --gray-50:  #F9FAFB;
      --sh-sm: 0 1px 3px rgba(0,0,0,.06);
      --sh-md: 0 4px 20px rgba(0,0,0,.09);
      --sh-lg: 0 12px 48px rgba(0,0,0,.13);
      --r: 10px; --rl: 18px; --rx: 26px; --t: .3s ease;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--ink); background: var(--gray-50);
      line-height: 1.6; overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    ::selection { background: rgba(21,101,192,.15); color: var(--g900); }
    :focus-visible { outline: 2.5px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
    img { display: block; max-width: 100%; height: auto; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { font-family: inherit; cursor: pointer; }
    .wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }

    /* ── TYPOGRAPHY ─────────────────────────────────────────────── */
    .label {
      display: inline-block; font-size: 12px; font-weight: 700;
      letter-spacing: .6px; text-transform: uppercase;
      color: var(--gray-700);
      border-left: 3px solid var(--g700); padding-left: 10px; line-height: 1.4;
    }
    .label.gold { color: rgba(255,255,255,.75); border-color: var(--gold); }
    .label.white { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.4); }

    /* ── BUTTONS ────────────────────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; gap: 9px;
      padding: 12px 24px; border-radius: 8px;
      font-size: 15px; font-weight: 500;
      border: 2px solid transparent;
      transition: all var(--t); white-space: nowrap; letter-spacing: .2px;
    }
    .btn-sm { padding: 10px 22px; font-size: 13.5px; }
    .btn-primary { background: var(--g700); color: var(--white); border-color: var(--g700); border-radius: 6px; }
    .btn-primary:hover { background: var(--g800); border-color: var(--g800); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,48,128,.3); }
    .btn-outline { background: transparent; color: var(--g700); border-color: var(--g700); border-radius: 6px; }
    .btn-outline:hover { background: var(--g700); color: var(--white); transform: translateY(-1px); }
    .btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); border-radius: 6px; font-weight: 700; }
    .btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); }

    /* ── ANNOUNCEMENT BAR ───────────────────────────────────────── */
    .ann {
      background: var(--g50); color: #4B5563; border-bottom: 1px solid var(--g100);
      font-size: 13px; text-align: center; padding: 9px 24px;
      display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
    }
    .ann strong { color: var(--g800); }
    .ann a { color: var(--g700); font-weight: 700; }
    .ann-pulse {
      display: inline-block; width: 7px; height: 7px; border-radius: 50%;
      background: var(--g700); animation: pulse 2s ease-in-out infinite; flex-shrink: 0;
    }
    @keyframes pulse {
      0%,100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(21,101,192,.35); }
      50% { opacity: .8; transform: scale(1.15); box-shadow: 0 0 0 5px rgba(21,101,192,0); }
    }

    /* ── NAVBAR ─────────────────────────────────────────────────── */
    .navbar {
      position: sticky; top: 0; z-index: 1000;
      background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--gray-100); transition: box-shadow var(--t);
    }
    .navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.09); }
    .navbar.scrolled::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--g700), var(--gold), var(--g700)); opacity: .6;
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .nav-logo { flex-shrink: 0; min-width: 0; }
    .nav-logo img { height: 42px; width: auto; flex-shrink: 0; }
    .nav-links { display: flex; align-items: center; }
    .nav-item { position: relative; }
    .nav-link {
      display: flex; align-items: center; gap: 4px;
      padding: 9px 14px; font-size: 13.5px; font-weight: 500;
      color: #4B5563; border-radius: 7px; transition: all var(--t); white-space: nowrap;
    }
    .nav-link:hover, .nav-link.active { color: var(--g700); background: var(--g50); }
    .nav-link.active { font-weight: 600; }
    .nav-chev { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--t); }
    .nav-item:hover .nav-chev { transform: rotate(180deg); }
    .dropdown {
      position: absolute; top: calc(100% + 8px); left: 0;
      background: var(--white); border: 1px solid var(--gray-200);
      border-radius: var(--rl); box-shadow: var(--sh-lg);
      min-width: 230px; padding: 8px; opacity: 0; pointer-events: none;
      transform: translateY(10px) scale(.97); transform-origin: top left;
      transition: all .22s cubic-bezier(.22,.61,.36,1); z-index: 200;
    }
    .dropdown::before { content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
    .nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: none; }
    .dropdown a { display: flex; align-items: center; gap: 8px; padding: 9px 14px; font-size: 13.5px; color: var(--gray-700); border-radius: 8px; transition: all var(--t); }
    .dropdown a::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--g200); flex-shrink: 0; transition: background var(--t); }
    .dropdown a:hover { background: var(--g50); color: var(--g700); }
    .dropdown a:hover::before { background: var(--gold); }
    .nav-right { display: flex; flex-shrink: 0; align-items: center; gap: 16px; }
    .hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; border: none; background: none; border-radius: 6px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all var(--t); }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
    .mobile-nav { display: grid; grid-template-rows: 0fr; background: var(--white); border-top: 1px solid var(--gray-100); transition: grid-template-rows .35s cubic-bezier(.22,.61,.36,1); overflow: hidden; }
    .mobile-nav.open { grid-template-rows: 1fr; }
    .mobile-nav-inner { overflow: hidden; padding: 0 28px; }
    .mobile-nav.open .mobile-nav-inner { padding: 12px 28px 24px; }
    .mobile-nav a { display: flex; align-items: center; gap: 10px; padding: 12px 0; font-size: 15px; font-weight: 500; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); transition: color var(--t), padding-left var(--t); }
    .mobile-nav a:hover { color: var(--g700); padding-left: 4px; }
    .mobile-nav a::before { content: ''; width: 0; height: 2px; background: var(--gold); border-radius: 2px; transition: width var(--t); flex-shrink: 0; }
    .mobile-nav a:hover::before { width: 12px; }

    /* ── HERO BANNER ────────────────────────────────────────────── */
    .page-hero {
      background: linear-gradient(115deg, var(--g900) 0%, var(--g800) 55%, var(--g700) 100%);
      padding: 56px 0 60px; position: relative; overflow: hidden; color: var(--white);
    }
    .page-hero::after {
      content: ''; position: absolute; inset: 0;
      background: url(../img/dca8eb0d551af.svg);
      pointer-events: none;
    }
    .page-hero-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
    .page-hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
      border-radius: 100px; padding: 5px 14px; font-size: 12px; color: rgba(255,255,255,.9); font-weight: 600; margin-bottom: 14px;
    }
    .page-hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; animation: pulse 2s ease-in-out infinite; }
    .page-hero h1 { font-size: clamp(28px, 4.5vw, 42px); font-weight: 800; color: var(--white); letter-spacing: -.5px; line-height: 1.15; }
    .page-hero-sub { font-size: 15px; color: rgba(255,255,255,.75); margin-top: 10px; max-width: 640px; line-height: 1.6; }

    /* ── BREADCRUMB & SOCIAL SHARE STRIP ────────────────────────── */
    .action-strip {
      background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 12px 0;
    }
    .action-strip-inner {
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
    }
    .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-500); }
    .breadcrumb a { color: var(--g700); font-weight: 500; }
    .breadcrumb a:hover { text-decoration: underline; }
    .breadcrumb svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--gray-400); }
    
    .share-bar { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .5px; }
    .share-btns { display: flex; align-items: center; gap: 6px; }
    .share-btn {
      width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
      background: var(--gray-100); border: 1px solid var(--gray-200); color: var(--gray-700); transition: all var(--t);
    }
    .share-btn:hover { background: var(--g700); border-color: var(--g700); color: var(--white); transform: translateY(-2px); }
    .share-btn svg { width: 14px; height: 14px; }

    /* ── SECTION TITLE BAR ──────────────────────────────────────── */
    .section-title-wrap {
      display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 24px; border-bottom: 2px solid var(--gray-200); padding-bottom: 14px;
    }
    .section-heading { font-size: 19px; font-weight: 800; color: var(--g900); text-transform: uppercase; letter-spacing: .5px; position: relative; }
    .section-heading::after {
      content: ''; position: absolute; left: 0; bottom: -16px; width: 64px; height: 3px; background: var(--g700); border-radius: 2px;
    }


    /* ── SEARCH & PUBLICATION CONTROLS (NO CATEGORIES) ─────────── */
    .controls-panel {
      margin: 36px 0 28px; background: var(--white); border: 1.5px solid var(--gray-200);
      border-radius: var(--rl); padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
      box-shadow: var(--sh-sm);
    }
    .panel-left-info {
      display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--g900);
    }
    .panel-badge {
      padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 700;
      background: var(--g50); color: var(--g700); border: 1px solid var(--g100);
    }
    .search-box-wrap { position: relative; min-width: 320px; }
    .search-box-input {
      width: 100%; padding: 10px 16px 10px 38px; border-radius: 8px;
      border: 1.5px solid var(--gray-200); font-family: inherit; font-size: 13.5px;
      color: var(--ink); background: var(--gray-50); transition: all var(--t);
    }
    .search-box-input:focus {
      outline: none; border-color: var(--g700); background: var(--white); box-shadow: 0 0 0 3px rgba(21,101,192,.12);
    }
    .search-icon {
      position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
      width: 16px; height: 16px; color: var(--gray-400); pointer-events: none;
    }

    /* ── MAIN ARTICLE GRID (ICON-BASED LIKE RESOURCES.HTML) ──────── */
    .articles-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    @media (max-width: 980px) {
      .articles-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .articles-grid { grid-template-columns: 1fr; }
    }

    .article-card {
      background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--rl);
      padding: 26px 24px; display: flex; flex-direction: column; justify-content: space-between;
      transition: all var(--t); box-shadow: var(--sh-sm); cursor: default; position: relative;
    }
    .article-card:hover {
      transform: translateY(-4px); border-color: var(--g200); box-shadow: var(--sh-md);
    }
    .article-card-header {
      display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px;
    }
    .article-icon-wrap {
      width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
      background: var(--g50); border: 1.5px solid var(--g100);
      display: flex; align-items: center; justify-content: center;
      transition: all var(--t);
    }
    .article-card:hover .article-icon-wrap {
      background: var(--g700); border-color: var(--g700); transform: scale(1.05);
    }
    .article-icon-wrap svg {
      width: 22px; height: 22px; color: var(--g700); transition: color var(--t);
    }
    .article-card:hover .article-icon-wrap svg { color: var(--white); }

    .article-cat-badge {
      padding: 4px 10px; border-radius: 100px; font-size: 11px; font-weight: 700;
      background: var(--g50); color: var(--g700); border: 1px solid var(--g100);
      text-transform: uppercase; letter-spacing: .3px;
    }
    .article-body { display: flex; flex-direction: column; flex-grow: 1; }
    .article-date-row {
      display: flex; align-items: center; justify-content: space-between;
      font-size: 12px; color: var(--gray-400); font-weight: 500; margin-bottom: 10px;
    }
    .article-title {
      font-size: 16px; font-weight: 700; color: var(--g900); line-height: 1.4;
      margin-bottom: 10px; transition: color var(--t);
    }
    .article-card:hover .article-title { color: var(--g700); }
    .article-excerpt {
      font-size: 13.5px; color: var(--gray-500); line-height: 1.65; margin-bottom: 20px; flex-grow: 1;
    }
    
    /* View Details Link */
    .view-details-link {
      display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700;
      color: var(--g700); padding-top: 14px; border-top: 1px solid var(--gray-100);
      transition: all var(--t);
    }
    .view-details-link svg { width: 14px; height: 14px; transition: transform var(--t); }
    .article-card:hover .view-details-link { color: var(--g800); }
    .article-card:hover .view-details-link svg { transform: translateX(5px); }

    /* ── LOAD MORE / PAGINATION ─────────────────────────────────── */
    .load-more-wrap {
      text-align: center; margin: 44px 0 60px;
    }
    .load-more-btn {
      padding: 13px 36px; border-radius: 8px; font-size: 14.5px; font-weight: 600;
      background: var(--white); border: 2px solid var(--g700); color: var(--g700);
      transition: all var(--t); display: inline-flex; align-items: center; gap: 8px;
    }
    .load-more-btn:hover {
      background: var(--g700); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(21,101,192,.25);
    }
    .articles-count-info {
      font-size: 13px; color: var(--gray-400); margin-top: 12px;
    }

    /* ── ARTICLE DETAIL & PDF MODAL ─────────────────────────────── */
    .modal-backdrop {
      position: fixed; inset: 0; background: rgba(10,37,88,.65); backdrop-filter: blur(6px);
      z-index: 2000; opacity: 0; pointer-events: none; transition: opacity var(--t);
      display: flex; align-items: center; justify-content: center; padding: 20px;
    }
    .modal-backdrop.open { opacity: 1; pointer-events: all; }
    .modal-dialog {
      background: var(--white); border-radius: var(--rl); max-width: 780px; width: 100%;
      max-height: 90vh; overflow-y: auto; box-shadow: var(--sh-lg);
      transform: translateY(20px) scale(.98); transition: all .3s cubic-bezier(.22,.61,.36,1);
      position: relative;
    }
    .modal-backdrop.open .modal-dialog { transform: none; }
    .modal-close-btn {
      position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,.3); background: rgba(0,0,0,.3); display: flex; align-items: center; justify-content: center;
      color: var(--white); cursor: pointer; transition: all var(--t); z-index: 10;
    }
    .modal-close-btn:hover { background: rgba(0,0,0,.5); transform: scale(1.05); }
    .modal-header-banner {
      background: linear-gradient(135deg, var(--g900) 0%, #0B2F70 60%, #0D3A8C 100%);
      padding: 36px 36px 28px; color: var(--white);
      display: flex; align-items: center; gap: 20px;
      border-top-left-radius: var(--rl); border-top-right-radius: var(--rl);
      position: relative; overflow: hidden;
    }
    .modal-icon-badge {
      width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
      background: rgba(229,160,32,.2); border: 1.5px solid rgba(229,160,32,.4);
      display: flex; align-items: center; justify-content: center;
    }
    .modal-icon-badge svg { width: 28px; height: 28px; color: var(--gold); }
    .modal-header-meta { display: flex; flex-direction: column; gap: 6px; }
    .modal-tag { background: rgba(255,255,255,.18); color: var(--gold); font-weight: 700; padding: 4px 12px; border-radius: 100px; font-size: 11px; text-transform: uppercase; letter-spacing: .4px; align-self: flex-start; }
    
    .modal-body { padding: 32px 36px; }
    .modal-title { font-size: 22px; font-weight: 800; color: var(--g900); line-height: 1.35; margin-bottom: 16px; }
    .modal-text { font-size: 14.5px; color: var(--gray-700); line-height: 1.8; margin-bottom: 24px; }
    .modal-actions {
      display: flex; gap: 12px; align-items: center; flex-wrap: wrap; border-top: 1px solid var(--gray-100); padding-top: 20px;
    }

    /* ── NEWSLETTER SUBSCRIPTION CALLOUT ────────────────────────── */
    .newsletter-banner {
      background: linear-gradient(110deg, var(--g900), var(--g800));
      border-radius: var(--rl); padding: 44px 48px; color: var(--white);
      margin-bottom: 60px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
      position: relative; overflow: hidden;
    }
    .newsletter-banner::before {
      content: ''; position: absolute; right: -40px; top: -40px; width: 200px; height: 200px;
      background: rgba(229,160,32,.12); border-radius: 50%; pointer-events: none;
    }
    .newsletter-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
    .newsletter-content p { font-size: 14px; color: rgba(255,255,255,.7); max-width: 480px; }
    .newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
    .newsletter-input {
      padding: 12px 18px; border-radius: 8px; border: 1.5px solid rgba(255,255,255,.25);
      background: rgba(255,255,255,.1); color: var(--white); font-family: inherit; font-size: 14px; min-width: 260px;
    }
    .newsletter-input::placeholder { color: rgba(255,255,255,.5); }
    .newsletter-input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.18); }

    /* ── FOOTER ─────────────────────────────────────────────────── */
    .footer { background: var(--g900); color: rgba(255,255,255,.75); padding: 64px 0 0; }
    .footer-top {
      display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
      gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .footer-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
    .footer-tagline { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 240px; }
    .footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,.65); transition: color var(--t); }
    .footer-col ul a:hover { color: #fff; }
    .footer-address { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,.55); margin-bottom: 20px; }
    .footer-contact-link { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.75); margin-bottom: 10px; transition: color var(--t); }
    .footer-contact-link svg { width: 15px; height: 15px; flex-shrink: 0; }
    .footer-contact-link:hover { color: #fff; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: 12px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 10px; }
    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a { color: rgba(255,255,255,.3); transition: color var(--t); }
    .footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

    /* ── RESPONSIVE ─────────────────────────────────────────────── */
    @media(max-width: 1024px) {
      .featured-grid { grid-template-columns: 1fr; }
      .articles-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media(max-width: 768px) {
      .nav-links, .nav-right .btn-sm { display: none; }
      .hamburger { display: flex; }
      .articles-grid { grid-template-columns: 1fr; }
      .controls-panel { flex-direction: column; align-items: stretch; }
      .search-box-wrap { width: 100%; min-width: auto; }
      .newsletter-banner { padding: 32px 24px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
    }
    @media(max-width: 480px) {
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
  
    .m-nav-item { width: 100%; border-bottom: 1px solid var(--g50, #f0f7f4); }
    .m-nav-header { display: flex; align-items: center; justify-content: space-between; width: 100%; text-align: left; }
    .m-nav-header .m-nav-link { flex: 1; text-align: left; margin: 0; padding: 12px 0; font-size: 15px; font-weight: 500; color: var(--navy, #0f2744); text-decoration: none; }
    .m-chev-btn { background: none; border: none; padding: 8px 12px; cursor: pointer; color: var(--gold, #c5a059); display: flex; align-items: center; justify-content: center; }
    .m-nav-chev { width: 18px; height: 18px; transition: transform 0.25s ease; }
    .m-nav-item.open .m-nav-chev { transform: rotate(180deg); }
    .m-submenu { display: none; padding: 4px 0 12px 14px; flex-direction: column; gap: 8px; border-left: 2px solid var(--g200, #c8e6d9); margin-left: 4px; margin-bottom: 8px; text-align: left; }
    .m-nav-item.open .m-submenu { display: flex; }
    .m-submenu a { font-size: 13.5px; color: var(--gray-600, #555); text-decoration: none; padding: 4px 0; text-align: left; display: block; }
    .m-submenu a:hover { color: var(--g700, #005a36); font-weight: 500; }
    
  
    @media (max-width: 768px) {
      .nav-right .btn-sm { display: none !important; }
    }
    .dropdown.dropdown-wide { min-width: 250px; }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
    /* ── SHARED HOMEPAGE HEADER (accordion + drawer) ───────── */
    .mobile-nav {
      display: grid;
      grid-template-rows: 0fr;
      background: var(--white);
      border-top: 1px solid transparent;
      box-shadow: none;
      text-align: left;
      overflow: hidden;
      transition: grid-template-rows .35s cubic-bezier(.22,.61,.36,1),
                  box-shadow .35s ease,
                  border-color .35s ease;
    }
    .mobile-nav.open {
      grid-template-rows: 1fr;
      border-top-color: var(--gray-100);
      box-shadow: 0 14px 36px rgba(0,0,0,.10);
      max-height: 85vh;
    }
    .mobile-nav-inner {
      min-height: 0;
      overflow: hidden;
      padding: 0 24px;
      text-align: left;
    }
    .mobile-nav.open .mobile-nav-inner {
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding: 12px 24px 28px;
    }
    .m-nav-link {
      display: flex; align-items: center; justify-content: flex-start;
      text-align: left;
      padding: 12px 0; font-size: 15px; font-weight: 500;
      color: var(--gray-700); border-bottom: 1px solid var(--gray-100);
      transition: color var(--t), padding-left var(--t);
    }
    .m-nav-link:hover, .m-nav-link.active { color: var(--g700); font-weight: 600; padding-left: 4px; }
    .mobile-nav .m-nav-link::before { display: none; }
    .m-nav-item { border-bottom: 1px solid var(--gray-100); text-align: left; }
    .m-nav-header {
      display: flex; align-items: center; justify-content: space-between;
      width: 100%; text-align: left; cursor: pointer;
    }
    .m-nav-header .m-nav-link { border-bottom: none; flex-grow: 1; text-align: left; justify-content: flex-start; }
    .m-chev-btn {
      width: 40px; height: 40px; border: none; background: transparent;
      display: flex; align-items: center; justify-content: center;
      color: var(--gray-400); cursor: pointer; border-radius: 6px;
      transition: all var(--t); flex-shrink: 0;
    }
    .m-chev-btn:hover { background: var(--g50); color: var(--g700); }
    .m-nav-chev { width: 14px; height: 14px; transition: transform var(--t); }
    .m-nav-item.open .m-nav-chev { transform: rotate(180deg); color: var(--g700); }
    .m-submenu {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      padding: 0 12px;
      margin-bottom: 0;
      background: var(--gray-50);
      border-radius: 8px;
      text-align: left;
      transition: max-height .35s cubic-bezier(.22,.61,.36,1),
                  opacity .25s ease,
                  padding .35s ease,
                  margin .35s ease;
    }
    .m-nav-item.open .m-submenu {
      max-height: 480px;
      opacity: 1;
      padding: 6px 12px 12px 14px;
      margin-bottom: 10px;
    }
    .m-submenu a {
      display: flex; align-items: center; justify-content: flex-start;
      text-align: left; gap: 8px;
      padding: 9px 0; font-size: 13.5px; color: var(--gray-600);
      border-bottom: 1px solid rgba(0,0,0,.04);
      transition: all var(--t);
    }
    .m-submenu a:last-child { border-bottom: none; }
    .m-submenu a::before {
      content: ''; width: 5px; height: 5px; border-radius: 50%;
      background: var(--g200); flex-shrink: 0; transition: background var(--t);
    }
    .m-submenu a:hover { color: var(--g700); padding-left: 4px; }
    .m-submenu a:hover::before { background: var(--gold); }

  
.ip0{opacity:.3 !important}
.ip1{padding: 36px 0 60px !important}
.ip2{margin-top: 20px !important}
.ip3{color:var(--g700) !important}
.ip4{font-size:12.5px !important; color:rgba(255,255,255,.75) !important; margin-top:4px !important}
.ip5{margin-top:24px !important}
.ip6{background:rgba(0,0,0,.25) !important; padding:16px 0 !important; font-size:11.5px !important; color:rgba(255,255,255,.35) !important; text-align:center !important; line-height:1.6 !important}