:root {
  --ash26-blue: #123f8c;
  --ash26-blue-2: #245ec2;
  --ash26-green: #158a55;
  --ash26-green-dark: #0b5b35;
  --ash26-ink: #172033;
  --ash26-muted: #56647a;
  --ash26-line: #d8e3ef;
  --ash26-blue-soft: #f1f6ff;
  --ash26-green-soft: #edf9f3;
  --ash26-white: #ffffff;
}

.ash26,
.ash26 * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.ash26 {
  color: var(--ash26-ink);
  font-size: 17px;
  line-height: 1.65;
}

.ash26 h1,
.ash26 h2,
.ash26 h3 {
  color: var(--ash26-ink);
  line-height: 1.15;
  margin: 0 0 16px;
}

.ash26 h1 {
  color: var(--ash26-white) !important;
  font-size: clamp(38px, 6vw, 68px);
  max-width: 900px;
}

.ash26 h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.ash26 h3 {
  font-size: 23px;
}

.ash26 p {
  margin: 0 0 18px;
}

.ash26 a {
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.ash26-hero {
  align-items: center;
  background-color: var(--ash26-blue);
  background-position: center;
  background-size: cover;
  display: flex;
  min-height: 520px;
  padding: 72px 24px;
  position: relative;
}

.ash26-hero::before {
  background: linear-gradient(90deg, rgba(18, 63, 140, .96), rgba(11, 91, 53, .82) 62%, rgba(18, 63, 140, .35));
  content: "";
  inset: 0;
  position: absolute;
}

.ash26-hero__inner,
.ash26-band__inner {
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  width: 100%;
}

.ash26-eyebrow {
  color: #bfe5ff !important;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.ash26-hero p {
  color: var(--ash26-white) !important;
  font-size: 21px;
  max-width: 760px;
}

.ash26-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ash26-btn {
  border: 2px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  padding: 12px 20px;
  text-decoration: none !important;
}

.ash26-btn--primary {
  background: var(--ash26-green);
  color: var(--ash26-white) !important;
}

.ash26-btn--secondary {
  background: var(--ash26-white);
  color: var(--ash26-blue) !important;
}

.ash26-btn--outline {
  border-color: var(--ash26-blue);
  color: var(--ash26-blue) !important;
}

.ash26-band {
  padding: 72px 24px;
}

.ash26-band--blue {
  background: var(--ash26-blue-soft);
}

.ash26-band--green {
  background: var(--ash26-green-soft);
}

.ash26-band--dark {
  background: var(--ash26-blue);
  color: var(--ash26-white);
}

.ash26-band--dark h2,
.ash26-band--dark h3 {
  color: var(--ash26-white) !important;
}

.ash26-band--dark p {
  color: var(--ash26-white);
}

.ash26-lead {
  color: var(--ash26-muted);
  font-size: 20px;
  max-width: 820px;
}

.ash26-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.ash26-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ash26-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ash26-card {
  background: var(--ash26-white);
  border: 1px solid var(--ash26-line);
  border-radius: 8px;
  min-width: 0;
  padding: 28px;
}

.ash26-card,
.ash26-card * {
  overflow-wrap: anywhere;
}

.ash26-card--accent {
  border-top: 5px solid var(--ash26-green);
}

.ash26-card__label {
  color: var(--ash26-blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.ash26-list {
  margin: 16px 0 0;
  padding-left: 22px;
}

.ash26-list li {
  margin-bottom: 9px;
}

.ash26-table-wrap {
  overflow-x: auto;
}

.ash26-table {
  border-collapse: collapse;
  margin-top: 28px;
  min-width: 720px;
  width: 100%;
}

.ash26-table th,
.ash26-table td {
  border: 1px solid var(--ash26-line);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

.ash26-table th {
  background: var(--ash26-blue);
  color: var(--ash26-white);
}

.ash26-steps {
  counter-reset: steps;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
}

.ash26-step {
  border-left: 4px solid var(--ash26-green);
  padding: 6px 18px;
}

.ash26-step::before {
  color: var(--ash26-blue);
  content: counter(steps, decimal-leading-zero);
  counter-increment: steps;
  display: block;
  font-size: 28px;
  font-weight: 900;
}

.ash26-faq {
  border-bottom: 1px solid var(--ash26-line);
  padding: 22px 0;
}

.ash26-faq summary {
  color: var(--ash26-blue);
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
}

.ash26-faq p {
  margin: 14px 0 0;
  max-width: 900px;
}

.ash26-notice {
  background: var(--ash26-blue-soft);
  border-left: 4px solid var(--ash26-green);
  border-radius: 6px;
  padding: 18px 20px;
}

.ash26-contact {
  font-style: normal;
}

.ash26 .frm-fluent-form {
  background: var(--ash26-white);
  border: 1px solid var(--ash26-line);
  border-radius: 8px;
  margin-top: 30px;
  padding: 28px;
}

@media (max-width: 900px) {
  .ash26-grid,
  .ash26-grid--4,
  .ash26-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .ash26-hero {
    min-height: 460px;
    padding: 56px 20px;
  }

  .ash26-hero p {
    font-size: 18px;
  }

  .ash26-band {
    padding: 52px 20px;
  }

  .ash26-grid,
  .ash26-grid--2,
  .ash26-grid--4,
  .ash26-steps {
    grid-template-columns: 1fr;
  }

  .ash26-actions,
  .ash26-btn {
    width: 100%;
  }

  .ash26-card {
    padding: 22px;
  }

  .ash26 .frm-fluent-form .ff-btn.ff-btn-submit {
    display: block !important;
    max-width: 100% !important;
    white-space: normal !important;
    width: 100% !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ash26 * {
    scroll-behavior: auto !important;
  }
}
