/* 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;outline: 0;font-size: 100%;font: inherit;vertical-align: baseline;box-sizing: border-box;}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
body {line-height: 1;}
ol, ul {list-style: none;}
a {text-decoration: none;color: inherit;}
img {display: block;max-width: 100%;height: auto;}
button, input, select, textarea {font: inherit;}

/* COLOR SYSTEM */
:root {
  --primary: #17624a; /* dark green */
  --secondary: #e6f4ea; /* soft green bg */
  --accent: #ffac41; /* brand accent */
  --accent-hover: #ff9800;
  --text-main: #192621;
  --text-light: #58635c;
  --background: #ffffff;
  --shadow: 0 2px 16px rgba(23, 98, 74, 0.07);
  --border-radius: 12px;
}

body {
  background: var(--background);
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text-main);
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
h1 {font-size: 2.5rem; font-weight: 700; margin-bottom: 20px;}
h2 {font-size: 2rem; font-weight: 600; margin-bottom: 18px;}
h3 {font-size: 1.4rem; font-weight: 500; margin-bottom: 10px;}
h4, h5, h6 {font-size: 1.1rem; margin-bottom: 8px;}

p, ul, ol {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 1em;
  line-height: 1.7;
  max-width: 64ch;
}
ul, ol {margin-left: 1.4em; padding-left: 0;}
ul li, ol li {margin-bottom: 8px; line-height: 1.6;}
strong, b {color: var(--primary); font-weight: 700;}
em, i {color: var(--accent);}

hr {border: none; border-top: 1px solid #E8EAE5; margin: 28px 0;}

/* LAYOUT UTILITIES & CONTAINERS */
.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--background);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
}
.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: var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(23,98,74,0.05);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 220px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 280px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.18s cubic-bezier(.44,.22,.1,1);
}
.service-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  filter: grayscale(0.3) brightness(0.96);
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 9px;
  color: var(--primary);
}
.service-card p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0;
}
.service-card strong {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 6px 24px rgba(23,98,74,0.10);
  z-index: 2;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}

.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.feature-icons img {
  width: 44px;
  height: 44px;
  opacity: 0.88;
  filter: grayscale(0.25);
}

.location-map p {
  font-size: 1rem;
  color: var(--text-main);
  margin-top: 10px;
}

/* HEADER */
header {
  background: var(--background);
  width: 100%;
  box-shadow: 0 2px 18px rgba(23, 98, 74, 0.06);
  position: sticky;
  top: 0;
  z-index: 800;
}
header nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0 12px 0;
  position: relative;
}
header nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
header nav a.cta-btn {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  padding: 9px 20px;
  box-shadow: 0 2px 12px rgba(255,146,56,0.08);
  letter-spacing: 0.02em;
  margin-left: auto;
  transition: background 0.18s;
}
header nav a.cta-btn:hover,
header nav a.cta-btn:focus {
  background: var(--accent-hover);
  color: #fff;
}
header nav a:hover,
header nav a:focus {
  background: var(--secondary);
}
header nav img {
  width: 106px;
  height: auto;
  margin-right: 18px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 6px;
  margin-left: auto;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--secondary);
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 6px 32px rgba(23, 98, 74, 0.12);
  z-index: 9999;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.55,.24,.16,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  padding: 18px 18px 8px 0;
  cursor: pointer;
  z-index: 2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin: 28px 32px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: var(--primary);
  padding: 10px 0 10px 3px;
  border-radius: 8px;
  width: 100%;
  display: block;
  font-weight: 500;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--secondary);
  color: var(--accent);
}

@media (max-width: 1024px) {
  .container {max-width: 98vw;}
  header nav {padding: 12px 0;}
}
@media (max-width: 920px) {
  header nav {gap: 10px;}
  .service-cards {gap: 16px;}
}
@media (max-width: 820px) {
  .service-cards {justify-content: center;}
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.4rem;}
  .container {padding: 0 9px;}
  .section {padding: 30px 4px;}
  .service-card {padding: 18px 7px;}
  .mobile-nav {margin: 24px 12px; gap: 18px;}
}

/* FLEX DIRECTION FOR TEXT-IMAGE SECTIONS (RESPONSIVE) */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* BUTTONS & CTA */
.cta-btn, button, .cookie-banner button {
  background: var(--accent);
  border: none;
  color: #fff;
  border-radius: 8px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 11px 32px;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(255,171,65,0.06);
  transition: background 0.16s, box-shadow 0.16s, color 0.2s;
  min-width: 120px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.cta-btn:hover,
.cta-btn:focus,
button:hover,
button:focus,
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 4px 18px rgba(255,171,65,0.14);
}

a.cta-btn:visited { color: #fff; }

/* INTERACTIVE STATE FOR LINKS IN CONTENT */
.text-section a, .content-wrapper a:not(.cta-btn) {
  color: var(--accent);
  border-bottom: 1px dotted var(--accent);
  transition: color 0.16s, border-color 0.16s;
}
.text-section a:hover, .text-section a:focus, .content-wrapper a:not(.cta-btn):hover, .content-wrapper a:not(.cta-btn):focus {
  color: var(--primary);
  border-color: var(--primary);
}

/* FOOTER */
footer {
  background: var(--secondary);
  padding: 30px 0 20px 0;
  margin-top: 80px;
  border-top: 1px solid #e2ede5;
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}
.footer-menu a {
  color: var(--primary);
  font-size: 1rem;
  border-radius: 6px;
  padding: 3px 7px;
  transition: background 0.12s, color 0.12s;
}
.footer-menu a:hover, .footer-menu a:focus {background: #e0eee4; color: var(--accent);}

.contact-snippet {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 9px;
}
.contact-snippet span a {color: var(--primary); border-bottom: 1px dotted var(--primary);}
.company-logo img {width: 44px; height: 44px; opacity: 0.93;}

@media (max-width: 600px) {
  footer .container {padding: 0 3px;}
  .footer-menu {gap: 9px; font-size: 0.91rem;}
  .company-logo img {width: 38px; height: 38px;}
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  border-top: 1px solid #e3ebec;
  box-shadow: 0 -1px 16px rgba(23,98,74,0.09);
  padding: 20px 18px;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  animation: cookie-banner-in 0.5s cubic-bezier(.66,.23,.22,1);
}
.cookie-banner p {
  color: var(--text-main);
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 60vw;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  min-width: 98px;
  font-size: 0.98rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 15px;
  font-weight: 600;
  box-shadow: none;
}
.cookie-banner button.settings {
  background: var(--secondary);
  color: var(--primary);
  border: 1px solid #cedecc;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #dae8ce;
}
.cookie-banner button.reject {
  background: #ededed;
  color: var(--primary);
  border: 1px solid #e0e6e7;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #d2dbd8;
  color: var(--accent);
}
@keyframes cookie-banner-in {
  0% { transform: translateY(60px); opacity:0; }
 100% { transform: translateY(0); opacity:1; } 
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
    padding: 16px 6px;
  }
  .cookie-banner p {max-width: 90vw;}
  .cookie-banner-actions {gap: 9px;}
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 98, 74, 0.13);
  z-index: 21000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn {
  0% {opacity: 0;}
 100% {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(23,98,74,0.16);
  max-width: 470px;
  width: 93vw;
  padding: 35px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-toggle {
  width: 38px;
  height: 20px;
  border-radius: 12px;
  background: #ddeedd;
  position: relative;
  border: 1.5px solid #dce4da;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-toggle.active {
  background: var(--accent);
  border-color: var(--accent-hover);
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 1px;
  left: 1px;
  transition: left 0.15s cubic-bezier(.5,0,.3,1);
  box-shadow: 0 0 4px rgba(0,0,0,0.05);
}
.cookie-toggle.active:before {
  left: 19px;
}
.cookie-modal-close {
  position: absolute;
  right: 20px;
  top: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 2;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}

/* ACCESSIBILITY/MISC */
:focus {outline: 2px solid var(--accent); outline-offset: 2px;}

/* SELECTION */
::selection {
  background: #E6F4EA;
  color: var(--primary);
}

/* SUBTLE SHADOWS & BORDERS */
.card, .service-card, .testimonial-card {
  box-shadow: var(--shadow);
}

/* RESPONSIVE FLEX LAYOUTS (EXAMPLES FROM SPECS) */
.features, .card-grid, .card-container, .service-cards, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card-grid, .service-cards {
  justify-content: space-between;
}

.features {
  flex-direction: row;
  gap: 20px;
}

@media (max-width: 820px) {
  .features, .card-grid, .service-cards {
    flex-direction: column;
    align-items: stretch;
  }
  .content-grid {
    flex-direction: column;
  }
}

/* TESTIMONIAL ACCESSIBILITY */
.testimonial-card {
  background: var(--secondary);
  color: var(--primary);
  font-size: 1.1rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(23,98,74,0.10);
  padding: 20px 26px;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.06rem;
  line-height: 1.7;
}
.testimonial-card span {
  color: var(--accent);
  font-size: 0.98rem;
  font-weight: 600;
}

@media (max-width: 540px) { 
  .testimonial-card { padding: 15px 11px; }
  .card, .service-card {padding: 13px 5px;}
  h1 {font-size: 1.5rem;}
  h2 {font-size: 1.18rem;}
}

/* MICRO-INTERACTIONS */
.card, .feature-item, .service-card, .testimonial-card, .cta-btn {
  transition: box-shadow 0.15s, background 0.13s, color 0.13s, transform 0.13s;
}
.card:hover, .service-card:hover, .testimonial-card:hover, .feature-item:hover {
  box-shadow: 0 6px 32px rgba(23,98,74,0.11);
  transform: translateY(-2px) scale(1.01);
}

/* FORM FIELDS */
input, textarea, select {
  border: 1.5px solid #e2ece5;
  border-radius: 7px;
  padding: 9px 12px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 16px;
  background: #f9fefb;
  color: var(--text-main);
  transition: border-color 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
}

/* ERROR & SUCCESS MSGS */
.success-msg {color: #2e9741; background: #edfaef; padding: 12px 14px; border-radius: 6px; margin-bottom: 12px;}
.error-msg {color: #942e2e; background: #fbeaea; padding: 12px 14px; border-radius: 6px; margin-bottom: 12px;}


/* HIDE ELEMENTS */
.hide {display: none !important;}

/* -- END OF BREEZY EXPANSION MINIMALIST CSS -- */
