.page-header {
  position: relative;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 85% at 50% 52%, rgba(7, 28, 48, 0.74) 0%, rgba(7, 28, 48, 0.42) 55%, rgba(7, 28, 48, 0.3) 100%), linear-gradient(180deg, rgba(7, 28, 48, 0.5) 0%, rgba(7, 28, 48, 0.28) 40%, rgba(7, 28, 48, 0.7) 100%);
}
.page-header .page-header_wrapper,
.page-header .page-header_content,
.page-header .page-header_breadcrumbs {
  position: relative;
  z-index: 1;
}
.page-header .page-header_title {
  color: #fff !important;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.45);
}
.page-header .page-header_breadcrumbs,
.page-header .page-header_breadcrumbs *,
.page-header .page-header_breadcrumbs a {
  color: rgba(255, 255, 255, 0.92) !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.page-header .page-header_breadcrumbs a:hover {
  color: #fff !important;
}

#main-content .wpb_text_column {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
#main-content h2 {
  margin: 44px 0 16px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #24313d;
}
#main-content h2:first-child {
  margin-top: 0;
}
#main-content h3 {
  margin: 30px 0 12px;
  font-size: 19px;
  font-weight: 800;
  color: #12395c;
}
#main-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #24313d;
}
#main-content ul li {
  font-size: 16px;
  line-height: 1.7;
}

.page-lead {
  max-width: 820px;
  margin: 0 auto 36px;
  padding-left: 20px;
  border-left: 4px solid #e8833a;
  font-size: 19px;
  line-height: 1.65;
  color: #24313d;
}

.page-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto 40px;
}

.page-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e4ebf1;
  border-top: 4px solid #1d6d9c;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(18, 57, 92, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.page-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(18, 57, 92, 0.1);
}
.page-card--orange {
  border-top-color: #e8833a;
}
.page-card--vert {
  border-top-color: #3f9070;
}
.page-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  color: #24313d;
}
.page-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #667685;
}

.page-cta {
  max-width: 820px;
  margin: 44px auto 0;
  padding: 28px 30px;
  border: 1px solid #f3ddc4;
  border-radius: 16px;
  background: linear-gradient(135deg, #fffaf4 0%, #fef4e9 100%);
  text-align: center;
}
.page-cta h2 {
  margin: 0 0 8px !important;
  font-size: 22px;
}
.page-cta p {
  margin: 0 0 18px;
  color: #667685;
}
.page-cta a.page-btn {
  display: inline-block;
  margin: 0 6px 8px;
  padding: 12px 26px;
  border-radius: 999px;
  background: #e8833a;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.16s ease, transform 0.16s ease;
}
.page-cta a.page-btn:hover {
  background: #e46f1b;
  transform: translateY(-2px);
}
.page-cta a.page-btn--ghost {
  background: transparent;
  border: 2px solid rgba(18, 57, 92, 0.25);
  color: #12395c !important;
}
.page-cta a.page-btn--ghost:hover {
  background: rgba(18, 57, 92, 0.06);
}

@media (max-width: 767px) {
  #main-content h2 {
    font-size: 22px;
  }

  .page-lead {
    font-size: 17px;
  }
}