.elementor-1521 .elementor-element.elementor-element-06ec070{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for container, class: .elementor-element-06ec070 */<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
    /* --- YOUR BRAND VARIABLES --- */
    :root {
        --brand-navy: #002b49;  /* Your deep blue */
        --brand-orange: #f15a24; /* Your accent orange */
        --glass: rgba(255, 255, 255, 0.95);
        --radius: 24px;
    }

    body { margin: 0; font-family: 'Inter', system-ui, -apple-system, sans-serif; background: #f1f5f9; color: #334155; line-height: 1.6; }
    h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -0.02em; color: var(--brand-navy); }
    
    /* --- BRANDED ANIMATIONS --- */
    @keyframes pulse-orange {
        0% { box-shadow: 0 0 0 0 rgba(241, 90, 36, 0.4); }
        70% { box-shadow: 0 0 0 20px rgba(241, 90, 36, 0); }
        100% { box-shadow: 0 0 0 0 rgba(241, 90, 36, 0); }
    }
    @keyframes float-tech {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
    }

    /* --- HERO --- */
    .brand-hero {
        background: radial-gradient(circle at center, #003865 0%, #002b49 100%);
        color: white; padding: 120px 20px 100px; text-align: center;
        border-bottom-left-radius: 60px; border-bottom-right-radius: 60px;
        position: relative; overflow: hidden;
        border-bottom: 5px solid var(--brand-orange);
    }
    .hero-h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 25px; color: white; }
    
    /* --- INTERACTIVE CARDS --- */
    .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
    .glass-box {
        background: var(--glass); border: 1px solid white; padding: 32px; border-radius: var(--radius);/* End custom CSS */