:root{
  --hunt-blue: #0b4f8a;
  --hunt-red:  #d22630;

  --text: #0f172a;
  --muted: #475569;

  --border: rgba(2, 6, 23, 0.12);
  --radius: 14px;

  /* Background photo settings */
  --overlay: 0.70;           /* lower = photo shows more (try 0.84–0.92) */
  --bg-position: center;     /* try: center 60% to push image down */
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
}

/* Full-page background image + white overlay (no repeat) */
body{
  background-image:
    linear-gradient(rgba(255,255,255,var(--overlay)), rgba(255,255,255,var(--overlay))),
    url("Tower.jpg");

  background-repeat: no-repeat;
  background-position: var(--bg-position);
  background-size: cover;
  background-attachment: fixed;

  background-color: #ffffff;
}

.container{
  width: min(1040px, 92%); /* a bit wider so 3 steps fit nicely */
  margin: 0 auto;
  clear:both;
  text-align:center;
}

.page{
  min-height: 100vh;
}

/* HERO */
.hero{
  padding: 10px 0 0px;
  text-align: center;
}

/* Logo (uses your uploaded Designer.png) */
.page-logo{
  display: block;
  margin: 0 auto 0px;
  max-height: 160px;
  width: 90%;
  object-fit:cover;
  

  /* Optional: helps readability on a photo background */
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
}

/* Typography */
h1{
  margin: 2px 0 6px;
  font-size: 30px;
  line-height: 1.1;
}

.sub{
  margin: 0 auto 8px;
  max-width: 68ch;
  color: var(--muted);
  font-size: 16px;
}

.fine{
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

/* Sections */
.section{
  padding: 15px 0;
}

h2{
  margin: 0 0 8px;
  font-size: 24px;
}

.lead{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

/* ✅ Steps = 3 across */
.steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Card style */
.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;

  /* translucent white for readability over photo */
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(2px);
}

.card h3{
  margin: 0 0 6px;
  font-size: 15px;
}

.card p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

/* ✅ Widget = bigger */
.widget-wrap{
  max-width: 650px; /* narrower widget area */
  margin: 0 auto;
}

.widget{
  width: 100%;
  height: 360px;     /* smaller widget */
  border: 0;
  display: block;

  /* subtle container look without adding an extra "box" */
  border-radius: 12px;
}

/* Red security note */
.note{
  max-width: 980px;
  margin: 12px auto 0;
  color: var(--hunt-red);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.35;
}

/* Footer */
.footer{
  padding: 0px 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

/* ✅ Responsive: ONLY stack steps on smaller screens
   (This keeps 3 across for most laptop widths) */
@media (max-width: 650px){
  h1{ font-size: 32px; }
  .page-logo{ max-height: 65px; }

  .steps{
    grid-template-columns: 1fr;
  }

  .widget{
    height: 600px; /* more room on phones */
  }

  .widget-wrap,
  .note{
    max-width: 100%;
  }

  /* lighten overlay a bit on small screens for readability */
  :root{
    --overlay: 0.86;
  }
}
``