/* ==== CSS RESET & NORMALIZE ==== */
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 {
  height: 100%;
  font-size: 16px;
}
body {
  min-height: 100vh;
  background: #E1EFE3;
  color: #1A2B19;
  font-family: 'Roboto', Arial, system-ui, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  padding-left: 1.2em;
}
strong, b {
  font-weight: 700;
  color: #205C3B;
}
a {
  color: #368EC1;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  text-decoration: underline;
  color: #1B517C;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
}

/* ==== BRAND VARIABLES (with fallback) ==== */
:root {
  --primary: #205C3B;
  --secondary: #E1EFE3;
  --accent: #368EC1;
  --accent-dark: #1B517C;
  --background: #FFFFFF;
  --shadow: 0 4px 20px rgba(50, 80, 60, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 32px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --heading1: 2.5rem;
  --heading2: 2rem;
  --heading3: 1.375rem;
  --section-spacing: 60px;
  --container-padding: 20px;
  --text-color: #1A2B19;
  --text-light: #32613E;
  --contrast: #fff;
}

/* ==== SHARED COMPONENTS & LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  box-sizing: border-box;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
h1, .hero h1 {
  font-family: var(--font-display);
  font-size: var(--heading1);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h2 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 600;
  font-size: var(--heading2);
  margin-bottom: 20px;
  line-height: 1.18;
}
h3 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: var(--heading3);
  font-weight: 600;
  margin-bottom: 8px;
}
p {
  margin-bottom: 16px;
  color: var(--text-color);
}
.text-section {
  max-width: 700px;
  margin: 0 auto 32px auto;
}
ul {
  margin-bottom: 20px;
  color: var(--text-color);
}
li {
  margin-bottom: 10px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--background);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 250px;
  flex: 1 1 280px;
  transition: box-shadow 0.22s;
}
.card:hover, .feature-item:hover, .service-item:hover, .workshop-item:hover, .impact-item:hover, .project-item:hover {
  box-shadow: 0 8px 28px rgba(50,80,60,.13);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-grid, .features, .service-list, .services-overview, .project-list, .impact-stories, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.feature-grid {
  justify-content: flex-start;
}
.feature-item {
  background: var(--background);
  border-radius: var(--radius-sm);
  padding: 26px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: var(--shadow);
  min-width: 220px;
  flex: 1 1 200px;
  transition: box-shadow 0.22s, transform 0.15s;
  cursor: pointer;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.feature-item h3 {
  margin-bottom: 2px;
}
.service-list, .services-overview {
  gap: 20px;
}
.service-item {
  background: var(--background);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 22px 20px;
  flex: 1 1 240px;
  min-width: 230px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s;
}
.project-list, .workshop-list, .impact-stories {
  gap: 22px;
}
.project-item, .workshop-item, .impact-item {
  background: var(--background);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 19px 18px 18px 18px;
  flex: 1 1 255px;
  min-width: 205px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s;
}

/* ==== HERO STYLES ==== */
.hero {
  background: linear-gradient(120deg, #E1EFE3 40%, #fff 100%);
  padding: 38px 0 38px 0;
  margin-bottom: 36px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  padding: 0;
}
.hero h1 {
  font-size: 2.5rem;
  max-width: 650px;
}
.hero p {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 5px;
}

/* ==== BUTTONS & INTERACTIVES ==== */
.button,
a.button {
  display: inline-block;
  background: var(--primary);
  color: var(--contrast);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 34px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  box-shadow: 0 2px 9px rgba(50,80,60,0.09);
  margin-right: 12px;
  transition: background 0.18s, transform 0.13s, box-shadow 0.15s;
  text-decoration: none;
  letter-spacing: 0.01em;
  outline: none;
}
.button.primary, a.button.primary {
  background: var(--primary);
  color: #fff;
}
.button.secondary, a.button.secondary {
  background: var(--accent);
  color: #fff;
}
.button.accent, a.button.accent {
  background: var(--accent-dark);
  color: #fff;
}
.button:hover, a.button:hover,
.button:focus, a.button:focus {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 30px rgba(32,92,59,0.17);
}
.button:active, a.button:active {
  background: var(--primary);
  color: #fff;
  transform: scale(.96);
}

/* ==== NAVIGATION ==== */
header {
  background: #fff;
  box-shadow: 0px 2px 14px rgba(50,80,60,0.05);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  min-height: 70px;
  padding-top: 5px;
  padding-bottom: 5px;
}
header img {
  height: 46px;
  margin-right: 12px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-left: 10px;
}
header nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 16px;
  transition: background 0.17s, color 0.17s;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: var(--accent-dark);
}

header .button.primary {
  margin-left: auto;
  margin-right: 0;
  font-size: 1rem;
  padding: 11px 22px;
  min-width: 152px;
}

.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  padding: 8px 16px;
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.17s, color 0.12s, transform 0.14s;
  outline: none;
  z-index: 22;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(33,38,34,0.93);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 36px 30px 0 22px;
  z-index: 999;
  transform: translateX(-110vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.33s cubic-bezier(.35,1.4,.42,1), opacity 0.22s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.7rem;
  border: none;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 50%;
  transition: background .18s, color .17s;
  z-index: 1011;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  padding: 14px 8px;
  border-radius: 18px;
  transition: background 0.15s, color 0.15s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(225,239,227,0.16);
  color: #FFEAA7;
}

/* ==== MAIN ==== */
main {
  padding-bottom: 40px;
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 265px;
  max-width: 390px;
  color: #22512F;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.13s;
}
.testimonial-card strong {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 3px;
}
.testimonial-card p {
  color: #22512F;
}
.testimonial-card:hover {
  box-shadow: 0 10px 28px rgba(50,80,60,0.13);
  transform: translateY(-3px) scale(1.01);
}

/* ==== FOOTER ==== */
footer {
  background: #fff;
  padding: 38px 0 22px 0;
  box-shadow: 0 -2px 16px rgba(50,80,60,0.06);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--primary);
}
.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 1rem;
}
.footer-nav a{
  color: var(--primary);
  font-family: var(--font-display);
  padding: 2px 10px;
  border-radius: 12px;
  transition: background 0.11s, color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}
.footer-contact {
  font-size: 1rem;
  color: var(--text-light);
  margin-left: 14px;
}

/* ==== LEGAL SECTIONS ==== */
.legal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 38px 28px;
  margin-bottom: 54px;
}
.legal h1, .legal h2 {
  color: var(--primary);
}

/* ==== RESPONSIVE & MOBILE-FIRST ==== */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .container { max-width: 96vw; }
}
@media (max-width: 768px) {
  html {font-size: 15px;}
  h1, .hero h1 { font-size: 2.02rem; }
  h2 { font-size: 1.36rem; }
  .header .container,
  .footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  section, .section {
    padding: 30px 0;
    margin-bottom: 39px;
  }
  .feature-grid, .features, .service-list, .services-overview, .project-list, .workshop-list, .impact-stories, .testimonials, .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .service-item, .card, .project-item, .impact-item, .workshop-item {
    min-width: unset;
    width: 100%;
  }
  header nav { display: none; }
  header .button.primary { display: none; }
  .mobile-menu-toggle { display: block; }
  .content-wrapper, .text-section {
    align-items: flex-start;
    padding: 0;
    gap: 14px;
  }
  .text-image-section { flex-direction: column; gap: 20px; }
  .footer-nav, .footer-contact, .footer-brand {
    margin-left: 0 !important;
    width: 100%;
  }
  .footer-nav {
    gap: 14px;
    padding-top: 12px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  html {font-size: 14px;}
  .container { padding: 0 7px; }
  .button, a.button {
    padding: 10px 16px;
    font-size: .97rem;
  }
  .hero {
    padding: 22px 0 22px 0;
  }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fffbe8;
  color: #333a1a;
  box-shadow: 0 -2px 18px rgba(50,80,60,0.09);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 38px 22px 22px;
  border-radius: 28px 28px 0 0;
  font-size: 1rem;
  animation: slideUp 0.44s cubic-bezier(.36,1.24,.46,1);
}
@keyframes slideUp {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
  color: #333a1a;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-banner .button {
  font-size: 1rem;
  padding: 10px 23px;
  border-radius: 18px;
  box-shadow: 0 1px 6px rgba(32,92,59,.07);
  transition: background 0.19s, color 0.15s, transform 0.15s;
  border: none;
}
.cookie-banner .button.accept {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .button.reject {
  background: #db5a4f;
  color: #fff;
}
.cookie-banner .button.settings {
  background: var(--accent);
  color: #fff;
}
.cookie-banner .button:hover, .cookie-banner .button:focus {
  opacity: 0.92;
  transform: translateY(-2px) scale(1.03);
}

/* ==== COOKIE SETTINGS MODAL ==== */
.cookie-modal-backdrop {
  position: fixed;
  top: 0;left: 0;right: 0;bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,38,34,0.62);
  z-index: 4010;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .21s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #205C3B;
  border-radius: 22px;
  box-shadow: 0 8px 42px rgba(30,44,24,0.19);
  padding: 38px 30px 30px 30px;
  max-width: 375px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
  animation: popin .35s cubic-bezier(.4,1.3,.4,1.02);
}
@keyframes popin {
  from { transform: scale(0.76); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.38rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category input[type=checkbox] {
  width: 21px; height: 21px;
  accent-color: var(--primary);
  border-radius: 6px;
}
.cookie-category input[type=checkbox][disabled] {
  opacity: .5;
}
.cookie-category label {
  font-size: 1.03rem;
  color: var(--primary);
}
.cookie-modal-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 5px;
}
.cookie-modal .button {
  padding: 8px 20px;
  border-radius: 14px;
  font-size: 1rem;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 9px; right: 13px;
  background: transparent;
  color: var(--primary);
  font-size: 1.8rem;
  border: none;
  border-radius: 50%;
  padding: 4px 7px;
  cursor: pointer;
  transition: background .14s, color .16s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: var(--secondary);
  color: var(--accent);
}

/* ==== ANIMATIONS ==== */
.button, .card, .feature-item, .testimonial-card, .service-item, .workshop-item, .impact-item, .project-item {
  transition: box-shadow 0.15s, transform .13s, background .14s, color .14s;
}

/* ==== SELECTION ==== */
::selection {
  background: #ACD3B3;
  color: #205C3B;
}

/* ==== FOR FORMS (if any later added) ==== */
input, textarea, select {
  font-family: var(--font-body);
  background: #fff;
  border-radius: 15px;
  border: 1.5px solid #E1EFE3;
  color: #205C3B;
  padding: 10px 14px;
  font-size: 1rem;
  margin-bottom: 14px;
  box-shadow: 0 2px 6px rgba(50,80,60,0.07);
  transition: border 0.12s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(32,92,59,0.07);
}

/* END OF STYLE */
