html, body {
  background-color: #042670;
  overscroll-behavior: none;
}

:root {
  --navy-900: #021338;
  --navy-800: #042670;
  --blue-600: #0036c8;
  --sand-100: #fff7d6;
  --sun-500: #ffd500;
  --sun-600: #f5c400;
  --ocean-100: #e8f1ff;
  --stone-900: #0f172a;
  --white: #ffffff;
  --shadow: 0 10px 24px rgba(2, 19, 56, 0.16);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Verdana", "Arial", sans-serif;
  color: var(--navy-800);
  background: repeating-linear-gradient(90deg, #FFFCD7 0px, #FFFCD7 90px, #DCDCDC 90px, #DCDCDC 180px);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1040px, 92vw);
  margin: 0 auto;
}

.topbar {
  background-image: url("/assets/images/header.png"), linear-gradient(120deg, #042670, #042670);
  background-size: auto 100%, 100% 100%;
  background-position: left center, left center;
  background-repeat: no-repeat, no-repeat;
  color: var(--white);
  padding: 20px 0 18px;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
}

.brand-mark {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--sun-500);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-mark img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.brand-title {
  font-family: "Trebuchet MS", "Georgia", serif;
  font-size: clamp(24px, 4.0vw, 25.2px);
  font-weight: 600;
  line-height: 1.1;
}

.brand-sub {
  text-transform: uppercase;
  font-size: clamp(11px, 1.6vw, 11.5px);
  letter-spacing: 0.06em;
  opacity: 0.9;
}

.brand-right {
  text-align: right;
  width: 100%;
}

.brand-text {
  width: 250px;
  text-align: right;
  display: grid;
  justify-items: end;
}

.brand-title,
.brand-sub {
  width: 100%;
  text-align: right;
}

.nav-scroll {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 8px 4px;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.nav-scroll::after {
  content: "";
  flex: 0 0 12px;
}

.mobile-nav {
  display: none;
}

@media (min-width: 700px) {
  .mobile-nav {
    display: none;
  }
}

@media (max-width: 699px) {
  .nav-scroll {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }
}

.nav-chip {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-chip.active,
.nav-chip:hover {
  background: var(--sun-500);
  color: var(--navy-900);
  text-decoration: none;
}

.hero {
  padding: 28px 0 40px;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--navy-800);
  font-weight: 600;
}

.hero h1 {
  font-family: "Trebuchet MS", "Georgia", serif;
  font-size: clamp(28px, 5vw, 46px);
  margin: 0;
  color: var(--navy-900);
}

.hero p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.cta-row {
  display: grid;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  background: var(--sun-500);
  color: var(--navy-900);
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.button.secondary {
  background: var(--navy-800);
  color: var(--white);
}

.button.outline {
  background: transparent;
  border: 2px solid var(--navy-800);
  color: var(--navy-800);
}

.info-grid {
  display: grid;
  gap: 16px;
  margin: 18px 0 0;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow);
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--navy-800);
}

.section {
  padding: 20px 0 28px;
}

.section h2 {
  font-family: "Trebuchet MS", "Georgia", serif;
  color: var(--navy-900);
  font-size: 24px;
  margin: 0 0 16px;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card {
  background: var(--white);
  padding: 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
  color: var(--navy-800);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ocean-100);
  color: var(--navy-900);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table th,
.table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e6edf5;
  text-align: left;
}

.table th {
  color: var(--navy-800);
}

.form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-800);
}

.field input,
.field select,
.field textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7e2f0;
  font-size: 14px;
  font-family: inherit;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-grid {
  display: grid;
  gap: 12px;
}

.notice {
  background: var(--sand-100);
  border-left: 4px solid var(--sun-600);
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
}

.footer {
  margin-top: auto;
  background: var(--navy-900);
  color: var(--white);
  padding: 26px 0;
}

.footer-grid {
  display: grid;
  gap: 16px;
}

.footer a {
  color: var(--sun-500);
}

@media (min-width: 700px) {
  .nav-scroll {
    flex-wrap: wrap;
    overflow: visible;
  }

  .hero-card {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .cta-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .nav-scroll {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .nav-chip {
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  body {
    padding-bottom: 70px;
  }

  .mobile-nav {
    position: fixed;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 70px;
    display: flex;
    gap: 2px;
    background: transparent;
    z-index: 10;
  }

  .nav-btn {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: 10px;
    color: #000000;
    background: #f2f2f2;
    border-radius: 14px;
    line-height: 1.1;
  }

  .nav-icon {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 4px;
    opacity: 0.75;
  }
}

@media (min-width: 980px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}






















