* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2933;
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

/* Header */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-container {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: #16324f;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 15px;
  color: #334155;
  text-decoration: none;
  font-weight: 600;
}

.nav-links a:hover {
  color: #16324f;
}

/* Hero */

.hero {
  background: linear-gradient(135deg, #16324f 0%, #274c77 100%);
  color: #ffffff;
  padding: 110px 0;
}

.hero-content {
  max-width: 860px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: #dbeafe;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-text {
  max-width: 780px;
  margin: 28px 0 34px;
  font-size: 20px;
  color: #e5edf7;
}

.button {
  display: inline-block;
  background: #ffffff;
  color: #16324f;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.button:hover {
  background: #f1f5f9;
}

/* Sections */

.section {
  padding: 86px 0;
}

.section-light {
  background: #f8fafc;
}

.section-label {
  color: #274c77;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  color: #16324f;
  letter-spacing: -0.035em;
}

h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
  color: #16324f;
}

p {
  font-size: 17px;
}

.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.two-column p:first-child {
  margin-top: 0;
}

.callout-line {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 4px solid #274c77;
  font-weight: 700;
  color: #16324f;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-intro p:last-child {
  margin-bottom: 0;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.service-card p {
  margin-bottom: 0;
  color: #475569;
}

/* Testimonials */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  margin: 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  border-left: 5px solid #274c77;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.testimonial-card p {
  margin-top: 0;
  font-size: 19px;
  font-style: italic;
  color: #334155;
}

.testimonial-card footer {
  font-weight: 700;
  color: #16324f;
}

/* Contact */

.contact-section {
  background: #ffffff;
}

.contact-box {
  max-width: 850px;
  background: #16324f;
  color: #ffffff;
  border-radius: 22px;
  padding: 54px;
}

.contact-box .section-label,
.contact-box h2 {
  color: #ffffff;
}

.contact-box p {
  color: #e5edf7;
}

.contact-details {
  margin-top: 30px;
}

.contact-details p {
  margin: 10px 0;
}

.contact-details a {
  color: #ffffff;
  font-weight: 700;
}

/* Footer */

.site-footer {
  background: #0