/* RESET & BASE --------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F5F9F6;
  color: #17462E;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.2s;
}
a {
  color: #17462E;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #ADC742;
  outline-offset: 3px;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
}
h1 {
  font-size: 2.25rem; /* 36px */
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.625rem; /* 26px */
  margin-bottom: 16px;
}
h3 {
  font-size: 1.2rem; /* 19px */
  margin-bottom: 12px;
}
h4 {
  font-size: 1rem; /* 16px */
  margin-bottom: 10px;
}
strong { font-weight: bold; }

/* Layout Containers & Spacing -------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section, section {
  padding: 40px 20px;
  width: 100%;
}
.card-container, .feature-grid, .service-list, .usp-list, .training-list, .training-benefits, .sustainability-principles, .action-areas, .certifications, .impact-statistics, .initiatives, .project-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .service-card, .case-study-card, .testimonial-card {
  margin-bottom: 20px;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(23,70,46,.06);
  background: #fff;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .service-card:hover, .case-study-card:hover, .testimonial-card:hover {
  box-shadow: 0 4px 24px 6px rgba(173,199,66,0.13);
  transform: translateY(-2px) scale(1.025);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  color: #17462E;
  border-left: 8px solid #ADC742;
  font-size: 1.1rem;
  box-shadow: 0 2px 16px 0 rgba(173,199,66,.11);
  min-width: 240px;
  max-width: 520px;
}
.testimonial-card cite {
  font-size: 0.99rem;
  color: #586467;
  font-style: normal;
  margin-top: 8px;
}
.card-content, .feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}


/* HEADER & NAVIGATION --------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(173,199,66,0.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 12px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
  color: #17462E;
  position: relative;
}
.main-nav a:hover, .footer-nav a:hover {
  background: #ADC7421F;
  color: #17462E;
}
.cta.primary-btn {
  background: #ADC742;
  color: #17462E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  padding: 9px 28px;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(173,199,66,0.19);
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  border: none;
  cursor: pointer;
  margin-left: 18px;
  letter-spacing: 0.08em;
  outline: none;
}
.cta.primary-btn:hover, .cta.primary-btn:focus {
  background: #90a02e;
  color: #fff;
  box-shadow: 0 4px 24px rgba(173,199,66,.24);
  transform: scale(1.05);
}
.cta.secondary-btn {
  background: #17462E;
  color: #fff;
  padding: 8px 19px;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  margin-top: 10px;
  box-shadow: 0 2px 9px 0 rgba(23,70,46,.11);
  transition: background 0.17s, box-shadow 0.19s, transform 0.15s;
  cursor: pointer;
}
.cta.secondary-btn:hover, .cta.secondary-btn:focus {
  background: #ADC742;
  color: #17462E;
  box-shadow: 0 4px 24px 0 rgba(173,199,66,0.17);
  transform: scale(1.028);
}

/* Mobile Menu ----------------------------------------------------------- */
.mobile-menu-toggle {
  background: #ADC742;
  color: #17462E;
  border: none;
  font-size: 2.1rem;
  border-radius: 14px;
  padding: 7px 17px;
  cursor: pointer;
  display: none;
  z-index: 31;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover {
  background: #FFF;
  color: #90a02e;
  border: 2px solid #ADC742;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  left: 0;
  background: rgba(255,255,255,0.98);
  transform: translateX(105vw);
  transition: transform 0.35s cubic-bezier(.8,-0.01,.22,1.1);
  z-index: 110;
  display: flex;
  flex-direction: column;
  padding: 0;
  justify-content: flex-start;
  align-items: flex-end;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 0 800px rgba(23,70,46,0.07);
}
.mobile-menu-close {
  background: #ADC742;
  color: #fff;
  font-size: 2.25rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin: 24px 24px 0 0;
  align-self: flex-end;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 120;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #17462E;
  color: #ADC742;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  margin-top: 38px;
  width: 100%;
  padding: 0 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.26rem;
  padding: 16px 0px 12px 8px;
  width: 100%;
  color: #17462E;
  border-radius: 12px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ADC74233;
  color: #17462E;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
  }
  .footer-flex {
    gap: 20px;
  }
}
@media (max-width: 880px) {
  header .container {
    gap: 8px;
  }
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .main-nav {
    gap: 6px;
  }
}
@media (max-width: 768px) {
  .main-nav, .cta.primary-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 8px;
  }
  .section, section {
    padding: 25px 4px;
    margin-bottom: 44px;
  }
  .content-wrapper {
    padding: 20px 2px;
    gap: 6px;
  }
  h1 { font-size: 1.375rem; }
  h2 { font-size: 1.09rem; }
  h3 { font-size: 0.9rem; }
  .feature-grid, .card-container, .service-list, .training-list {
    flex-direction: column;
    gap: 16px;
  }
  .footer-flex {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .project-stats, .usp-list, .action-areas, .certifications, .impact-statistics, .initiatives {
    flex-direction: column;
    gap: 8px;
  }
}

/* HERO/SUBHEADS --------------------------------------------------------- */
.subheadline {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #ADC742;
  font-size: 1.20rem;
  margin-bottom: 14px;
  margin-top: 4px;
  font-weight: 600;
}

/* FEATURE CARDS & LISTS ------------------------------------------------- */
.feature-grid > li, .training-list > li, .service-card, .case-study-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(173,199,66,0.10);
  padding: 28px 22px 22px 22px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  border-left: 5px solid #ADC742;
}
.feature-grid > li img, .training-list > li img, .service-card img, .case-study-card img {
  height: 46px;
  width: 46px;
  margin-bottom: 9px;
  filter: drop-shadow(0 2px 7px #ADC74222);
  background: #F5F9F6;
  border-radius: 50%;
  padding: 4px;
}
.feature-grid > li h3, .training-list > li h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  margin-bottom: 5px;
  color: #17462E;
}
.feature-grid > li p, .training-list > li p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 0;
}
.usp-list li, .project-stats li, .sustainability-principles li, .action-areas li, .certifications li, .impact-statistics li, .initiatives li, .training-benefits li {
  background: #ADC74222;
  color: #17462E;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 13px;
  padding: 10px 18px;
  margin-bottom: 0;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px 0 rgba(173,199,66,0.09);
  display: flex;
  align-items: center;
  white-space: normal;
}

/* FAQ ACCORDION --------------------------------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}
.faq-item {
  border-radius: 17px;
  background: #F5F9F6;
  box-shadow: 0 2px 13px 0 rgba(173,199,66,0.07);
  padding: 16px 18px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: box-shadow 0.16s;
  position: relative;
}
.faq-item h3 {
  color: #17462E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  margin-bottom: 7px;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
}
.faq-answer {
  color: #586467;
  font-size: 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.77,0,.18,1), opacity 0.2s;
  opacity: 0;
  margin-top: 0;
  padding-left: 0;
}
.faq-item.active .faq-answer {
  opacity: 1;
  max-height: 300px;
  margin-top: 10px;
}
.faq-item.active {
  box-shadow: 0 4px 22px 0 rgba(173,199,66,0.15);
  background: #fff;
}
.faq-item:hover {
  box-shadow: 0 4px 26px 0 #ADC74236;
}

/* CARDS --------------------------------------------------------- */
.service-card {
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
  border-left: 5px solid #ADC742;
}
.service-card strong {
  color: #ADC742;
  font-weight: 700;
}
.case-study-card {
  background: #fffbe8;
  border-left: 6px solid #FFC531;
  color: #292d20;
  padding: 22px 20px 16px 20px;
  margin-bottom: 24px;
}

/* MAP PLACEHOLDER ---------------------------------------------------------- */
.map-placeholder {
  background: #ADC7422c;
  color: #17462E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: bold;
  padding: 46px 0;
  border-radius: 16px;
  margin-top: 11px;
  text-align: center;
  letter-spacing: 0.01em;
}

/* CONTACT INFO ------------------------------------------------------------- */
.contact-info {
  margin-bottom: 17px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

/* FOOTER ---------------------------------------------------------------- */
footer {
  background: #17462E;
  color: #ffffff;
  padding: 36px 0 0 0;
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-flex {
  padding: 18px 0 12px 0;
  border-top: 2px solid #ADC74222;
}
.footer-brand {
  flex: 1 1 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.footer-brand img {
  height: 45px;
  margin-bottom: 7px;
}
.footer-brand p, .footer-brand a {
  color: #fff;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1 1 180px;
}
.footer-nav a {
  color: #fff;
  font-size: 1.01rem;
  opacity: 0.92;
  padding: 4px 0 4px 2px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:focus {
  outline: 2px solid #ADC742;
  color: #ADC742;
}
.social-media {
  flex: 0 1 80px;
  display: flex;
  gap: 19px;
  align-items: center;
}
.social-media a img {
  width: 34px; height: 34px;
  background: #ADC742;
  border-radius: 50%;
  padding: 5px;
  transition: background 0.13s, box-shadow 0.13s;
}
.social-media a:hover img {
  background: #fffbe8;
  box-shadow: 0 2px 6px 0 #ADC74299;
}
footer a {
  color: #ADC742;
}

@media (max-width: 768px) {
  footer {
    padding: 22px 0 0 0;
  }
  .footer-flex {
    padding: 14px 0 10px 0;
    gap: 10px;
  }
  .footer-brand, .footer-nav {
    font-size: 0.95rem;
  }
  .footer-brand img {
    height: 35px;
    margin-bottom: 2px;
  }
  .footer-nav a {
    font-size: .97rem;
    padding: 2px 0;
  }
}

/* ANIMATIONS & MICRO-INTERACTIONS --------------------------------------- */
@keyframes bounceIn {
  0% {transform: scale(0.9);} 
  60% {transform: scale(1.06);} 
  80% {transform: scale(0.98);} 
  100% {transform: scale(1);}
}
.cta.primary-btn, .cta.secondary-btn, .service-card, .feature-grid > li, .training-list > li {
  animation: bounceIn 0.7s cubic-bezier(.65,1.61,.62,.91);
}
.feature-grid > li img, .training-list > li img {
  transition: transform 0.14s;
}
.feature-grid > li:hover img, .training-list > li:hover img {
  transform: rotate(-7deg) scale(1.13);
}

/* PLAYFUL / DYNAMIC TYPOGRAPHY ------------------------------------------ */
h1, h2, h3 {
  letter-spacing: -0.01em;
}
h2, h3 {
  position: relative;
}
h2:after, h3:after {
  content: '';
  display: inline-block;
  background: #ADC742;
  height: 6px;
  width: 36px;
  border-radius: 3px;
  margin-left: 10px;
  vertical-align: middle;
  margin-top: -4px;
  opacity: 0.24;
}

/* PRICING BOX ------------------------------------------------------------- */
.pricing-overview {
  margin: 17px 0 0 0;
  font-size: 1.11rem;
  color: #17462E;
  font-weight: 700;
  background: #ADC74218;
  border-radius: 13px;
  padding: 13px 16px;
  box-shadow: 0 2px 13px 0 rgba(173,199,66,0.07);
}

/* RESPONSIVE FONT SIZES -------------------------------------------------- */
@media (max-width: 480px) {
 h1 { font-size: 1.003rem; }
 h2 { font-size: .9rem; }
 h3 { font-size: 0.83rem; } 
 .feature-grid > li, .service-card, .training-list > li, .case-study-card { padding: 14px 8px 12px 11px; }
 .testimonial-card { padding: 14px 7px; }
}

/* COOKIE CONSENT BANNER -------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe8;
  color: #17462E;
  font-size: 1rem;
  border-top: 3px solid #ADC742;
  box-shadow: 0 -5px 40px -10px #17462e12;
  padding: 20px 24px 19px 24px;
  z-index: 190;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  justify-content: space-between;
  animation: cookieIn 0.5s cubic-bezier(.65,1.61,.62,.91);
}
@keyframes cookieIn {
  0% {transform: translateY(130px); opacity: 0;}
  80% {transform: translateY(-16px);}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  margin: 0;
  font-size: 1rem;
  flex: 1 1 160px;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  background: #ADC742;
  color: #17462E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 13px;
  padding: 8px 18px;
  margin: 0;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow .12s;
  box-shadow: 0 2px 8px 0 rgba(173,199,66,0.06);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #17462E;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #ADC742;
  border: 2px solid #ADC742;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ADC742;
  color: #17462E;
}

/* COOKIE PREFERENCES MODAL --------------------------------------------- */
.cookie-modal {
  position: fixed;
  z-index: 2500;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(23,70,46,0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.25s;
  animation: fadeIn 0.25s cubic-bezier(.77,0,.18,1);
}
@keyframes fadeIn {
  from {opacity: 0; } to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  max-width: 425px;
  width: 85vw;
  padding: 32px 24px 26px 24px;
  box-shadow: 0 8px 64px 0 #ADC74233;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.cookie-modal-close {
  background: #ADC742;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px; height: 42px;
  font-size: 1.7rem;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #17462E;
  color: #ADC742;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F5F9F6;
  border-radius: 11px;
  padding: 10px 14px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category label {
  cursor: pointer;
  font-weight: 500;
  color: #17462E;
}
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 48px; height: 28px;
}
.cookie-toggle input {
  opacity: 0; width: 0; height: 0;
}
.cookie-slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ADC74288;
  border-radius: 23px;
  transition: background .2s;
}
.cookie-toggle input:checked + .cookie-slider {
  background: #ADC742;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  height: 19px; width: 19px;
  left: 4px; bottom: 4px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 2px 7px #ADC7421b;
}
.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-category.essential label {
  color: #ADC742;
  font-weight: 700;
}
.cookie-category.essential .cookie-toggle {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px 0;
    padding: 15px 7px;
    font-size: .97rem;
  }
  .cookie-modal-content {
    width: 97vw;
    padding: 18px 8px 18px 8px;
 }
}

/* CUSTOM SCROLLBAR ---------------------------------------------------- */
body, .footer-flex, .mobile-menu, .cookie-modal-content, .faq-accordion {
  scrollbar-width: thin;
  scrollbar-color: #ADC742 #f5f9f6;
}
body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-thumb { background: #ADC74266; border-radius: 8px; }
body::-webkit-scrollbar-track { background: #f5f9f6; }

/* FORMS --------------------------------------------------------------- */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 10px;
  border: 2px solid #ADC74244;
  padding: 9px 14px;
  margin-bottom: 14px;
  transition: border 0.14s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid #ADC742;
  outline: none;
  box-shadow: 0 2px 12px 0 #ADC74222;
}

/* PLAYFUL INTERACTION DECOR (optional for .playful-dots) -------------- */
.playful-dots {
  position: absolute;
  top: -14px; right: -18px;
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #ADC74260;
  z-index: 1;
  filter: blur(1px);
  animation: playfulDots 1.14s ease-in-out infinite alternate;
}
@keyframes playfulDots {
  0% {transform: translateY(0px) scale(1);}
  100% {transform: translateY(6px) scale(1.12);}
}

/* ACCESSIBILITY ------------------------------------------------------ */
:focus-visible {
  outline: 2px solid #ADC742;
  outline-offset: 3px;
}

/* Utility Spacing ---------------------------------------------------- */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* END --------------------------------------------------------------- */