* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Inter, system-ui, sans-serif;
  color: #0b1f3a;
  background: #fff;
  line-height: 1.65;
}
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}
.text-narrow h2 {
  font-size: 2rem;
  line-height: 2.4rem;
  padding-bottom: 26px;
  text-align: center;
}
.text-narrow p {
  text-align: center;
}

.header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  height: 36px;
}
.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #0b1f3a;
  font-weight: 500;
}
.nav .btn-outline {
  margin-left: 28px;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero .img_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero .img_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.65),
    rgba(15, 23, 42, 0.85)
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero h1 {
  font-size: 2.9rem;
  line-height: 1.4;
  margin-bottom: 18px;
}
.hero p {
  font-size: 18px;
  color: #e5e7eb;
  margin-bottom: 28px;
}

.section {
  padding: 90px 0;
}
.section.alt {
  background: #f8fafc;
}
.section-title {
  font-size: 32px;
  margin-bottom: 22px;
  text-align: center;
  color: #0b1f3a;
}
.section-lead {
  text-align: center;
  margin: auto;
  padding-bottom: 55px;
  color: #475569;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}
.service h3 {
  margin-bottom: 10px;
}
.service p {
  color: #475569;
}

.image-break {
  position: relative;
  height: 55vh;
  overflow: hidden;
}
.image-break-bg {
  position: absolute;
  inset: -10%;
  background: url('parallax.webp') center/cover no-repeat;
  transform: translateY(0);
}

.bullet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  list-style: disc;
  padding-left: 20px;
  color: #475569;
  list-style-type: none;
}
.bullet-grid li {
  padding: 20px 30px 15px;
  text-align: center;
  position: relative;
  color: #0b1f3a;
  display: flex;
  align-items: center;
  box-shadow: 0px 7px 16px 0px rgba(50, 50, 50, 0.2);
  background-color: #fff;
  border-radius: 15px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

.cta {
  text-align: center;
  padding: 100px 0;
  background: #0b1f3a;
  color: #fff;
}
.cta p {
  color: #cbd5f5;
  margin-bottom: 28px;
}

.footer {
  border-top: 1px solid #e5e7eb;
  padding: 24px 0;
  color: #64748b;
  font-size: 14px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 15px 32px;
  background: #2563eb;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}
.btn-outline {
  padding: 10px 18px;
  border: 1px solid #2563eb;
  color: #2563eb;
  border-radius: 6px;
  text-decoration: none;
}
.balance-sheets a {
	display: block;
	color: #64748b;
}
.contact-details {
	margin-top: 20px;
}
.contact-details p {
	margin-bottom: 0;
}
.contact-details a {
	color: #fff;
}