:root {
  --navy: #0b2338;
  --gold: #d8b44a;
  --cream: #f6f4ee;
  --text: #1f2933;
  --muted: #5f6b76;
  --line: #e5e1d6;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

/* PAGE CENTERING FIX */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);

  display: flex;
  justify-content: center;
}

/* MAIN WRAPPER */
.site {
  width: 100%;
  max-width: 880px;
  padding: 32px 20px 40px;
}

/* BRAND / TOP */
.brand {
  text-align: center;
}

/* LOGO */
.logo {
  width: 150px;
  height: auto;
  margin-bottom: 16px;
}

/* HEADINGS */
h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: 0.02em;
}

/* LICENSE */
.license {
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* NAV */
.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 22px 0 28px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  color: var(--navy);
  text-decoration: none;
}

.nav a:hover,
.nav a.active {
  border-bottom-color: var(--gold);
}

/* HERO LINES */
.hero-line {
  margin: 26px auto 8px;
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
}

.area-line {
  margin: 0 auto 30px;
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
}

/* CONTENT BOX (INNER PAGES) */
.content {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}

/* SECTION HEADERS */
.content h2 {
  color: var(--navy);
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.content h2:first-child {
  margin-top: 0;
}

/* PARAGRAPHS */
.content p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 14px;
}

/* CTA BUTTONS */
.cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-block;
  min-width: 190px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
}

.primary {
  background: var(--navy);
  color: var(--white);
}

.secondary {
  background: var(--gold);
  color: var(--navy);
}

/* CONTACT CENTERING */
.contact-block {
  text-align: center;
}

/* FOOTER */
.footer {
  max-width: 720px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 560px) {
  .logo {
    width: 135px;
  }

  .content {
    padding: 22px 18px;
  }

  .button {
    width: 100%;
  }

  .nav {
    gap: 12px;
  }
}