
        :root {
            --blue:      #094a8c;
            --blue-dk:   #063266;
            --blue-mid:  #0d5fb3;
            --blue-lt:   #e8f0fa;
            --blue-lter: #f0f5fc;
            --yellow:    #f7ec11;
            --yellow-dk: #d4c90e;
            --cream:     #f7f5f0;
            --white:     #ffffff;
            --text:      #1a1a1a;
            --muted:     #5a5a5a;
            --border:    #d9d4c7;
            --radius:    8px;
            --font:      'Cairo', sans-serif;
            --serif:     'Tajawal', Georgia, serif;
            --shadow:    0 2px 16px rgba(9,74,140,.09);
        }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--font); background: var(--cream); color: var(--text); font-size: 16px; line-height: 1.7; }
        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; display: block; }

        

        

        

        
        .btn {
            display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; border-radius: 40px;
            font-size: 14px; font-weight: 700; font-family: var(--font); cursor: pointer;
            border: 2px solid transparent; transition: all 0.25s; white-space: nowrap;
        }
        .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; background: transparent; }
        .btn-outline:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(247,236,17,0.1); }
        .btn-yellow { background: var(--yellow); color: var(--blue-dk); border-color: var(--yellow); }
        .btn-yellow:hover { background: #fff; border-color: #fff; color: var(--blue-dk); }

        /* ── HERO ── */
        .hero {
            position: relative; background: var(--blue); overflow: hidden;
            min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end;
        }
        .hero-bg {
            position: absolute; inset: 0;
            background: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=1400&q=80') center/cover no-repeat;
            opacity: .18;
        }
        .hero-inner { position: relative; z-index: 1; padding-bottom: 48px; }
        .breadcrumb-hero { max-width: 1100px; margin: 0 auto; padding: 24px 28px 0; }
        .breadcrumb-hero-list {
            display: flex; align-items: center; gap: 0;
            font-size: 13px; color: rgba(255,255,255,.6);
            list-style: none; padding: 0; margin: 0;
        }
        .breadcrumb-hero-list li { display: flex; align-items: center; }
        .breadcrumb-sep { margin: 0 6px; opacity: .4; font-size: 13px; line-height: 1; }
        .hero-title-wrap { max-width: 1100px; margin: 0 auto; padding: 20px 28px 0; }
        .hero-h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: #fff; }

        /* ── ANCHOR NAV ── */
        .anchor-nav-wrap { background: #fff; border-bottom: 2px solid var(--border); position: sticky; top: 80px; z-index: 90; }
        .anchor-nav { max-width: 1100px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; overflow-x: auto; scrollbar-width: none; }
        .anchor-nav::-webkit-scrollbar { display: none; }
        .anchor-link { display: block; padding: 14px 18px; font-size: 13px; font-weight: 700; color: var(--muted); white-space: nowrap; border-bottom: 3px solid transparent; transition: all .2s; }
        .anchor-link:hover, .anchor-link.active { color: var(--blue); border-bottom-color: var(--blue); }

        /* ── LAYOUT ── */
        .container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
        .container-sm { max-width: 820px; margin: 0 auto; padding: 0 28px; }
        .content-section { padding: 64px 0; }
        .bg-white { background: #fff; }

        /* ── HEADINGS ── */
        h2.section-title {
            font-size: clamp(20px, 2.5vw, 28px); font-weight: 900; color: var(--blue);
            position: relative; padding-bottom: 12px; margin-bottom: 28px;
        }
        h2.section-title::after { content: ''; position: absolute; bottom: 0; inset-inline-start: 0; width: 36px; height: 3px; background: var(--yellow); border-radius: 2px; }

        /* ── ORG CHART ── */
        .org-chart-container { max-width: 940px; margin: 0 auto; }
        .org-level { display: flex; justify-content: center; align-items: stretch; gap: 14px; flex-wrap: wrap; }
        .org-node {
            background: #fff; border: 1.5px solid var(--border); border-radius: 10px;
            padding: 14px 20px; min-width: 160px; max-width: 260px; text-align: center;
            font-size: 0.95rem; font-weight: 600; color: var(--text); line-height: 1.4;
            box-shadow: 0 2px 10px rgba(9,74,140,0.08); transition: box-shadow 0.2s, transform 0.2s;
            flex: 1 1 160px;
        }
        .org-node:hover { box-shadow: 0 6px 20px rgba(9,74,140,0.16); transform: translateY(-2px); }
        .org-node.highlight { background: var(--blue); border-color: var(--blue); color: #fff; }
        .org-node.accent { background: var(--yellow); border-color: var(--yellow-dk); color: var(--blue-dk); }
        .org-node.side { background: var(--blue-lt); border-color: var(--blue-lt); color: var(--blue); font-size: 0.88rem; min-width: 130px; flex: 0 0 auto; }
        .org-node.base { background: linear-gradient(135deg, var(--blue-lt), #dce8f5); border-color: #b0c8e0; color: var(--blue-dk); max-width: 520px; flex: 0 1 auto; }
        .org-connector { display: flex; justify-content: center; padding: 2px 0; }
        .org-connector-line {
            width: 2px; height: 32px;
            background: linear-gradient(to bottom, var(--blue), rgba(9,74,140,0.2));
            border-radius: 1px; position: relative;
        }
        .org-connector-line::after {
            content: ''; position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
            width: 0; height: 0;
            border-left: 5px solid transparent; border-right: 5px solid transparent;
            border-bottom: 6px solid var(--blue);
        }
        .side-row { display: flex; justify-content: center; align-items: center; gap: 0; }
        .side-row .org-node.side { margin: 0 8px; }
        .arrow-side { font-size: 1.2rem; color: var(--blue); opacity: 0.45; flex-shrink: 0; padding: 0 2px; }

        /* ── MOBILE ──
           The org chart is a fixed-shape diagram: on narrow screens its wide rows used
           to wrap and overflow the centered container, clipping nodes at both edges.
           Instead we keep each level on a single line at the chart's natural width and
           let the container scroll horizontally, so the whole hierarchy stays intact
           (relates to the /structure org-chart markup in structure.blade.php). */
        @media (max-width: 768px) {
            .org-chart-container {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;   /* momentum scroll on iOS */
                padding-bottom: 10px;                /* room for the scrollbar */
            }
            /* Give every level/connector the same min-width so rows stay mutually
               centered while the container (not the viewport) scrolls sideways. */
            .org-chart-container > * { min-width: 680px; }
            .org-level, .side-row { flex-wrap: nowrap; }
        }

        
    