      body {
        background-color: #f8fafc;
        color: #334155;
        font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        -webkit-font-smoothing: antialiased;
      }

      .noise-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 9999;
        opacity: 0.03;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
      }

      .corp-card {
        background: #ffffff;
        position: relative;
        border-radius: 12px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
        border: 1px solid transparent; 
        background-clip: padding-box; 
      }

      .corp-card::before {
        content: "";
        position: absolute;
        inset: -1px; 
        border-radius: 13px;
        padding: 1px;
        background: linear-gradient(135deg, #cbd5e1, #f1f5f9);
        -webkit-mask: 
           linear-gradient(#fff 0 0) content-box, 
           linear-gradient(#fff 0 0);
        mask: 
           linear-gradient(#fff 0 0) content-box, 
           linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        z-index: -1;
        transition: background 0.4s ease;
      }

      .corp-card:hover {
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
        transform: translateY(-4px);
      }

      .corp-card:hover::before {
         background: linear-gradient(135deg, #1e3a8a, #3b82f6, #f97316);
      }

      .nav-corporate {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid #e2e8f0;
      }

      .heading-xl {
        font-weight: 800;
        letter-spacing: -0.025em;
        color: #0f172a;
      }

      .heading-lg {
        font-weight: 700;
        color: #1e293b;
        letter-spacing: -0.01em;
      }

      .text-body {
        color: #475569;
        line-height: 1.6;
      }

      .btn-primary {
        background-color: #1e3a8a;
        color: white;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        transition: background-color 0.2s;
      }

      .btn-primary:hover {
        background-color: #1e40af;
      }

      .btn-secondary {
        background-color: white;
        color: #1e3a8a;
        border: 1px solid #cbd5e1;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        transition: all 0.2s;
      }

      .btn-secondary:hover {
        background-color: #f8fafc;
        border-color: #94a3b8;
      }

      ::-webkit-scrollbar {
        width: 8px;
      }
      ::-webkit-scrollbar-track {
        background: #f1f5f9;
      }
      ::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 4px;
      }
      ::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
      }

      @keyframes ken-burns {
        0% {
          transform: scale(1.2) translateY(-7%);
        }
        100% {
          transform: scale(1.2) translateY(7%); 
        }
      }

      .animate-ken-burns {
        animation: ken-burns 20s ease-out infinite alternate;
      }

      @keyframes blob {
        0% { transform: translate(0px, 0px) scale(1); }
        33% { transform: translate(30px, -50px) scale(1.1); }
        66% { transform: translate(-20px, 20px) scale(0.9); }
        100% { transform: translate(0px, 0px) scale(1); }
      }
      .animate-blob {
        animation: blob 10s infinite;
      }
      .animation-delay-2000 {
        animation-delay: 2s;
      }
      .animation-delay-4000 {
        animation-delay: 4s;
      }
