/* === 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F6F5F1;
  color: #225740;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #225740;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #B7C963;
  outline-offset: 2px;
}
strong {
  font-weight: 700;
}
ul, ol {
  list-style: none;
}
button, .cta-btn {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.text-section {
  align-items: flex-start;
}
.text-section h3 {
  font-size: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #225740;
}
.text-section ul {
  padding-left: 0;
}
.text-section li {
  margin-bottom: 14px;
  font-size: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #225740;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  margin-top: 0;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-weight: 700;
}
p {
  font-size: 1rem;
  color: #225740;
}

/* === HEADER & NAVIGATION === */
header {
  background: #225740;
  color: #fff;
  padding: 0;
  box-shadow: 0 2px 12px rgba(34,87,64,0.14);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img {
  height: 48px;
  width: auto;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-left: 32px;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 0;
  position: relative;
  transition: color 0.15s;
}
.main-nav a::after {
  display: block;
  content: '';
  height: 2px;
  width: 0%;
  background: #B7C963;
  transition: width 0.2s;
  margin-top: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #B7C963;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
.cta-btn {
  background: #B7C963;
  color: #1b3227;
  border-radius: 32px;
  padding: 12px 26px;
  font-size: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(183,201,99,0.15);
  margin-left: 28px;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, color 0.2s, transform 0.12s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #225740;
  color: #fff;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 4px 20px rgba(34,87,64,0.20);
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #B7C963;
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: 8px;
  margin-left: 16px;
  z-index: 201;
  transition: background .2s, color .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #1b3227;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #225740;
  color: #fff;
  z-index: 200;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.49,.19,.24,1.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  box-shadow: -4px 0 24px rgba(34,87,64,0.16);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #B7C963;
  font-size: 2.25rem;
  font-weight: 700;
  align-self: flex-end;
  margin: 18px 24px 0 0;
  border-radius: 8px;
  padding: 0 8px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #B7C963;
  color: #225740;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 24px 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 12px 0;
  width: 100%;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B7C963;
  color: #1b3227;
}

/* Hide desktop nav on mobile, show hamburger */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 10px;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* === MAIN CONTENT & SECTIONS === */
main {
  margin-top: 0px;
}
section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 32px rgba(34,87,64,0.045);
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  section {
    padding: 26px 8px;
    margin-bottom: 40px;
  }
  .container {
    padding: 0 8px;
  }
}

/* === FEATURE & CARD STYLES === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
}
.feature-grid li {
  background: #B7C963;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(183,201,99,0.11);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 26px 20px 18px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 265px;
  margin-bottom: 20px;
  transition: transform 0.12s, box-shadow 0.18s;
}
.feature-grid li img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}
.feature-grid li strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 19px;
  color: #225740;
  margin-bottom: 5px;
  font-weight: 800;
}
.feature-grid li p {
  color: #1b3227;
  font-size: 15px;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 8px 32px rgba(34,87,64,0.14);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 20px 0;
  padding: 0;
}
.service-list li {
  background: #F6F5F1;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 10px;
  font-size: 1.085rem;
  color: #225740;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(34,87,64,0.06);
}
.service-list li strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #225740;
  font-size: 17px;
  font-weight: 800;
}
.service-list li span {
  color: #628D53;
  margin-left: 12px;
  font-weight: 700;
  font-size: 97%;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(34,87,64,0.075);
  position: relative;
  padding: 26px 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.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;
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .service-list {
    gap: 12px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

/* === TESTIMONIALS === */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(34,87,64,0.11);
  min-height: 85px;
  margin-bottom: 20px;
  flex: 1 1 280px;
  max-width: 690px;
  transition: transform 0.1s, box-shadow 0.18s;
}
.testimonial-card p {
  font-size: 1.11rem;
  font-weight: 600;
  color: #225740;
  margin-right: 24px;
}
.testimonial-card span {
  font-size: 1rem;
  color: #628D53;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px rgba(34,87,64,0.15);
  transform: translateY(-2px) scale(1.015);
}

/* Color – testimonial section background: off-white for contrast */
section:has(.testimonial-card), section .testimonial-card {
  background: #F6F5F1 !important;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
    max-width: 100%;
  }
}

/* === CONTACT DETAILS & LISTS === */
.text-section ul, .content-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}
.text-section ul li, .content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #225740;
}
.text-section ul li img {
  width: 28px;
  height: 28px;
}
.map-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #B7C963;
  border-radius: 12px;
  color: #225740;
  font-size: 1rem;
  margin-top: 8px;
  padding: 10px 13px;
}
.map-hint img {
  width: 22px;
  height: 22px;
}

/* === FOOTER === */
footer {
  background: #1b3227;
  color: #fff;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  box-shadow: 0 -2px 18px rgba(34,87,64,0.08);
  margin-top: 70px;
  padding: 36px 0 20px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding: 0 20px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 12px;
  justify-content: center;
}
.footer-nav a {
  color: #B7C963;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-branding img {
  height: 38px;
}
.footer-branding span {
  font-size: 1rem;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: 0.89;
  text-align: center;
  margin-bottom: 2px;
  font-weight: 600;
}
.social-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 3px;
}
.social-icons img {
  width: 28px;
  height: 28px;
  opacity: 0.9;
  transition: opacity 0.15s, transform 0.16s;
}
.social-icons img:hover, .social-icons img:focus {
  opacity: 1;
  transform: translateY(-2px) scale(1.13);
}

@media (max-width: 768px) {
  .footer-nav {
    gap: 18px;
    font-size: 0.98rem;
    flex-wrap: wrap;
  }
  .footer-branding span {
    font-size: 0.97rem;
  }
}

/* === BUTTONS === */
button, .cta-btn {
  cursor: pointer;
  border: none;
  border-radius: 32px;
  background: #B7C963;
  color: #1b3227;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 12px 24px;
  margin-right: 0;
  transition: background 0.2s, color 0.16s, transform 0.13s, box-shadow 0.175s;
  box-shadow: 0 2px 10px rgba(183,201,99,0.12);
}
button:hover, .cta-btn:hover, button:focus, .cta-btn:focus {
  background: #225740;
  color: #fff;
  transform: scale(1.04) translateY(-1px);
  box-shadow: 0 6px 24px rgba(34,87,64,0.18);
}

/* Cards general */
.card, .content-wrapper > .card, .feature-item {
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(34,87,64,0.08);
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === COOKIE CONSENT BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #225740;
  color: #fff;
  z-index: 300;
  padding: 28px 12px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 -2px 24px rgba(34,87,64,0.13);
  gap: 14px;
  animation: cookieIn 0.44s cubic-bezier(.46,.17,.58,1.04);
}
@keyframes cookieIn {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: 24px;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: background 0.14s, color 0.14s;
  box-shadow: 0 2px 10px rgba(183,201,99,0.10);
}
.cookie-btn.accept {
  background: #B7C963;
  color: #225740;
}
.cookie-btn.accept:hover {
  background: #225740;
  color: #fff;
}
.cookie-btn.reject {
  background: #F04C38;
  color: #fff;
}
.cookie-btn.reject:hover {
  background: #B7C963;
  color: #225740;
}
.cookie-btn.settings {
  background: #fff;
  color: #225740;
}
.cookie-btn.settings:hover {
  background: #B7C963;
  color: #225740;
}

/* Cookie Modal Popup */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 87, 64, 0.54);
  z-index: 400;
  animation: cookieBackdropIn .4s;
}
@keyframes cookieBackdropIn { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%) scale(0.96);
  min-width: 310px;
  max-width: 98vw;
  width: 420px;
  background: #fff;
  color: #225740;
  border-radius: 20px;
  z-index: 410;
  box-shadow: 0 14px 56px rgba(34,87,64,0.20);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 36px 24px 24px 28px;
  animation: cookieModalIn .32s cubic-bezier(.52,.1,.49,1.23);
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translate(-50%, -70%) scale(0.91); }
  100% { opacity: 1; transform: translate(-50%, -60%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.33rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #225740;
  font-weight: 800;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 15px 0;
  width: 100%;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cookie-modal .cookie-category label {
  font-weight: 700;
  color: #1b3227;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-modal .cookie-category input[type='checkbox'] {
  accent-color: #B7C963;
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.cookie-modal .cookie-category.essential label {
  color: #225740;
  font-weight: 800;
}
.cookie-modal .cookie-category.essential input[type='checkbox'] {
  accent-color: #B7C963;
  background: #eee;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 14px;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  color: #225740;
  font-size: 1.5rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  padding: 0 6px;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  background: #B7C963;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 28px 8px 18px 10px;
    width: 96vw;
    min-width: 0;
  }
}

/* === MEDIA QUERIES === */
@media (max-width: 1024px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 8px 8px 8px 10px;
    gap: 0;
  }
  .logo img {
    height: 40px;
    margin-right: 8px;
  }
  .cta-btn {
    font-size: 16px;
    padding: 10px 18px;
  }
}
@media (max-width: 900px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.45rem;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.37rem;
    margin-bottom: 11px;
  }
  h2 {
    font-size: 1.1rem;
  }
  section {
    padding: 16px 2px;
  }
  .container {
    padding: 0 2px;
  }
}

/* === VISUAL EFFECTS: SHADOWS, BORDERS === */
section, .card, .feature-grid li, .testimonial-card, .content-wrapper > .card, .feature-item {
  box-shadow: 0 2px 12px rgba(34,87,64,0.08);
  border-radius: 18px;
}

/* === MICRO-INTERACTIONS === */
a, button, .cta-btn, .feature-grid li, .testimonial-card {
  transition: background 0.15s, color 0.15s, box-shadow 0.16s, transform 0.13s;
}
.feature-grid li:active, .testimonial-card:active {
  transform: scale(0.97);
  box-shadow: 0 0 0 transparent;
}

/* === FLEX WRAPPING & MARGINS FOR ALL DOTS === */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .service-list, .content-grid, .text-image-section {
  gap: 20px !important;
}
.card, .testimonial-card, .feature-grid li, .service-list li, .card-content, .feature-item, .content-wrapper > .card {
  margin-bottom: 20px !important;
}

.feature-item {
  gap: 15px !important;
  align-items: flex-start !important;
}

/* === ACCESSIBILITY: FOCUS RINGS === */
a:focus, button:focus, .cta-btn:focus, .mobile-nav a:focus, .mobile-menu-close:focus {
  outline: 2.5px solid #B7C963;
  outline-offset: 2px;
}

/* === SELECTION COLOUR === */
::selection {
  background: #B7C963;
  color: #225740;
}

/* === SCROLLBAR (Webkit) === */
::-webkit-scrollbar {
  width: 10px;
  background: #F6F5F1;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #B7C963;
  border-radius: 10px;
}
