/* ==========================================================================
   CSS RESET & BASELINE NORMALIZATION
   ========================================================================== */
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,
b, 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, 
menu, 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;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F8F9FA;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  position: relative;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #25377A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #37B985;
}
:focus {
  outline: 2px solid #37B985;
  outline-offset: 2px;
}
ul, ol {
  padding-left: 1.25em;
}
strong, b {
  font-weight: 700;
}
hr {
  border: 0;
  border-top: 1px solid #e2e4dd;
  margin: 32px 0;
}
/* ==========================================================================
   BRAND FONTS (Montserrat for headlines, Roboto for body)
   ========================================================================== */
h1, h2, h3, h4, h5, h6, .cta-button, .cta-banner, nav ul, nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
p, li, blockquote, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2e312e;
  line-height: 1.7;
}

h1 {
  font-size: 2.75rem;
  color: #25377A;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  color: #1b5137;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.25rem;
  color: #366949;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  color: #4c6b49;
}
p {
  margin-bottom: 1.25em;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}
/* ==========================================================================
   ORGANIC NATURE-INSPIRED PALETTE (earth tones)
   ========================================================================== */
:root {
  --brand-primary: #25377A;
  --brand-green: #37B985;
  --brand-offwhite: #F8F9FA;
  --brand-earth: #D9E8DB;
  --brand-tan: #EDE8CF;
  --brand-bark: #897553;
  --brand-shadow: rgba(39, 60, 59, 0.10);
  --brand-card: #f4f8f2;
  --brand-dark-text: #25361d;
}

body {
  background: var(--brand-offwhite);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-card);
  border-radius: 28px;
  box-shadow: 0 2px 16px var(--brand-shadow);
}

.container {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  background: linear-gradient(90deg, #e6ecd7 0%, #d9e8db 100%);
  box-shadow: 0 2px 10px var(--brand-shadow);
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  padding-bottom: 12px;
  margin-bottom: 40px;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
}
nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
nav ul li {
  display: flex;
  align-items: center;
}
nav ul li a {
  color: #304228;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 6px 10px;
  border-radius: 14px;
  transition: background 0.2s, color 0.2s;
}
nav ul li a:hover, nav ul li a:focus {
  background: var(--brand-green);
  color: #fff;
}
nav a img {
  height: 42px;
  margin-right: 14px;
}
.cta-button {
  background: var(--brand-green);
  color: #fff;
  font-size: 1.07em;
  border: none;
  border-radius: 100px;
  padding: 11px 36px;
  box-shadow: 0 2px 8px var(--brand-shadow);
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.22s, box-shadow 0.22s, transform 0.13s;
  margin-left: 12px;
  display: inline-block;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: #32996a;
  color: #fff;
  box-shadow: 0 4px 14px rgba(55,185,133,0.22);
  transform: translateY(-2px) scale(1.04);
}
/* ==========================================================================
   MOBILE BURGER MENU
   ========================================================================== */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-green);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 80;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #32996a;
}
.mobile-menu {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #F8F9FA;
  box-shadow: 0 12px 64px rgba(41,82,31,0.23);
  transform: translateX(-110vw);
  transition: transform 0.36s cubic-bezier(0.4,0.7,0.3,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
  transition: transform 0.34s cubic-bezier(0.21,0.98,0.25,1), opacity 0.13s;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #25377A;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 20px 20px 12px 14px;
  align-self: flex-end;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #32996a;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 10px 32px 24px 38px;
}
.mobile-nav a {
  color: #25361d;
  font-size: 1.28rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 4px;
  transition: background 0.19s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-green);
  color: #fff;
}
@media (max-width: 991px) {
  nav ul {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}
/* ==========================================================================
   FLEXBOX CONTENT PATTERNS & RESPONSIVE LAYOUTS
   ========================================================================== */
.card-container, .card-grid, .feature-grid, .content-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 14px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 12px var(--brand-shadow);
  padding: 30px 24px;
  min-width: 275px;
  max-width: 450px;
  flex: 1 1 275px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
/* Feature grid for index, career-paths, resources, etc */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.feature-grid>div {
  background: #f4f8f2;
  border-radius: 18px 30px 22px 24px;
  box-shadow: 0 4px 12px var(--brand-shadow);
  padding: 24px 18px 20px 18px;
  min-width: 230px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid #e3e8e2;
  transition: box-shadow 0.17s, transform 0.18s;
  margin-bottom: 20px;
}
.feature-grid>div:hover {
  box-shadow: 0 8px 32px rgba(55,185,133,0.15), 0 4px 12px var(--brand-shadow);
  transform: translateY(-3px) scale(1.03);
}
.feature-grid h3 {
  color: #2e754a;
  font-size: 1.1rem;
}
.text-section {
  margin-bottom: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid>div {
    min-width: unset;
    width: 100%;
    max-width: unset;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
/* ==========================================================================
   CTA BANNERS & CALL-OUTS
   ========================================================================== */
.cta-banner {
  background: linear-gradient(100deg,#e7ecd7 70%, #d2eae7 100%);
  border-radius: 24px 34px 18px 30px;
  padding: 36px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 2px 20px var(--brand-shadow);
  margin-bottom: 12px;
}
.cta-banner p {
  margin: 0 auto 0 0;
  font-size: 1.1rem;
  color: #264936;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cta-banner .cta-button {
  margin: 0;
}
@media (max-width: 700px) {
  .cta-banner {
    flex-direction: column;
    padding: 24px 14px;
    text-align: left;
    gap: 16px;
  }
  .cta-banner .cta-button {
    width: 100%;
  }
}
/* ==========================================================================
   TESTIMONIAL CARDS
   ========================================================================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 22px;
  background: #f5fafe;
  box-shadow: 0 2px 10px var(--brand-shadow);
  border-radius: 26px 20px 18px 38px;
  color: #1c2b1e;
  margin-bottom: 20px;
  max-width: 700px;
  flex: 1 1 250px;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.16em;
  line-height: 1.65;
  margin: 0 0 8px 0;
  color: #284f3e;
}
.testimonial-card footer {
  font-weight: 500;
  color: #274228;
  font-size: 0.98em;
  letter-spacing: 0.01em;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    padding: 18px 8px;
    max-width: 100%;
  }
}
/* ==========================================================================
   ORGANIC SHAPES / DECORATION (cards, banners)
   ========================================================================== */
.card, .feature-grid>div, .section, .testimonial-card, .cta-banner {
  border-top-left-radius: 28px 68px;
  border-bottom-right-radius: 38px 28px;
  border-bottom-left-radius: 22px 41px;
}
/* ==========================================================================
   ORGANIC/NATURE SHADOWS
   ========================================================================== */
.card, .feature-grid>div, .section, .testimonial-card, .cta-banner {
  box-shadow: 0 6px 26px -8px rgba(55,160,90,0.14), 0 2px 10px var(--brand-shadow);
}
/* ==========================================================================
   BUTTONS & INTERACTIVES
   ========================================================================== */
button, .cta-button, input[type=submit] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1em;
  border-radius: 100px;
  border: none;
  padding: 10px 30px;
  transition: background 0.19s, box-shadow 0.24s, color 0.17s, transform 0.16s;
}
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 10px;
  border: 1px solid #d0dac1;
  padding: 10px 14px;
  background: #f5f7f5;
  font-size: 1rem;
  margin-bottom: 18px;
  width: 100%;
}
button:hover, .cta-button:hover, input[type=submit]:hover {
  background: linear-gradient(92deg,#37B985 80%, #99ce6e 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 5px 18px -4px #81ebae66;
}
button:active, .cta-button:active {
  background: #32996a;
  color: #fff;
}
/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
footer {
  background: linear-gradient(90deg,#e9ebd0 0%, #F8F9FA 100%);
  margin-top: 64px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  padding: 32px 0 16px;
  color: #337752;
  font-size: 0.98rem;
  box-shadow: 0 -2px 14px var(--brand-shadow);
}
footer .content-wrapper {
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
footer nav {
  padding: 0;
  flex-direction: row;
  gap: 8px;
  font-size: 1rem;
}
footer nav a {
  color: #2f5047;
  margin-right: 10px;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: #37B985;
  text-decoration: underline;
}
footer address {
  font-style: normal;
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  color: #3e5237;
  font-size: 0.97em;
}
footer address img {
  height: 16px;
  width: 16px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 5px;
}
footer p {
  font-size: 0.97em;
  color: #4e5f3d;
}

@media (max-width: 520px) {
  footer address {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
}

/* ==========================================================================
   SPECIAL SECTIONS (e.g. .feature-item, .feature-list)
   ========================================================================== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==========================================================================
   COOKIE CONSENT BANNER & MODAL
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1600;
  background: #114228;
  color: #fff;
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  justify-content: center;
  padding: 30px 16px 26px 16px;
  box-shadow: 0 -6px 32px rgba(27,81,55,0.18);
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  transition: transform 0.33s cubic-bezier(0.38,0.72,0.36,1), opacity 0.2s;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
}
.cookie-banner.hide {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-size: 1em;
  border-radius: 100px;
  padding: 8px 24px;
  background: var(--brand-green);
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  font-weight: 600;
  margin-left: 0;
  box-shadow: 0 2px 10px var(--brand-shadow);
  transition: background 0.2s, color 0.2s;
}
.cookie-banner button.reject {
  background: #EDE8CF;
  color: #222;
  border: 1px solid #B0B68C;
}
.cookie-banner button.settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-banner button:focus, .cookie-banner button:hover {
  background: #32996a;
  color: #fff;
}
.cookie-modal-overlay {
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(33,61,51,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 28px 18px 42px 26px;
  box-shadow: 0 10px 48px rgba(62,136,71,0.18);
  min-width: 305px;
  max-width: 96vw;
  padding: 32px 20px 22px 24px;
  position: relative;
  color: #25361d;
  font-size: 1.01rem;
}
.cookie-modal h2 {
  margin-bottom: 15px;
  color: #25377A;
  font-size: 1.25rem;
}
.cookie-modal label, .cookie-modal p {
  font-size: 1.01rem;
  color: #263829;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 22px;
  padding: 10px 0 8px 5px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  border: 2px solid #37B985;
  background: #e6ecd7;
  transition: background 0.18s;
}
.cookie-category input[type=checkbox]:checked {
  background: #37B985;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  padding-top: 8px;
  margin-bottom: 3px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: #25377A;
  font-size: 1.7rem;
  cursor: pointer;
  padding: 6px 8px;
  transition: color 0.17s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #37B985;
}
@media (max-width: 568px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 20px 7px 14px 7px;
    font-size: 0.98rem;
  }
  .cookie-modal {
    min-width: unset;
    padding: 22px 7px 13px 7px;
  }
}
/* ==========================================================================
   RESPONSIVE UTILITY & FLEX SPACING
   ========================================================================== */
@media (max-width:600px) {
  .card-container, .feature-grid, .content-grid, .features {
    flex-direction: column;
    gap: 14px;
  }
  .card {
    width: 100%;
    min-width: unset;
    max-width: unset;
    padding: 18px 10px;
  }
}

/* Section, card-container mandatory spacing */
.section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}
.card-container, .card-grid, .feature-grid, .content-grid, .features {
  gap: 24px !important;
}
.card {
  margin-bottom: 20px !important;
}
.text-image-section {
  align-items: center !important;
  gap: 30px !important;
  flex-wrap: wrap !important;
}
.testimonial-card {
  gap: 20px !important;
  padding: 20px !important;
  margin-bottom: 20px !important;
}
.feature-item {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 15px !important;
}
/* Utility class for vertical margin */
.mb-3 { margin-bottom: 20px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mt-3 { margin-top: 20px !important; }

/* Prevent overlapping & ensure visual separation */
* + .section,
* + .testimonial-card,
* + .feature-grid,
* + .card,
* + .cta-banner {
  margin-top: 20px !important;
}

/* ==========================================================================
   MICRO-INTERACTIONS & ANIMATIONS
   ========================================================================== */
.card, .feature-grid>div, .cta-banner, .testimonial-card, .section, .cta-button, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.18s, transform 0.18s, background 0.17s, color 0.18s;
}
.card:focus-within, .feature-grid>div:focus-within, .testimonial-card:focus-within {
  box-shadow: 0 0 0 3px #37B98544;
}

html.sr .card, html.sr .feature-grid>div, html.sr .testimonial-card, html.sr .cta-banner {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.42,1.17,.74,.95), transform 0.7s;
}
html.sr .card.appear, html.sr .feature-grid>div.appear, html.sr .testimonial-card.appear, html.sr .cta-banner.appear {
  opacity: 1; transform: none;
}

/* ==========================================================================
   MISC UTILITY CLASSES
   ========================================================================== */
.tagline {
  font-size: 1.2rem;
  color: #368957;
  font-weight: 500;
  background: #ecf6ea;
  border-radius: 11px 22px 16px 19px;
  padding: 6px 16px;
  margin: 14px 0 0 0;
  display: inline-block;
}

.hidden {
  display: none !important;
}

/* Hide scroll on body when mobile-menu or cookie modal is open (added by JS) */
body.menu-open, body.cookie-modal-open {
  overflow: hidden !important;
}

/* ==========================================================================
   END STYLE.CSS
   ========================================================================== */
