:root {
    --navy: #002B5B;
    --gold: #C5A059;
    --white: #ffffff;
    --gray: #f8f9fa;
    --text: #2d3436;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); line-height: 1.6; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Navigation */
.navbar { background: #fff; padding: 10px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 15px; }
.main-logo { height: 75px; width: auto; }
.brand-text { display: flex; flex-direction: column; }
.m-title { font-weight: 800; color: var(--navy); font-size: 1.2rem; }
.m-sub { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; font-weight: 600; }
.nav-links { list-style: none; display: flex; gap: 25px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 600; font-size: 0.9rem; }

/* Hero */
.hero { 
    height: 70vh; 
    background: linear-gradient(rgba(0, 43, 91, 0.7), rgba(0, 43, 91, 0.7)), 
                url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&q=80'); 
    background-size: cover; background-position: center;
    display: flex; align-items: center;
}
.hero-content { color: #fff; max-width: 800px; }
.hero-content h1 { font-size: 3.5rem; margin: 15px 0; line-height: 1.1; }
.accent { color: var(--gold); }
.pill { background: var(--gold); color: var(--navy); padding: 5px 15px; border-radius: 20px; font-weight: 800; font-size: 0.8rem; }

/* Bento Grid & Cards */
.stats-section { margin-top: -50px; position: relative; z-index: 10; }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bento-item { background: #fff; padding: 30px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.highlight { background: var(--navy); color: #fff; }
.highlight h3 { color: var(--gold); font-size: 2.5rem; }
.wide { grid-column: span 2; }
.card-row { display: flex; gap: 20px; margin-top: 40px; }
.card { flex: 1; padding: 30px; background: var(--gray); border-radius: 12px; border-top: 4px solid var(--gold); }

/* Buttons & Footer */
.btn-primary { background: var(--gold); color: #fff !important; padding: 10px 20px; border-radius: 5px; }
.btn-white { background: #fff; color: var(--navy); padding: 15px 30px; text-decoration: none; border-radius: 5px; font-weight: 700; display: inline-block; margin-right: 15px; }
.btn-outline { border: 2px solid #fff; color: #fff; padding: 13px 30px; text-decoration: none; border-radius: 5px; font-weight: 700; display: inline-block; }
footer { background: var(--navy); color: #fff; padding: 50px 0; text-align: center; margin-top: 80px; }
.footer-logo { height: 100px; margin-bottom: 20px; filter: brightness(0) invert(1); }