/* CSS RESET & BASE STYLES */
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;
  --color-bg: #fff;
  --color-fg: #111;
  --color-primary: #111;
  --color-secondary: #666;
  --color-accent: #f7f7ee;
  --brand-green: #225D37;
  --brand-grey: #878787;
  --brand-lightgrey: #f4f4f4;
  --brand-white: #fff;
}
body {
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  color: #050505;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.75rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; font-weight: 600; color: #222; }
h4 { font-size: 1.15rem; }

p, ul, ol {
  margin-bottom: 1.1em;
  color: var(--color-secondary);
}
ul, ol {
  padding-left: 1.55em;
}
strong, b {
  color: #111;
  font-weight: 700;
}
a {
  color: #111;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--brand-green);
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
address {
  font-style: normal;
  color: #444;
  font-size: 1rem;
  margin-bottom: 10px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* SPACING & FLEX LAYOUTS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 3px 20px 0 rgba(0,0,0,0.07),0 1.5px 4px 0 rgba(0,0,0,0.03);
  border-radius: 14px;
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  min-width: 240px;
  transition: box-shadow 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 30px 0 rgba(0,0,0,0.10),0 2px 8px 0 rgba(0,0,0,0.1);
}
.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;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
  padding: 20px 28px;
  margin-bottom: 20px;
  max-width: 560px;
  min-width: 220px;
  border-left: 4px solid var(--brand-green);
  transition: box-shadow 0.16s, border-color 0.2s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: #111;
  box-shadow: 0 5px 24px 0 rgba(0,0,0,0.10);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO & FEATURE SECTIONS */
.hero, .about-hero, .program-hero, .offer-hero, .contact-hero, .testimonial-hero, .thank-you {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-subline {
  font-size: 1.18rem;
  color: #333;
  margin-bottom: 32px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* FEATURES GRID */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
  justify-content: flex-start;
}
.features .feature {
  background: #fafafb;
  box-shadow: 0 1.5px 8px 0 rgba(40,40,40,0.09);
  border-radius: 11px;
  padding: 22px 16px;
  flex: 1 1 234px;
  min-width: 180px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.features .feature img {
  width: 42px;
  margin-bottom: 15px;
  filter: grayscale(100%) contrast(1.25);
}
.features .feature h3 {
  font-size: 1.12rem;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.features .feature p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 0;
}
/* SERVICES/PROGRAMME GRID */
.services-overview, .program-list .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-box, .program-item {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 10px 0 rgba(40,40,40,0.07);
  padding: 26px 20px 22px 20px;
  flex: 1 1 265px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.16s;
}
.service-box:hover, .program-item:hover {
  box-shadow: 0 6px 24px 0 rgba(40,40,40,0.12);
}
.service-price {
  margin-top: 12px;
  color: #225D37;
  font-weight: 700;
  font-size: 1.04rem;
}

/* TESTIMONIALS */
.testimonials-preview .testimonial-slider, .testimonials-full, .testimonial-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 25px;
}
.testimonial-filters {
  gap: 18px;
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}
.testimonial-filters li {
  background: #fafafa;
  border: 1px solid #eee;
  padding: 6px 18px;
  border-radius: 18px;
  font-size: 0.96rem;
  cursor: pointer;
  margin-bottom: 10px;
  color: #222;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: border-color 0.18s, background 0.16s, color 0.18s;
}
.testimonial-filters li:hover, .testimonial-filters li.active {
  border-color: var(--brand-green);
  background: #fff;
  color: var(--brand-green);
}

.testimonial-card p {
  color: #181818;
  font-size: 1.09rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.testimonial-card .person {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #222;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* CTA, BUTTONS & MICRO-INTERACTIONS */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: 28px;
  border: none;
  padding: 13px 32px;
  margin: 8px 0 0 0;
  background: #111;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.04em;
  box-shadow: 0 1px 5px 0 rgba(0,0,0,0.05);
  transition: background 0.21s, color 0.18s, box-shadow 0.19s;
}
.cta.primary {
  background: var(--brand-green);
  color: #fff;
  border: 2px solid var(--brand-green);
}
.cta.secondary {
  background: #fff;
  color: #222;
  border: 2px solid #b5b5b5;
}
.cta:hover, .cta:focus {
  background: #fff;
  color: var(--brand-green);
  border-color: var(--brand-green);
  box-shadow: 0 1.5px 15px 0 rgba(60,60,60,0.09);
}
.cta.primary:hover, .cta.primary:focus {
  background: #fff;
  color: var(--brand-green);
}

/* VALUE ICONS */
.value-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  margin-top: 16px;
}
.value-icons img {
  width: 38px;
  filter: grayscale(1) brightness(0.8);
}
.value-icons span {
  margin-right: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  color: #333;
  font-weight: 500;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #ededed;
  margin-top: 80px;
  padding-top: 30px;
  padding-bottom: 36px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-logo img {
  width: 58px;
  height: auto;
  margin-bottom: 14px;
}
.footer-navigation ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-navigation a {
  color: #222;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-decoration: underline;
  transition: color 0.16s;
}
.footer-navigation a:hover, .footer-navigation a:focus { color: var(--brand-green); }
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.footer-social img {
  width: 28px;
  height: 28px;
  filter: grayscale(100%) contrast(1.15);
  opacity: 0.7;
  transition: opacity 0.14s;
}
.footer-social img:hover { opacity: 1; }
.footer-contact {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #444;
  font-size: 0.99rem;
}

/* MAIN-NAVIGATION & HEADER */
header {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  padding: 0;
  position: relative;
}
.main-navigation {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 20px 18px 20px;
  justify-content: space-between;
}
.main-navigation > a img {
  height: 44px;
  width: auto;
  margin-right: 16px;
}
.main-navigation ul {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 0 10px;
}
.main-navigation ul li a {
  color: #101010;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.2s, color 0.18s;
  text-decoration: none;
}
.main-navigation ul li a:hover, .main-navigation ul li a:focus {
  color: var(--brand-green);
  background: #f4f4f4;
}
.main-navigation .cta.primary {
  padding: 10px 22px;
  font-size: 0.99rem;
  margin-left: 24px;
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 1.7px solid #111;
  font-size: 2.14rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #101010;
  cursor: pointer;
  margin: 0 20px 0 0;
  z-index: 1012;
  transition: border 0.16s, background 0.16s, color 0.13s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #f4f4f4;
  color: var(--brand-green);
  border-color: var(--brand-green);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  background: #111;
  color: #fff;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.4,0,.2,1);
  box-shadow: -3px 0 24px 0 rgba(0,0,0,0.22);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  right: 24px;
  top: 26px;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 1300;
  transition: color 0.13s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--brand-green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin: 68px 34px 0 34px;
  gap: 16px;
  height: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.17rem;
  padding: 14px 0;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-bottom: 1px solid #313131;
  transition: color 0.16s, border 0.16s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--brand-green);
  border-color: var(--brand-green);
}

/* LEGAL TEXT SECTIONS */
.legal-text {
  background: #fafafb;
  border-radius: 12px;
  padding: 46px 30px;
  margin: 50px 0 0 0;
}

/* CONTACT SECTION */
.contact-details {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1.5px 8px 0 rgba(20,20,20,0.03);
  padding: 12px 18px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 1.04rem;
  color: #222;
}
.contact-details strong {
  color: #101010;
}

.contact-form {
  background: #fafafb;
  border-radius: 12px;
  padding: 36px 26px 30px 26px;
  margin: 40px 0 0 0;
}

.map-location {
  margin: 32px 0; 
}

/* FAQ PAGE */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 20px 18px 10px 18px;
  box-shadow: 0 1px 7px 0 rgba(50,60,60,0.06);
  margin-bottom: 20px;
}
.faq-item h3 {
  margin-bottom: 7px;
  color: #1d1d1d;
}

/* THANK YOU PAGE */
.thank-you {
  background: #fafafb;
  border-radius: 11px;
  text-align: center;
}
.thank-you-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 28px;
}

/* MOBILE FIRST MEDIA QUERIES */
@media (max-width: 1100px) {
  .container, .footer-main { max-width: 960px; }
}
@media (max-width: 900px){
  .container, .footer-main { max-width: 100%; }
  .main-navigation, .footer-main { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.35rem; }
  .main-navigation ul { display: none; }
  .main-navigation .cta.primary { display: none; }
  .main-navigation { padding: 13px 12px 10px 13px; }
  .footer-main { flex-direction: column; gap: 20px; align-items: flex-start; }
  .footer-social { margin-top: 12px; }
  .hero, .about-hero, .program-hero, .offer-hero, .contact-hero, .testimonial-hero, .thank-you {
    padding-top: 24px;
    padding-bottom: 28px;
    min-height: 140px;
  }
  .container { padding: 0 10px; }
  .card-container, .content-grid, .features .feature-grid, .services-overview, .testimonials-preview .testimonial-slider, .testimonials-full, .thank-you-links, .footer-navigation ul, .value-icons {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card, .card, .service-box, .program-item, .faq-item {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 8px;
    top: 14px;
    z-index: 1205;
  }
  .mobile-menu { width: 100vw; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.04rem; }
  .section { padding: 26px 4px; }
  .legal-text { padding: 22px 6px; }
  .card, .service-box, .program-item, .contact-form {
    padding: 16px 10px;
  }
  .footer-main { padding: 0 6px; }
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #222;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  padding: 18px 28px;
  z-index: 1600;
  box-shadow: 0 -2px 10px 0 rgba(0,0,0,0.17);
  font-size: 1rem;
  transition: transform 0.33s cubic-bezier(.4,0,.2,1);
  transform: translateY(120%);
}
.cookie-consent-banner.visible {
  transform: translateY(0);
}
.cookie-consent-banner .cookie-text {
  flex: 1 1 320px;
  margin-right: 16px;
  font-size: 1rem;
  line-height: 1.5;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 26px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 4px;
  margin-right: 0;
  transition: background 0.22s, color 0.17s, border-color 0.13s;
  background: #fff;
  color: #222;
}
.cookie-btn.accept {
  background: var(--brand-green);
  color: #fff;
  border: 2px solid var(--brand-green);
}
.cookie-btn.settings {
  background: #fafafb;
  color: #111;
  border: 2px solid #bbb;
}
.cookie-btn.reject {
  background: #fff;
  color: #111;
  border: 2px solid #888;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-green);
  color: #fff;
  border-color: var(--brand-green);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #e9ece3;
  color: #111;
  border-color: var(--brand-green);
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(24,24,24,.62);
  z-index: 1610;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
}
.cookie-modal-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fafafa;
  border-radius: 13px;
  box-shadow: 0 8px 36px 0 rgba(0,0,0,0.19);
  padding: 34px 28px 26px 28px;
  min-width: 320px;
  max-width: 95vw;
  transition: transform 0.23s cubic-bezier(.4,0,.2,1);
  transform: translateY(90px) scale(0.98);
}
.cookie-modal.visible {
  transform: translateY(0) scale(1);
}
.cookie-modal h2 {
  font-size: 1.38rem;
  margin-bottom: 12px;
}
.cookie-modal .modal-section {
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}
.cookie-modal .category {
  font-weight: 700;
  color: #225D37;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 4px;
  font-size: 1.04rem;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.cookie-toggle {
  appearance: none;
  width: 36px; height: 20px;
  background: #c2c2c2;
  border-radius: 16px;
  position: relative;
  outline: none;
  transition: background 0.2s;
  vertical-align: middle;
  margin-right: 9px;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #225D37;
}
.cookie-toggle::after {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 1px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
  transition: left 0.2s;
}
.cookie-toggle:checked::after {
  left: 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2.1rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #225D37; }

@media (max-width: 600px) {
  .cookie-consent-banner { flex-direction: column; gap: 14px; padding: 18px 6px; align-items: flex-start; }
  .cookie-modal { padding: 18px 4px 14px 8px; }
}