
        :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-cream { background: var(--cream); }

        /* ── 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; }

        /* ── PILOTAGE PRINCIPLES ── */
        .principles-grid { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
        .principle-card {
            background: #fff; border-radius: var(--radius); padding: 24px 20px;
            border-right: 4px solid var(--blue); box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            opacity: 0; transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .principle-card.visible { opacity: 1; transform: translateY(0); }
        .principle-card h4 { font-size: 16px; font-weight: 900; color: var(--blue); margin-bottom: 10px; }
        .principle-card p { font-family: var(--serif); color: var(--muted); font-size: 15px; line-height: 1.8; }

        
    