body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f6f8;
  color: #0b0f14;
}

header {

  position: sticky;

  top: 0;

  z-index: 1000;

  padding: 10px 40px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  background: rgba(255, 255, 255, 0.82);

  backdrop-filter: blur(14px);

  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(30, 70, 32, 0.12);

  transition: padding 0.25s ease, background 0.25s ease;

}

.logo img {

  height: 120px;

  width: auto;

  display: block;

  transition: height 0.25s ease, opacity 0.25s ease;

}

main {
  padding: 40px 32px;
}

.hero {
  background: white;
  border: 1px solid #dbe3ef;
  border-radius: 24px;
  padding: 40px;
  max-width: 900px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.05;
  margin: 0 0 20px;
  color: #071a33;
}

.hero p {
  font-size: 20px;
  line-height: 1.5;
  color: #4a5568;
  max-width: 700px;
}

.button {
  display: inline-block;
  margin-top: 20px;
  background: #2E6F40;
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #071A33;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #1E4620;
}

header.scrolled {
  padding: 4px 40px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

header.scrolled .logo img {
  height: 60px;
  opacity: 0.92;
}

@media (max-width: 700px) {
  header {
    flex-direction: row;
    align-items: center;
    padding: 10px 20px;
  }

  .logo img {
    height: 86px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
  }

  nav a {
    font-size: 15px;
  }

  .hero {
    padding: 28px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }
}
.section {
  margin-top: 40px;
  max-width: 1100px;
}

.section-header h2 {
  font-size: 32px;
  color: #071a33;
  margin-bottom: 8px;
}

.section-header p {
  color: #4a5568;
  font-size: 18px;
}

.prepare-section {
  background: #0b2b20;
  color: white;
  border-radius: 24px;
  padding: 40px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.prepare-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -120px;
  top: -140px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.025), 0 0 0 84px rgba(255, 255, 255, 0.018);
  pointer-events: none;
}

.prepare-heading {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.prepare-heading .eyebrow {
  color: #b7d9a8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.prepare-heading h2 {
  color: white;
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.prepare-heading > p:last-child {
  color: #cedbd5;
  line-height: 1.55;
  margin: 0;
}

.prepare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.prepare-card {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  padding: 24px;
}

.step-number {
  align-items: center;
  background: #dbe8a6;
  border-radius: 50%;
  color: #0b2b20;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.prepare-card h3 {
  font-size: 20px;
  margin: 20px 0 10px;
}

.prepare-card p {
  color: #cedbd5;
  line-height: 1.55;
  margin: 0;
}

.prepare-callout {
  align-items: center;
  background: #f2f0df;
  border-radius: 16px;
  color: #071a33;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 16px;
  padding: 20px 24px;
}

.prepare-callout p {
  color: #4a5568;
  line-height: 1.45;
  margin: 5px 0 0;
}

.prepare-callout a {
  color: #1e4620;
  flex-shrink: 0;
  font-weight: 800;
  text-decoration: none;
}

.directory-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  margin-top: 24px;
}

.directory-results {
  min-width: 0;
}

.view-toggle {
  background: #eee7d7;
  border: 1px solid #d8c69a;
  border-radius: 999px;
  display: inline-flex;
  gap: 4px;
  margin-bottom: 16px;
  padding: 4px;
}

.view-toggle-button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: #071a33;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  padding: 10px 18px;
}

.view-toggle-button:hover {
  background: rgba(255, 255, 255, 0.58);
}

.view-toggle-button.is-active {
  background: #1e4620;
  box-shadow: 0 3px 10px rgba(7, 26, 51, 0.12);
  color: white;
}

.view-toggle-button:focus-visible {
  outline: 3px solid rgba(211, 188, 141, 0.65);
  outline-offset: 2px;
}

.directory-view[hidden] {
  display: none;
}

#locations-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-summary {
  background: #fffdf7;
  border: 1px solid #eadfbe;
  border-radius: 12px;
  color: #4a5568;
  line-height: 1.45;
  margin: 0 0 12px;
  padding: 12px 14px;
}

#locations-map {
  background: #e7ece7;
  border: 1px solid #d8c69a;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(7, 26, 51, 0.08);
  height: 620px;
  overflow: hidden;
  width: 100%;
}

#locations-map .leaflet-control-zoom a {
  color: #1e4620;
}

#locations-map .leaflet-control-attribution {
  color: #4a5568;
  font-size: 11px;
}

.remine-marker-shell {
  background: transparent;
  border: 0;
}

.remine-map-marker {
  align-items: center;
  background: #1e4620;
  border: 2px solid #fffefa;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 4px 10px rgba(7, 26, 51, 0.32);
  box-sizing: border-box;
  display: flex;
  height: 32px;
  justify-content: center;
  transform: rotate(-45deg);
  width: 32px;
}

.remine-map-marker span {
  background: #d3bc8d;
  border: 3px solid white;
  border-radius: 50%;
  box-sizing: border-box;
  height: 14px;
  width: 14px;
}

.map-popup {
  color: #071a33;
  font-family: Arial, Helvetica, sans-serif;
  min-width: 220px;
}

.map-popup h3 {
  color: #071a33;
  font-size: 19px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.map-popup p {
  line-height: 1.4;
  margin: 0 0 8px;
}

.map-popup-status {
  display: inline-block;
  border: 1px solid;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 7px;
}

.map-popup-status.is-verified {
  background: #e6f7ed;
  border-color: #7bd49b;
  color: #126b38;
}

.map-popup-status.is-unconfirmed {
  background: #f8efd8;
  border-color: #d3bc8d;
  color: #5f4314;
}

.map-popup-link {
  background: #1e4620;
  border-radius: 999px;
  color: white !important;
  display: inline-block;
  font-weight: 800;
  margin-top: 3px;
  padding: 9px 13px;
  text-decoration: none;
}

.filters {
  background: #fffdf7;
  border: 1px solid #eadfbe;
  border-radius: 18px;
  padding: 24px;
}

.location-card {
  background: #fffefa;
  border: 1px solid #eee6cf;
  border-radius: 18px;
  padding: 24px;
}

.filters {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.filters input[type="text"] {
  padding: 14px;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  font-size: 16px;
}

.filters label {
  font-weight: 700;
  color: #071a33;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.2;
}

.filters input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #1E4620;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-group-label {
  color: #68734f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0 0 2px;
  text-transform: uppercase;
}

.listing-filter-group {
  border-top: 1px solid #e4dbc2;
  padding-top: 18px;
}

.badge {
  display: inline-block;
  background: #fff3cd;
  color: #7a4b00;
  border: 1px solid #f2c94c;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
}

.location-card h3 {
  font-size: 26px;
  color: #071a33;
  margin-bottom: 8px;
}

.location-heading {
  align-items: center;
  display: flex;
  gap: 12px;
}

.location-heading h3 {
  margin: 0;
}

.location-logo-badge {
  align-items: center;
  background: #1e4620;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  flex: 0 0 36px;
  height: 36px;
  justify-content: center;
  padding: 3px;
  width: 36px;
}

.location-logo-center {
  align-items: center;
  background: white;
  border-radius: 50%;
  display: flex;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.location-logo-center img {
  display: block;
  max-height: 70%;
  max-width: 70%;
  object-fit: contain;
}

.warning {
  background: #e8f1ff;
  color: #071a33;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
}

@media (max-width: 800px) {
  .directory-layout {
    grid-template-columns: 1fr;
  }

  #locations-map {
    height: 500px;
  }

  .prepare-grid {
    grid-template-columns: 1fr;
  }

  .prepare-callout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .prepare-section {
    padding: 28px;
  }

  .prepare-heading h2 {
    font-size: 30px;
  }
}
.notice {
  margin-top: 24px;
  box-sizing: border-box;
  max-width: 982px;
  background: #f7f6f1;
  border: 1px solid #d3bc8d;
  color: #1f2933;
  padding: 18px 22px;
  border-radius: 16px;
  font-size: 16px;
  line-height: 1.5;
}
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.card-actions a {
  background: white;
  color: #1E4620;
  border: 2px solid #1E4620;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-block;
}

.card-actions a:hover {
  background: #1E4620;
  color: white;
}

.info-section {
  background: white;
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  padding: 32px;
}

.info-section h2 {
  font-size: 32px;
  color: #071a33;
  margin-top: 0;
}

.info-section p,
.info-section li {
  font-size: 18px;
  line-height: 1.6;
  color: #4a5568;
}

.info-section li {
  margin-bottom: 10px;
}
.badge.verified {
  background: #e6f7ed;
  color: #126b38;
  border-color: #7bd49b;
}

.badge.pending {
  background: #f8efd8;
  color: #5f4314;
  border-color: #d3bc8d;
}

.badge.not-confirmed,
.badge.needs-update {
  background: #f4f6f8;
  color: #4a5568;
  border-color: #cbd5e1;
}

footer {
  max-width: 1000px;
  width: calc(100% - 64px);
  margin: 48px auto 0;
  padding: 24px 28px;
  background: rgba(7, 26, 51, 0.96);
  color: white;
  border-radius: 22px;
  border: 1px solid rgba(211, 188, 141, 0.35);
  box-shadow: 0 18px 40px rgba(7, 26, 51, 0.12);
  box-sizing: border-box;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

footer h2 {
  margin: 0 0 14px;
  font-size: 28px;
}

footer p {
  max-width: 900px;
  margin: 0 0 10px;
  line-height: 1.5;
  font-size: 18px;
}

.footer-small {
  color: #dbe3ef;
  font-size: 15px;
}

.location-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-card h3 {
  margin-top: 6px;
  margin-bottom: 0;
}

.location-card p {
  margin: 0;
  line-height: 1.45;
}

.location-card .warning {
  margin-top: 6px;
}

.card-actions {
  margin-top: 8px;
}

.secondary-button {
  background: white;
  color: #1E4620;
  border: 2px solid #1E4620;
  margin-left: 10px;
}

@media (max-width: 600px) {
  main {
    padding: 24px 16px;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
  }

  .logo img {
    height: 92px;
  }

  header.scrolled .logo img {
    height: 52px;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
  }

  nav a {
    font-size: 15px;
  }

  .hero {
    padding: 28px 24px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .button {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .secondary-button {
    margin-left: 0;
    margin-top: 10px;
  }

  .card-actions a {
    width: 100%;
    text-align: center;
  }

  .view-toggle {
    box-sizing: border-box;
    display: flex;
    width: 100%;
  }

  .view-toggle-button {
    flex: 1;
  }

  #locations-map {
    border-radius: 14px;
    height: 430px;
  }

  .location-logo-badge {
    flex-basis: 34px;
    height: 34px;
    width: 34px;
  }

  footer {
    width: calc(100% - 32px);
    margin: 40px auto 0;
    padding: 22px 20px;
  }
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  margin-top: 8px;
}

.card-footer .card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}

.card-footer .badge {
  margin-left: auto;
  width: auto;
  min-width: fit-content;
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  align-self: center;
  border-radius: 6px;
}

.directory-layout {
  align-items: start;
}

.filters {
  height: fit-content;
  align-self: start;
}

/* Shared navigation and keyboard states */
.logo a {
  display: block;
}

.site-nav a {
  border-radius: 8px;
  padding: 8px 10px;
}

.site-nav a.nav-active {
  background: #edf3e8;
  box-shadow: inset 0 -2px 0 #d3bc8d;
  color: #1e4620;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid #d3bc8d;
  outline-offset: 3px;
}

.section,
.epr-section {
  scroll-margin-top: 110px;
}

/* EPR education page */
.epr-main {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1224px;
  padding: 40px 32px 0;
}

.epr-hero,
.epr-section,
.epr-closing-card {
  border-radius: 24px;
  box-sizing: border-box;
  margin-top: 24px;
}

.epr-hero {
  align-items: center;
  background: #0b2b20;
  color: white;
  display: block;
  min-height: 520px;
  overflow: hidden;
  padding: 56px;
  position: relative;
}

.epr-hero::before {
  background: rgba(211, 188, 141, 0.08);
  border-radius: 50%;
  content: "";
  height: 340px;
  left: -190px;
  position: absolute;
  top: -210px;
  width: 340px;
}

.epr-hero-copy {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.epr-eyebrow {
  color: #b7d9a8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.epr-eyebrow-dark {
  color: #68734f;
}

.epr-hero h1 {
  font-size: clamp(42px, 5vw, 66px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 24px;
  max-width: 760px;
}

.epr-hero-copy > p:not(.epr-eyebrow) {
  color: #d8e3de;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
  margin: 0 0 10px;
  max-width: 720px;
}

.epr-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  margin-top: 22px;
  padding: 13px 18px;
  text-decoration: none;
}

.epr-button-light {
  background: #f8f6ec;
  color: #1e4620;
}

.epr-button-light:hover {
  background: #dbe8a6;
}

.epr-hero-mark {
  align-items: center;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  max-width: none;
  opacity: 0.52;
  pointer-events: none;
  position: absolute;
  right: -55px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  z-index: 0;
}

.epr-orbit {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  inset: 0;
  position: absolute;
}

.epr-orbit-one {
  box-shadow: 0 0 0 34px rgba(255, 255, 255, 0.035), 0 0 0 68px rgba(255, 255, 255, 0.02);
}

.epr-orbit-two {
  border-color: rgba(211, 188, 141, 0.45);
  inset: 24%;
}

.epr-loop-symbol {
  align-items: center;
  background: #dbe8a6;
  border-radius: 50%;
  color: #0b2b20;
  display: flex;
  font-size: 68px;
  font-weight: 700;
  height: 118px;
  justify-content: center;
  line-height: 1;
  position: relative;
  width: 118px;
}

.epr-text-glyph {
  font-family: Arial, Helvetica, sans-serif;
  font-variant-emoji: text;
}

.epr-section {
  border: 1px solid #dbe3ef;
  padding: 40px;
}

.epr-section-cream {
  background: #fffdf7;
  border-color: #eadfbe;
}

.epr-responsibility,
.epr-framework {
  background: white;
}

.epr-section-dark {
  background: #0b2b20;
  border-color: #1b4636;
  color: white;
  overflow: hidden;
  position: relative;
}

.epr-section-dark::after {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.025);
  content: "";
  height: 240px;
  position: absolute;
  right: -130px;
  top: -130px;
  width: 240px;
}

.epr-section-heading {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.epr-section-heading h2,
.epr-closing-card h2 {
  color: #071a33;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 14px;
}

.epr-section-heading > p:last-child {
  color: #4a5568;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.48;
  margin: 0;
}

.epr-heading-light h2 {
  color: white;
}

.epr-heading-light > p:last-child {
  color: #cedbd5;
}

.epr-card-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.epr-number-card {
  background: white;
  border: 1px solid #eadfbe;
  border-radius: 18px;
  padding: 21px;
}

.epr-number {
  align-items: center;
  background: #dbe8a6;
  border-radius: 50%;
  color: #0b2b20;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.epr-number-card h3 {
  color: #071a33;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin: 15px 0 7px;
}

.epr-number-card p {
  color: #4a5568;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
}

.epr-number-card-dark {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.13);
}

.epr-number-card-dark h3 {
  color: white;
}

.epr-number-card-dark p {
  color: #cedbd5;
}

.epr-item-grid,
.epr-check-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.epr-item-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  max-width: 880px;
}

.epr-item-grid li {
  align-items: center;
  background: #f7f8f6;
  border: 1px solid #e0e7df;
  border-radius: 14px;
  color: #071a33;
  display: flex;
  font-weight: 700;
  gap: 13px;
  line-height: 1.4;
  padding: 15px 17px;
}

.epr-item-grid li span {
  align-items: center;
  background: #1e4620;
  border-radius: 50%;
  color: white;
  display: flex;
  flex: 0 0 34px;
  font-size: 15px;
  height: 34px;
  justify-content: center;
}

.epr-closing-line {
  border-left: 4px solid #d3bc8d;
  color: #1e4620;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.45;
  margin: 28px 0 0;
  padding: 5px 0 5px 16px;
}

.epr-check-list {
  display: grid;
  gap: 12px 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.epr-check-list li {
  color: #071a33;
  font-weight: 700;
  line-height: 1.4;
  padding: 5px 0 5px 34px;
  position: relative;
}

.epr-check-list li::before {
  align-items: center;
  background: #dbe8a6;
  border-radius: 50%;
  color: #1e4620;
  content: "\2713\FE0E";
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-variant-emoji: text;
  font-size: 12px;
  font-weight: 900;
  height: 23px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 4px;
  width: 23px;
}

.epr-framework-groups {
  border-bottom: 1px solid #dbe3ef;
  border-top: 1px solid #dbe3ef;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  margin-top: 30px;
}

.epr-framework-group {
  padding: 24px 28px 24px 0;
}

.epr-framework-group + .epr-framework-group {
  border-left: 1px solid #dbe3ef;
  padding-left: 28px;
  padding-right: 0;
}

.epr-framework-group h3 {
  color: #071a33;
  font-size: 22px;
  margin: 0 0 16px;
}

.epr-framework-list {
  color: #4a5568;
  display: grid;
  font-size: 17px;
  font-weight: 600;
  gap: 11px 18px;
  grid-template-columns: 1fr;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  list-style: none;
}

.epr-framework-list-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.epr-framework-list li {
  padding-left: 20px;
  position: relative;
}

.epr-framework-list li::before {
  background: #2e6f40;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 0.55em;
  width: 8px;
}

.epr-context-note,
.epr-info-note {
  border-radius: 15px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin: 18px 0 0;
  padding: 18px 20px;
}

.epr-context-note {
  background: #f4f6f8;
  border: 1px solid #dbe3ef;
  color: #4a5568;
}

.epr-role {
  background: #eaf1e5;
  border-color: #bfd2b5;
}

.epr-info-note {
  background: #071a33;
  border: 1px solid rgba(211, 188, 141, 0.48);
  color: white;
  margin-top: 28px;
}

.epr-info-note strong {
  display: block;
  margin-bottom: 6px;
}

.epr-info-note p {
  color: #dbe3ef;
  margin: 0;
}

.epr-closing-card {
  background: #071a33;
  border: 1px solid rgba(211, 188, 141, 0.46);
  color: white;
  overflow: hidden;
  padding: 48px;
  position: relative;
}

.epr-closing-card::after {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(255, 255, 255, 0.025);
  content: "";
  height: 210px;
  position: absolute;
  right: -90px;
  top: -110px;
  width: 210px;
}

.epr-closing-card h2 {
  color: white;
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.epr-closing-card > p:not(.epr-eyebrow) {
  color: #dbe3ef;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.48;
  margin: 0;
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.epr-source-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.epr-text-link {
  color: #dbe8a6;
  font-weight: 800;
  margin-top: 22px;
  text-underline-offset: 4px;
}

.epr-text-link:hover {
  color: white;
}

@media (max-width: 900px) {
  .epr-hero {
    padding: 44px;
  }

  .epr-hero-mark {
    opacity: 0.38;
    right: -90px;
    width: 380px;
  }

  .epr-card-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 700px) {
  .epr-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .epr-hero-mark {
    display: none;
  }

  .epr-check-list,
  .epr-framework-groups {
    grid-template-columns: 1fr;
  }

  .epr-framework-group {
    padding: 22px 0;
  }

  .epr-framework-group + .epr-framework-group {
    border-left: 0;
    border-top: 1px solid #dbe3ef;
    padding-left: 0;
    padding-right: 0;
  }

  .epr-framework-list-wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .site-nav {
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    max-width: 100%;
    overflow-x: visible;
    padding: 2px 0 6px;
  }

  .site-nav a {
    flex: 0 0 auto;
    font-size: 14px;
    white-space: nowrap;
  }

  .epr-main {
    padding: 24px 16px 0;
  }

  .epr-hero,
  .epr-section,
  .epr-closing-card {
    border-radius: 18px;
  }

  .epr-hero {
    padding: 32px 24px;
  }

  .epr-hero h1 {
    font-size: 39px;
  }

  .epr-hero-copy > p:not(.epr-eyebrow),
  .epr-section-heading > p:last-child,
  .epr-closing-card > p:not(.epr-eyebrow) {
    font-size: 18px;
  }

  .epr-section,
  .epr-closing-card {
    padding: 26px 20px;
  }

  .epr-section-heading h2,
  .epr-closing-card h2 {
    font-size: 33px;
  }

  .epr-number-card {
    padding: 18px;
  }

  .epr-number-card p,
  .epr-framework-list,
  .epr-context-note,
  .epr-info-note {
    font-size: 17px;
  }

  .epr-button {
    box-sizing: border-box;
    text-align: center;
  }

  .epr-source-links {
    align-items: stretch;
    flex-direction: column;
  }

  .epr-text-link {
    margin-top: 2px;
    padding: 10px 2px;
  }
}


/* Shared header refinement */
header {
  background:
    radial-gradient(circle at 12% 15%, rgba(219, 232, 166, 0.22), transparent 24%),
    linear-gradient(105deg, rgba(255, 253, 247, 0.96), rgba(255, 255, 255, 0.92) 58%, rgba(237, 243, 232, 0.94));
  box-shadow: 0 10px 30px rgba(7, 26, 51, 0.06);
  isolation: isolate;
  overflow: hidden;
}

header::after {
  background: linear-gradient(90deg, #1e4620 0 18%, #d3bc8d 18% 31%, transparent 31% 100%);
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 0;
}

.logo,
.site-nav {
  position: relative;
  z-index: 1;
}

.logo img {
  filter: drop-shadow(0 7px 12px rgba(7, 26, 51, 0.05));
}

.site-nav {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  gap: 4px;
  padding: 0;
}

.site-nav a {
  padding: 10px 12px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  background: #f3f6ef;
  color: #1e4620;
  transform: translateY(-1px);
}

.site-nav a.nav-active {
  background: #e9f0e4;
  box-shadow: inset 0 -2px 0 #d3bc8d;
}

.epr-page .epr-section {
  scroll-margin-top: 160px;
}

header.scrolled {
  background:
    radial-gradient(circle at 12% 15%, rgba(219, 232, 166, 0.2), transparent 24%),
    rgba(255, 255, 255, 0.88);
}

/* ReMine Map homepage refinement */
.map-page .hero {
  background: linear-gradient(135deg, #fffefa 0%, #f7f8f3 72%, #edf3e8 100%);
  border-color: #d5dfcf;
  box-sizing: border-box;
  max-width: 982px;
  overflow: hidden;
  padding: 46px;
  position: relative;
}

.map-page .hero > * {
  position: relative;
  z-index: 1;
}

.homepage-eyebrow {
  color: #68734f;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.13em;
  margin: 0 0 12px !important;
  text-transform: uppercase;
}

.homepage-eyebrow-light {
  color: #b7d9a8;
}

.map-page .hero h1 {
  font-size: clamp(42px, 4.6vw, 58px);
  letter-spacing: -0.035em;
  max-width: 760px;
}

.map-page .hero > p:not(.homepage-eyebrow) {
  font-weight: 600;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-actions .button {
  margin: 0;
}

.hero-actions .secondary-button {
  margin-left: 0;
}

.map-page .notice {
  border-left: 4px solid #d3bc8d;
  box-shadow: 0 10px 24px rgba(7, 26, 51, 0.035);
  padding-left: 20px;
}

.safety-section {
  background: #0b2b20;
  border: 1px solid #1b4636;
  border-radius: 24px;
  box-sizing: border-box;
  color: white;
  overflow: hidden;
  padding: 40px;
  position: relative;
}

.safety-section::after {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.025);
  content: "";
  height: 250px;
  pointer-events: none;
  position: absolute;
  right: -130px;
  top: -135px;
  width: 250px;
}

.safety-heading {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.safety-heading h2,
.about-copy h2 {
  font-size: clamp(34px, 4vw, 46px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 12px;
}

.safety-heading h2 {
  color: white;
}

.safety-heading > p:last-child {
  color: #cedbd5;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.safety-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
  position: relative;
  z-index: 1;
}

.safety-card {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  padding: 22px;
}

.safety-number {
  align-items: center;
  background: #dbe8a6;
  border-radius: 50%;
  color: #0b2b20;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.safety-card h3 {
  color: white;
  font-size: 21px;
  line-height: 1.2;
  margin: 16px 0 8px;
}

.safety-card p {
  color: #cedbd5;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.about-section {
  align-items: start;
  background: #fffdf7;
  border: 1px solid #eadfbe;
  border-radius: 24px;
  box-sizing: border-box;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  padding: 40px;
}

.about-copy h2 {
  color: #071a33;
}

.about-copy > p:last-child {
  color: #4a5568;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  margin: 0;
}

.about-note {
  background: #eaf1e5;
  border: 1px solid #bfd2b5;
  border-left: 4px solid #2e6f40;
  border-radius: 16px;
  color: #071a33;
  padding: 21px;
}

.about-note strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.about-note p {
  color: #4a5568;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .safety-grid,
  .about-section {
    grid-template-columns: 1fr;
  }

  .about-section {
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .section,
  .epr-section {
    scroll-margin-top: 180px;
  }

  .epr-page .epr-section {
    scroll-margin-top: 240px;
  }

  header {
    padding: 14px 18px;
  }

  .site-nav {
    background: transparent;
    border-radius: 0;
    gap: 4px;
    justify-content: center;
    padding: 0;
  }

  .site-nav a {
    font-size: 14px;
    padding: 8px 9px;
  }

  .map-page .hero {
    padding: 30px 24px;
  }

  .map-page .hero h1 {
    font-size: 38px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .safety-section,
  .about-section {
    padding: 28px 22px;
  }

  .safety-grid {
    grid-template-columns: 1fr;
  }

  .safety-card {
    padding: 20px;
  }

  .safety-card p,
  .about-copy > p:last-child {
    font-size: 17px;
  }
}
