* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #eef3ee;
  color: #222222;
  line-height: 1.6;
  font-size: 18px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #1f7f2e;
}

a:hover,
a:focus {
  color: #155d23;
}

p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  color: #2f8d34;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  margin: 0;
}

h2 {
  color: #2f8d34;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
}

h3 {
  color: #2f8d34;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

ul {
  margin-top: 0;
}


.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: #155d23;
  color: #ffffff;
  padding: 0.75rem 1rem;
  z-index: 9999;
  text-decoration: none;
  font-weight: 700;
  border-radius: 0 0 8px 8px;
}

.skip-link:focus {
  top: 0;
}

:focus {
  outline: 3px solid #ffbf00;
  outline-offset: 3px;
}


header {
  position: relative;
  background: #ffffff;
  text-align: center;
  padding: 2.5rem 1rem 2.25rem;
}

header p {
  margin-top: 0.75rem;
  margin-bottom: 0;
  color: #666666;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.site-logo {
  position: absolute;
  top: 1.25rem;
  right: 2rem;
  width: 105px;
  max-width: 16vw;
  height: auto;
  margin: 0;
}


nav {
  background: #2f8d34;
  width: 100%;
  position: relative;
  z-index: 50;
}

nav > ul,
.main-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav > ul > li,
.main-nav > li {
  position: relative;
  list-style: none;
}

nav > ul > li > a,
.main-nav > li > a {
  display: block;
  padding: 1.15rem 1.25rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
}

nav > ul > li > a:hover,
nav > ul > li > a:focus,
nav > ul > li > a.current,
.main-nav > li > a:hover,
.main-nav > li > a:focus,
.main-nav > li > a.current {
  background: #155d23;
  color: #ffffff;
}

.has-dropdown > a::after {
  content: " ▼";
  font-size: 0.7rem;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #ffffff;
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  z-index: 100;
}

.dropdown li {
  list-style: none;
}

.dropdown li a {
  display: block;
  padding: 0.85rem 1.2rem;
  color: #222222;
  text-decoration: none;
  font-weight: 700;
  background: #ffffff;
  font-size: 1rem;
}

.dropdown li a:hover,
.dropdown li a:focus {
  background: #eaf3ea;
  color: #155d23;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: block;
}


.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.container > section {
  margin-bottom: 2.5rem;
}

.container > section:last-child {
  margin-bottom: 0;
}

.hero,
.content {
  background: #ffffff;
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 4rem);
  margin: 2rem 0;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.hero {
  text-align: center;
}

.hero p,
.content > p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.eyebrow {
  display: inline-block;
  background: #eaf3ea;
  color: #155d23;
  font-weight: 900;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}


.button {
  display: inline-block;
  background: #2f8d34;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  padding: 1rem 2rem;
  border-radius: 16px;
  min-width: 220px;
  text-align: center;
  border: 0;
}

.button:hover,
.button:focus {
  background: #155d23;
  color: #ffffff;
}

.button.secondary {
  background: #176f24;
}

.button.secondary:hover,
.button.secondary:focus {
  background: #0f4f19;
}


.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}

.info-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.info-box {
  background: #f5f7f5;
  border-left: 8px solid #2f8d34;
  border-radius: 22px;
  padding: 2rem;
  min-height: 220px;
  text-decoration: none;
  color: #222222;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

a.info-box:hover,
a.info-box:focus {
  background: #edf7ed;
  transform: translateY(-3px);
  color: #222222;
}

.info-box p {
  color: #222222;
  margin-bottom: 1.25rem;
}

.card-link {
  display: inline-block;
  color: #1f7f2e;
  font-weight: 800;
  margin-top: 0.5rem;
}

a.info-box:hover .card-link,
a.info-box:focus .card-link {
  color: #155d23;
}


.feature-image {
  width: 100%;
  max-width: 980px;
  margin: 2rem auto;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.map-preview {
  display: block;
  max-width: 900px;
  margin: 2rem auto;
}

.logo-card-image {
  max-width: 240px;
  margin-bottom: 1rem;
}


.notice {
  background: #f7f9f7;
  border-left: 8px solid #2f8d34;
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.notice p {
  margin: 0;
}


.featured-news {
  background: #ffffff;
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 4rem);
  margin: 2rem 0;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  border-left: 10px solid #2f8d34;
}

.featured-news h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.featured-news p {
  font-size: 1.2rem;
  max-width: 850px;
}

.news-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.news-row {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: #f7f9f7;
  border-radius: 18px;
  padding: 1.5rem;
  text-decoration: none;
  color: #222222;
  border-left: 6px solid #2f8d34;
}

.news-row:hover,
.news-row:focus {
  background: #edf7ed;
  color: #222222;
  transform: translateY(-3px);
}

.news-date {
  font-weight: 800;
  color: #155d23;
}

.news-row h3 {
  margin-bottom: 0.4rem;
}

.news-row p {
  margin-bottom: 0;
}

.news-arrow {
  font-size: 1.8rem;
  color: #2f8d34;
  font-weight: 800;
}

.simple-link-list {
  margin-top: 1.5rem;
  padding-left: 0;
  list-style: none;
}

.simple-link-list li {
  margin-bottom: 0.8rem;
}

.simple-link-list a {
  font-weight: 800;
}


.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}

.action-panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  min-height: auto;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.action-panel.primary {
  background: #2f8d34;
  color: #ffffff;
}

.action-panel.primary h2,
.action-panel.primary h3,
.action-panel.primary p,
.action-panel.primary li {
  color: #ffffff;
}

.action-panel h2 {
  text-align: left;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.action-panel .hero-buttons {
  justify-content: flex-start;
}

.action-panel.primary .hero-buttons {
  justify-content: center;
}

.action-panel .button {
  background: #ffffff;
  color: #155d23;
}

.action-panel .button:hover,
.action-panel .button:focus {
  background: #eaf3ea;
  color: #155d23;
}

.partner-strip {
  background: #ffffff;
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 4rem);
  margin: 2rem 0;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.partner-strip h2 {
  text-align: left;
}

.partner-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.partner-item {
  border-top: 2px solid #e5e5e5;
  padding-top: 1.5rem;
}

.partner-item h3 {
  margin-bottom: 0.5rem;
}


.help-hero {
  max-width: 980px;
  margin: 2.5rem auto 2rem;
  padding: clamp(2.5rem, 6vw, 5rem);
  background: #ffffff;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.help-hero h2 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 1rem;
  color: #2f8d34;
}

.help-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.25rem;
}

.quick-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin: 2rem 0;
}

.quick-choice {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  background: #ffffff;
  color: #222222;
  text-decoration: none;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  border-top: 12px solid #2f8d34;
}

.quick-choice:hover,
.quick-choice:focus {
  transform: translateY(-4px);
  background: #f7fbf7;
  color: #222222;
}

.quick-choice h2 {
  text-align: left;
  color: #2f8d34;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 1rem 0;
}

.quick-choice p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.quick-choice strong {
  color: #155d23;
  font-size: 1.15rem;
}

.urgent-choice {
  background: #2f8d34;
  color: #ffffff;
}

.urgent-choice h2,
.urgent-choice p,
.urgent-choice strong {
  color: #ffffff;
}

.urgent-choice:hover,
.urgent-choice:focus {
  background: #155d23;
  color: #ffffff;
}

.choice-label {
  align-self: flex-start;
  background: #eaf3ea;
  color: #155d23;
  font-weight: 900;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
}

.urgent-choice .choice-label {
  background: #ffffff;
  color: #155d23;
}

.help-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background: #ffffff;
  border-left: 10px solid #2f8d34;
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 3rem);
  margin: 2rem 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.help-strip h2 {
  text-align: left;
  color: #155d23;
  margin-bottom: 0.5rem;
}

.help-strip p {
  margin-bottom: 0;
}

.help-strip-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.support-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin: 2rem 0;
}

.support-mini {
  background: #ffffff;
  text-decoration: none;
  color: #222222;
  border-radius: 24px;
  padding: 2rem;
  border-left: 8px solid #2f8d34;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.support-mini:hover,
.support-mini:focus {
  background: #f7fbf7;
  color: #222222;
  transform: translateY(-3px);
}

.support-mini h3 {
  color: #2f8d34;
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}

.support-mini p {
  margin-bottom: 1rem;
}

.support-mini span {
  color: #155d23;
  font-weight: 900;
}

.simple-warning {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  margin: 2rem 0;
  border-left: 8px solid #2f8d34;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.simple-warning h2 {
  text-align: left;
  color: #155d23;
  margin-bottom: 0.5rem;
}

.simple-warning p {
  margin-bottom: 0;
}


.contact-simple {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
  background: #ffffff;
  border-radius: 30px;
  padding: clamp(2rem, 5vw, 4rem);
  margin: 2rem 0;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.contact-simple-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact-simple-text h2 {
  text-align: left;
  color: #2f8d34;
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1rem;
}

.contact-simple-text p {
  font-size: 1.15rem;
}

.contact-simple-text .hero-buttons {
  justify-content: flex-start;
}

.large-email a {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  color: #155d23;
}

.contact-links-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-links-strip a {
  display: block;
  background: #ffffff;
  border-left: 8px solid #2f8d34;
  border-radius: 22px;
  padding: 2rem;
  text-decoration: none;
  color: #222222;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.contact-links-strip a:hover,
.contact-links-strip a:focus {
  background: #f7fbf7;
  transform: translateY(-3px);
}

.contact-links-strip strong {
  display: block;
  color: #2f8d34;
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.contact-links-strip span {
  color: #155d23;
  font-weight: 900;
}


form {
  max-width: 760px;
  margin: 0 auto;
}

label {
  display: block;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid #cccccc;
  border-radius: 10px;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #2f8d34;
}


footer,
.site-footer {
  background: #f3f5f3;
  border-top: 1px solid #dfe5df;
  margin-top: 4rem;
  padding: 3rem 1rem 2rem;
  text-align: center;
  color: #555555;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.partner-logos img {
  max-height: 70px;
  width: auto;
}

.footer-supporters {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-title {
  font-size: 1.55rem;
  font-weight: 900;
  color: #2f8d34;
  text-align: center;
  margin-bottom: 2rem;
}

.supporter-logos {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem 2.4rem;
  align-items: center;
}

.supporter-logos img {
  max-height: 82px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-bottom {
  max-width: 1150px;
  margin: 2.5rem auto 0;
  padding-top: 1.3rem;
  border-top: 1px solid #d8ded8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: #666666;
  font-size: 0.95rem;
}

.footer-bottom p {
  margin: 0;
}


.button,
.card-link,
.info-box,
.quick-choice,
.support-mini,
.contact-links-strip a,
.news-row {
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}


@media (max-width: 950px) {
  .quick-choice-grid,
  .support-mini-grid,
  .help-strip {
    grid-template-columns: 1fr;
  }

  .quick-choice {
    min-height: auto;
  }

  .help-strip-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .info-grid,
  .info-grid.two,
  .split-layout,
  .contact-simple,
  .contact-links-strip {
    grid-template-columns: 1fr;
  }

  .hero,
  .content {
    padding: 2rem;
  }

  .news-row {
    grid-template-columns: 1fr;
  }

  .news-arrow {
    display: none;
  }

  .contact-simple-text .hero-buttons {
    justify-content: center;
  }

  .contact-simple-text h2 {
    text-align: center;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  header {
    padding: 2rem 1rem;
  }

  .site-logo {
    position: static;
    width: 110px;
    max-width: 80%;
    margin: 0 auto 1rem;
  }

  nav > ul,
  .main-nav {
    display: block;
  }

  nav > ul > li > a,
  .main-nav > li > a {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .dropdown {
    position: static;
    display: block;
    box-shadow: none;
    border-radius: 0;
    background: #eaf3ea;
    min-width: 100%;
  }

  .dropdown li a {
    background: #eaf3ea;
    padding-left: 2rem;
  }

  .dropdown li a:hover,
  .dropdown li a:focus {
    background: #d7ead8;
  }

  .hero-buttons {
    display: block;
  }

  .button {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .partner-logos {
    gap: 1rem;
  }
}


@media (max-width: 900px) {

  nav > ul,
  .main-nav {
    display: block;
  }

  nav > ul > li,
  .main-nav > li {
    width: 100%;
  }

  nav > ul > li > a,
  .main-nav > li > a {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .dropdown {
    display: block;
    position: static;
    width: 100%;
    min-width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background: #eaf3ea;
  }

  .dropdown li a {
    background: #eaf3ea;
    color: #155d23;
    padding: 0.85rem 1rem 0.85rem 2rem;
    border-bottom: 1px solid #d5e6d5;
  }

  .dropdown li a:hover,
  .dropdown li a:focus {
    background: #d7ead8;
    color: #155d23;
  }

  .has-dropdown > a::after {
    content: "";
  }
}

nav {
  background: #2f8d34;
  width: 100%;
  position: relative;
  z-index: 50;
}

.main-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav > li {
  position: relative;
  list-style: none;
}

.main-nav > li > a,
.main-nav summary {
  display: block;
  padding: 1.15rem 1.25rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
}

.main-nav summary {
  list-style: none;
}

.main-nav summary::-webkit-details-marker {
  display: none;
}

.main-nav summary::after {
  content: " ▼";
  font-size: 0.7rem;
}

.main-nav > li > a:hover,
.main-nav > li > a:focus,
.main-nav summary:hover,
.main-nav summary:focus {
  background: #155d23;
  color: #ffffff;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #ffffff;
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  z-index: 100;
}

details[open] .dropdown {
  display: block;
}

.dropdown li {
  list-style: none;
}

.dropdown li a {
  display: block;
  padding: 0.85rem 1.2rem;
  color: #222222;
  text-decoration: none;
  font-weight: 700;
  background: #ffffff;
}

.dropdown li a:hover,
.dropdown li a:focus {
  background: #eaf3ea;
  color: #155d23;
}

@media (min-width: 901px) {
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown {
    display: block;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: block;
  }

  .main-nav > li {
    width: 100%;
  }

  .main-nav > li > a,
  .main-nav summary {
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .dropdown {
    position: static;
    width: 100%;
    min-width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background: #eaf3ea;
  }

  .dropdown li a {
    background: #eaf3ea;
    color: #155d23;
    padding: 0.85rem 1rem 0.85rem 2rem;
    border-bottom: 1px solid #d5e6d5;
  }

  .dropdown li a:hover,
  .dropdown li a:focus {
    background: #d7ead8;
    color: #155d23;
  }

  details[open] summary {
    background: #155d23;
  }

  details[open] summary::after {
    content: " ▲";
    font-size: 0.7rem;
  }
}

.dropdown {
  display: none;
}

@media (min-width: 901px) {
  .main-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .main-nav > li {
    position: relative;
  }

  .main-nav details {
    display: block;
  }

  .main-nav summary {
    display: block;
    padding: 1.15rem 1.25rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
  }

  .main-nav summary::-webkit-details-marker {
    display: none;
  }

  .main-nav summary::after {
    content: " ▼";
    font-size: 0.7rem;
  }

  .main-nav details[open] .dropdown {
    display: none;
  }

  .main-nav .has-dropdown:hover .dropdown,
  .main-nav .has-dropdown:focus-within .dropdown {
    display: block;
  }

  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #ffffff;
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    z-index: 100;
  }

  .dropdown li a {
    display: block;
    padding: 0.85rem 1.2rem;
    color: #222222;
    text-decoration: none;
    font-weight: 700;
    background: #ffffff;
    white-space: nowrap;
  }

  .dropdown li a:hover,
  .dropdown li a:focus {
    background: #eaf3ea;
    color: #155d23;
  }
}


@media (max-width: 900px) {
  .main-nav {
    display: block;
  }

  .main-nav > li {
    width: 100%;
  }

  .main-nav > li > a,
  .main-nav summary {
    display: block;
    width: 100%;
    padding: 1rem;
    color: #ffffff;
    font-weight: 800;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .main-nav summary {
    cursor: pointer;
    list-style: none;
  }

  .main-nav summary::-webkit-details-marker {
    display: none;
  }

  .main-nav summary::after {
    content: " ▼";
    font-size: 0.7rem;
  }

  .main-nav details[open] summary {
    background: #155d23;
  }

  .main-nav details[open] summary::after {
    content: " ▲";
  }

  .main-nav details[open] .dropdown {
    display: block;
  }

  .dropdown {
    position: static;
    width: 100%;
    min-width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background: #eaf3ea;
  }

  .dropdown li a {
    display: block;
    background: #eaf3ea;
    color: #155d23;
    padding: 0.85rem 1rem 0.85rem 2rem;
    border-bottom: 1px solid #d5e6d5;
    text-decoration: none;
    font-weight: 700;
  }

  .dropdown li a:hover,
  .dropdown li a:focus {
    background: #d7ead8;
    color: #155d23;
  }
}


.student-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 9999;
}

.student-popup-box {
  background: #ffffff;
  color: #222222;
  max-width: 560px;
  width: 100%;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.student-popup-box h2 {
  color: #2f8d34;
  margin-bottom: 1rem;
  text-align: center;
}

.student-popup-box p {
  margin-bottom: 1.5rem;
}

.student-popup-box button {
  background: #2f8d34;
  color: #ffffff;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
}

.student-popup-box button:hover,
.student-popup-box button:focus {
  background: #155d23;
}
.student-popup.is-hidden {
  display: none;
}