
:root{--brand:#0f4c81;--brand2:#6bb3d6;--border:#e5e7eb}
*{box-sizing:border-box} body{font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;margin:0;color:#111}
a{color:var(--brand);text-decoration:none}
header,footer{border-bottom:1px solid var(--border)}
.container{max-width:1100px;margin:0 auto;padding:24px}
.section{padding:24px 0}
.grid{display:grid;gap:18px}
.cols-2{grid-template-columns:repeat(2,1fr)}
.cols-3{grid-template-columns:repeat(3,1fr)}
.card{border:1px solid var(--border);border-radius:16px}
.pad{padding:18px}
.hero h1{font-size:40px;margin:0}
.hero p{font-size:18px;color:#333}
.btn{display:inline-block;padding:12px 18px;border-radius:12px;border:1px solid var(--border);margin-right:8px}
.btn.primary{background:var(--brand);color:#fff;border-color:var(--brand)}
.small{color:#555;font-size:14px}
@media(max-width:800px){.cols-2,.cols-3{grid-template-columns:1fr} .hero h1{font-size:30px}}


/* Logo prominence */
.logo { display:inline-flex; align-items:center; margin-right:16px; }
.logo img { height:84px; width:auto; }
@media (max-width: 640px){ .logo img { height:64px; } }

.hero-logo-badge img{ filter:none; }
@media (max-width:640px){ .hero-logo-badge img{ filter:none; } }

/* Logo clean blend */
.hero-logo-badge img{ background:transparent; }

/* Header logo prominence */
header .logo img {
  height: 96px;
  width: auto;
}

/* Hero headline single-line + divider */
.hero-headline {
  white-space: nowrap;
}

.hero-divider {
  width: 100%;
  height: 4px;
  background-color: #1f2f46; /* navy blue */
  margin: 14px 0 24px 0;
}

@media (max-width: 900px) {
  .hero-headline {
    white-space: normal;
  }
  header .logo img {
    height: 72px;
  }
}

/* Centered prominent logo */
.header-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 0;
}

header .logo img {
  height: 120px;
  width: auto;
}

@media (max-width: 900px) {
  header .logo img {
    height: 88px;
  }
}

/* HARD CENTER HEADER LOGO */
header {
  text-align: center;
}

header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

header .logo {
  display: block;
  margin: 0 auto 10px auto;
}

header .logo img {
  height: 150px;
  width: auto;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  header .logo img {
    height: 110px;
  }
}

/* Header layout: logo right, larger */
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  order: 2;
}

header .logo img {
  height: 140px;
  width: auto;
}

header nav, 
header .nav {
  order: 1;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  header .logo img {
    height: 110px;
  }
}

/* ===== Horizontal header layout ===== */
header {
  width: 100%;
}

header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

/* Navigation horizontal */
header nav,
header .nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}

/* Larger logo on right */
header .logo {
  order: 2;
}

header .logo img {
  height: 170px;
  width: auto;
}

/* Mobile adjustments */
@media (max-width: 900px) {
  header .container {
    flex-direction: column;
  }
  header nav,
  header .nav {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }
  header .logo img {
    height: 120px;
  }
}

/* ===== Logo scaled up 1.5x ===== */
header .logo img {
  height: 255px; /* was ~170px */
  width: auto;
}

@media (max-width: 900px) {
  header .logo img {
    height: 165px;
  }
}

/* ===== EXTRA LARGE LOGO (Brand-forward) ===== */
header .logo img {
  height: 320px; /* very prominent desktop */
  width: auto;
}

@media (max-width: 900px) {
  header .logo img {
    height: 200px;
  }
}

@media (max-width: 600px) {
  header .logo img {
    height: 150px;
  }
}
