:root {
  --navy: #163a63;
  --navy-dark: #0f2742;
  --orange: #e67e22;
  --orange-dark: #cc6d18;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --light-gray: #e5ebf2;
  --text: #1e2a36;
  --muted: #5c6875;
  --shadow: 0 12px 30px rgba(10, 30, 60, 0.08);
  --radius: 18px;
  --container: 1140px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 2rem, 780px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--light-gray);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy-dark);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.site-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--navy-dark);
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--navy);
}

.nav-cta {
  padding: 0.8rem 1rem;
  background: var(--orange);
  color: var(--white) !important;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--orange-dark);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.35rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--navy-dark);
  border-radius: 999px;
}

.hero {
  padding: 4.5rem 0 3rem;
  background:
    linear-gradient(135deg, rgba(22, 58, 99, 0.06), rgba(230, 126, 34, 0.08)),
    var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 0.8rem;
}

.hero h1,
.section-heading h2 {
  margin: 0 0 1rem;
  line-height: 1.15;
  color: var(--navy-dark);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 700px;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.hero-buttons,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points li {
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
  color: var(--muted);
}

.hero-points li::before {
  content: "•";
  color: var(--orange);
  position: absolute;
  left: 0;
  top: 0.3rem;
  font-size: 1.25rem;
  line-height: 1;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.hero-image-block {
  width: 100%;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(rgba(16, 39, 66, 0.18), rgba(16, 39, 66, 0.45)),
    url("hero.png") center/cover no-repeat;
  display: flex;
  align-items: flex-end;
}

.image-overlay {
  padding: 2rem;
  color: var(--white);
  width: 100%;
}

.image-badge {
  display: inline-block;
  background: rgba(230, 126, 34, 0.95);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.image-overlay h2 {
  margin: 0 0 0.7rem;
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--white);
}

.image-overlay p {
  margin: 0;
  max-width: 420px;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--off-white);
}

.section-highlight {
  background: linear-gradient(135deg, rgba(22, 58, 99, 0.08), rgba(230, 126, 34, 0.12));
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.center,
.center-text {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}

.card-grid {
  display: grid;
  gap: 1.2rem;
}

.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.info-card,
.details-panel,
.contact-form {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.info-card h3,
.detail-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--navy-dark);
  font-size: 1.1rem;
}

.info-card p,
.detail-item p,
.small-note,
.center-text {
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  align-items: start;
}

.check-list,
.footer-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.check-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.6rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.4rem;
  color: var(--orange);
  font-weight: 700;
}

.details-panel {
  display: grid;
  gap: 1rem;
}

.detail-item:not(:last-child) {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-gray);
}

.step-list {
  margin: 0;
  padding-left: 1.25rem;
}

.step-list li {
  margin-bottom: 0.8rem;
}

.small-note {
  margin-top: 1.25rem;
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-details p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.contact-item span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 0.3rem;
}

.contact-item p {
  margin: 0;
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--navy-dark);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid #cfd8e3;
  border-radius: 12px;
  font: inherit;
  color: var(--text);
  background: var(--white);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(22, 58, 99, 0.12);
}

.required-note {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.required {
  color: #c0392b;
  font-weight: 700;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.hidden-field {
  display: none;
}

.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  padding-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
  color: var(--white);
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1rem 0 1.5rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}

.legal-page h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--navy-dark);
  line-height: 1.2;
}

.legal-page h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--navy-dark);
  font-size: 1.3rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page ul {
  padding-left: 1.2rem;
}

.legal-page a {
  word-break: break-word;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .three-col,
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-image-block {
    min-height: 320px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .site-nav.active {
    display: flex;
  }

  .site-nav a {
    padding: 0.7rem 0;
  }

  .nav-cta {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.5rem 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .site-nav {
    top: 76px;
  }

  .site-logo {
    width: 44px;
    height: 44px;
  }

  .logo-text {
    font-size: 0.98rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .image-overlay {
    padding: 1.25rem;
  }

  .image-overlay h2 {
    font-size: 1.45rem;
  }

  .info-card,
  .details-panel,
  .contact-form {
    padding: 1.2rem;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-logo {
    width: 60px;
    height: 60px;
  }

 .single-card {
  grid-template-columns: 1fr;
  max-width: 520px;
  margin: 0 auto;
}
}