:root {
            --primary: #00338D;
            --primary-dark: #002260;
            --primary-light: #eef3fb;
            --accent: #10b981;
            --accent-dark: #059669;
            --text-main: #0f172a;
            --text-muted: #475569;
            --bg-body: #f8fafc;
            --bg-card: #ffffff;
            --border: #e2e8f0;
            --radius-md: 16px;
            --radius-lg: 24px;
            --shadow-md: 0 10px 30px rgba(0, 51, 141, 0.08);
            --shadow-lg: 0 20px 45px rgba(0, 51, 141, 0.12);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; 
            background-color: var(--bg-body); 
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

        /* HEADER */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-inner { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            height: 76px;
        }
        .logo img { height: 48px; width: auto; }
        .nav-links { display: flex; gap: 28px; align-items: center; }
        .nav-links a { 
            text-decoration: none; 
            color: var(--text-muted); 
            font-size: 0.95rem; 
            font-weight: 600; 
            transition: color 0.2s; 
        }
        .nav-links a:hover { color: var(--primary); }
        .nav-links a.active { color: var(--primary); font-weight: 700; }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
        }
        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 14px rgba(0, 51, 141, 0.25);
        }
        .btn-primary:hover { 
            background: var(--primary-dark); 
            transform: translateY(-2px); 
        }

        /* PAGE HEADER */
        .page-header {
            padding: 80px 0 60px;
            background: radial-gradient(circle at top right, #e8f0fe 0%, transparent 50%), #ffffff;
            border-bottom: 1px solid var(--border);
            text-align: center;
        }
        .page-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .page-header h1 { 
            font-size: clamp(2.25rem, 4vw, 3.25rem); 
            font-weight: 800; 
            color: var(--primary); 
            margin-bottom: 16px; 
            letter-spacing: -1px;
        }
        .page-header p { 
            font-size: 1.2rem; 
            color: var(--text-muted); 
            max-width: 700px; 
            margin: 0 auto; 
            line-height: 1.6;
        }

        /* STORY SECTION */
        .story-section { padding: 90px 0; }
        .split { 
            display: grid; 
            grid-template-columns: 1.1fr 0.9fr; 
            gap: 60px; 
            align-items: center; 
            margin-bottom: 90px; 
        }
        .split-content h2 { 
            font-size: 2.25rem; 
            font-weight: 800; 
            color: var(--primary); 
            margin-bottom: 20px; 
            line-height: 1.2;
        }
        .split-content p { 
            font-size: 1.05rem; 
            color: var(--text-muted); 
            margin-bottom: 20px; 
            line-height: 1.7;
        }
        .story-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 40px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-md);
            position: relative;
        }
        .story-highlight-box {
            background: var(--primary-light);
            border-left: 4px solid var(--primary);
            padding: 20px;
            border-radius: 0 12px 12px 0;
            margin-top: 24px;
        }
        .story-highlight-box p {
            font-weight: 600;
            color: var(--primary);
            font-size: 1rem;
            margin: 0;
        }

        /* VALUES GRID */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin: 60px 0 90px;
        }
        .value-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 32px;
            box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
        }
        .value-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 20px;
        }
        .value-card h3 {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .value-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* TEAM SECTION */
        .team-section {
            padding: 90px 0;
            background: white;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .section-header {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 50px;
        }
        .section-header h2 {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .section-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        .team-card {
            background: var(--bg-body);
            border: 1px solid var(--border);
            padding: 36px 28px;
            border-radius: var(--radius-md);
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .team-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            background: white;
        }
        .team-avatar {
            width: 96px;
            height: 96px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, #002260 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            margin: 0 auto 20px;
            border: 4px solid white;
            box-shadow: 0 4px 14px rgba(0, 51, 141, 0.2);
        }
        .team-card h4 { 
            font-size: 1.3rem; 
            font-weight: 800; 
            margin-bottom: 6px; 
            color: var(--primary); 
        }
        .team-card .team-role { 
            color: var(--accent-dark); 
            font-size: 0.9rem; 
            font-weight: 700; 
            margin-bottom: 16px;
        }
        .team-card p.team-desc {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* FOOTER */
        footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 80px 0 40px;
            font-size: 0.95rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 60px;
        }
        .footer-brand h3 {
            color: white;
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 16px;
        }
        .footer-brand p {
            line-height: 1.6;
            margin-bottom: 24px;
            max-width: 320px;
        }
        .footer-col h4 {
            color: white;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-col a:hover { color: white; }
        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid #1e293b;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        @media (max-width: 968px) {
            .split { grid-template-columns: 1fr; gap: 40px; }
            .values-grid { grid-template-columns: 1fr; }
            .team-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .nav-links { display: none; }
        }
/* Additional CSP-safe classes */
.story-promises-title { font-size: 1.4rem; color: var(--primary); margin-bottom: 16px; font-weight: 800; }
.story-promise-item { display: flex; gap: 14px; margin-bottom: 18px; }
.story-promise-item:last-child { margin-bottom: 0; }
.story-promise-icon { color: var(--accent); font-weight: 900; font-size: 1.2rem; }
.story-promise-title { display: block; color: var(--text-main); font-size: 1rem; }
.story-promise-desc { color: var(--text-muted); font-size: 0.9rem; }
.footer-logo-img { height: 48px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
