/* ── Accessibility Panel ── */
#accessibility-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  font-family: Arial, sans-serif;
}
#acc-toggle {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
#acc-menu {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  margin-top: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  display: none;
}
#acc-menu h4 {
  margin: 0 0 10px 0;
  font-size: 16px;
}
#acc-menu button {
  margin: 5px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  cursor: pointer;
  border-radius: 4px;
}
#acc-menu button:hover {
  background: var(--green);
  color: #fff;
}

/* High Contrast Mode */
.high-contrast {
  background: #000 !important;
  color: #fff !important;
}
.high-contrast * {
  background: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
}
.high-contrast a {
  color: #ffff00 !important;
}
.high-contrast button {
  background: #fff !important;
  color: #000 !important;
}

/* ── Layout Containers ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 70px 0;
}
.section--gray {
  background: var(--off-white);
}
.section--navy {
  background: var(--navy2);
}
.section--green {
  background: var(--green);
}
