@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Inter:wght@400;500;600;700&display=swap");
:root {
  --bs-primary: #0a3d62;
  --bs-primary-rgb: 10, 61, 98;
  --bs-link-color: #0a3d62;
  --bs-link-hover-color: #f18f01;
  --bs-body-bg: #f8fafc;
  --bs-body-color: #1f2933;
  --font-serif: 'Merriweather', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f7 100%);
  font-family: var(--font-sans);
  font-size: 1.025rem;
  line-height: 1.65;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.25;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.3;
}

.lead {
  font-size: 1.2rem;
  color: #3a4d63;
  font-weight: 500;
  line-height: 1.7;
}

a {
  transition: color 0.2s ease;
}
a:hover {
  color: var(--bs-link-hover-color);
  text-decoration: none;
}

.btn-primary {
  background-color: #0a3d62;
  border-color: #0a3d62;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}
.btn-primary:hover {
  background-color: #f18f01;
  border-color: #f18f01;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(241, 143, 1, 0.2);
}

.btn-light {
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn-light:hover {
  background-color: #f18f01;
  transform: translateY(-2px);
}

.brand-hero {
  background: linear-gradient(145deg, #0a3d62 0%, #134d7a 100%);
  border-radius: 0.75rem;
  color: #fff;
  padding: 3rem 2rem !important;
}
.brand-hero h1 {
  color: #fff;
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
}
.brand-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  line-height: 1.75;
}

.section-heading {
  border-bottom: 4px solid #f18f01;
  display: inline-block;
  padding-bottom: 0.5rem;
  font-size: 1.75rem;
  color: #0a3d62;
  font-family: var(--font-serif);
}

.card {
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(10, 61, 98, 0.08);
  transition: all 0.3s ease;
}
.card:hover {
  box-shadow: 0 6px 16px rgba(10, 61, 98, 0.12);
  transform: translateY(-2px);
}
.card .card-body {
  padding: 1.75rem;
}
.card .card-body h3, .card .card-body h4, .card .card-body h5 {
  color: #0a3d62;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}
.card .card-body p {
  color: #556575;
  font-size: 0.95rem;
  line-height: 1.6;
}

section {
  margin-bottom: 3.5rem;
}

.tag-pill {
  background-color: rgba(241, 143, 1, 0.15);
  border: 1px solid rgba(241, 143, 1, 0.3);
  border-radius: 999px;
  color: #f18f01;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.35rem 0.8rem;
  transition: all 0.2s ease;
}
.tag-pill:hover {
  background-color: rgba(241, 143, 1, 0.25);
  border-color: #f18f01;
}

/*# sourceMappingURL=site.css.map */
