
.eg215,
.eg215 * {
  box-sizing: border-box;
}

.eg215 {
  --navy: #092f62;
  --blue: #1765a9;
  --teal: #078991;
  --text: #26374a;
  --muted: #607084;
  --line: #dce5ee;
  --light: #f4f8fc;
  max-width: 1180px;
  margin: 0 auto;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.eg215 h2,
.eg215 h3,
.eg215 h4 {
  color: var(--navy);
  line-height: 1.3;
}

.eg215 h2 {
  margin: 0 0 18px;
  font-size: clamp(29px, 4vw, 42px);
}

.eg215 h3 {
  margin: 0 0 16px;
  font-size: 25px;
}

.eg215 h4 {
  margin: 0 0 10px;
  font-size: 19px;
}

.eg215 a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.eg215-section {
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}

.eg215-hero {
  padding: 50px 42px;
  color: #fff;
  background: linear-gradient(125deg, #082a59, #087b8e);
  border-radius: 18px;
}

.eg215-hero h2,
.eg215-hero a {
  color: #fff;
}

.eg215-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 13px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
}

.eg215-answer {
  max-width: 960px;
  margin: 0;
  color: #edf7ff;
  font-size: 18px;
}

.eg215-primary {
  margin-top: 23px;
  padding: 16px 19px;
  color: var(--navy);
  background: #fff;
  border-left: 5px solid #f09a38;
  border-radius: 7px;
}

.eg215-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.eg215-badge {
  padding: 7px 13px;
  color: var(--navy);
  background: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.eg215-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.eg215-fact {
  padding: 20px;
  background: #fff;
  border-right: 1px solid var(--line);
}

.eg215-fact:nth-child(4n) {
  border-right: 0;
}

.eg215-fact span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.eg215-fact strong {
  color: var(--navy);
}

.eg215-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
  margin-top: 23px;
}

.eg215-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 11px;
  box-shadow: 0 8px 24px rgba(9,47,98,.06);
}

.eg215-card p:last-child {
  margin-bottom: 0;
}

.eg215-card strong {
  color: var(--navy);
}

.eg215-label {
  display: block;
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.eg215-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.eg215-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.eg215-table th,
.eg215-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.eg215-table th {
  width: 29%;
  color: var(--navy);
  background: #edf4fa;
}

.eg215-table tr:last-child th,
.eg215-table tr:last-child td {
  border-bottom: 0;
}

.eg215-note {
  margin-top: 21px;
  padding: 17px 20px;
  color: var(--navy);
  background: #eaf5ff;
  border-left: 4px solid var(--blue);
  border-radius: 5px;
}

.eg215-warning {
  padding: 25px;
  background: #fff7e9;
  border: 1px solid #efd0a0;
  border-radius: 11px;
}

.eg215-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 26px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.eg215-checklist li {
  position: relative;
  padding-left: 27px;
}

.eg215-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.eg215-boundary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
}

.eg215-boundary > div {
  padding: 25px;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.eg215-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.eg215-link {
  display: block;
  padding: 22px;
  color: var(--text) !important;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  text-decoration: none !important;
}

.eg215-link:hover {
  border-color: var(--teal);
}

.eg215-link strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 18px;
}

.eg215-link span {
  color: var(--muted);
  font-weight: 400;
}

.eg215-faq details {
  margin-bottom: 11px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.eg215-faq summary {
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
}

.eg215-faq details p {
  margin: 10px 0 0;
}

.eg215-cta {
  padding: 42px 32px;
  color: #fff;
  text-align: center;
  background: var(--navy);
  border-radius: 16px;
}

.eg215-cta h3 {
  color: #fff;
  font-size: 29px;
}

.eg215-cta p {
  max-width: 820px;
  margin: 0 auto 22px;
  color: #e6effa;
}

.eg215-button {
  display: inline-block;
  padding: 13px 23px;
  color: var(--navy) !important;
  background: #fff;
  border-radius: 6px;
  text-decoration: none !important;
}

@media (max-width: 900px) {
  .eg215-facts,
  .eg215-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .eg215-hero {
    padding: 35px 22px;
  }

  .eg215-facts,
  .eg215-grid,
  .eg215-boundary,
  .eg215-links,
  .eg215-checklist {
    grid-template-columns: 1fr;
  }

  .eg215-fact {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .eg215-section {
    padding: 38px 0;
  }
}
