/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #1a1a1a;
  background: #fff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #265D3A;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
  font-size: 1rem;
}
li + li {
  margin-top: 10px;
}
strong {
  font-weight: 700;
}

/* TYPOGRAPHY SCALE */
h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #222;
}
p, .subtitle {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  color: #292929;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.subtitle {
  color: #444;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 30px;
}
blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-style: italic;
  color: #222;
  line-height: 1.5;
  margin-bottom: 16px;
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* CONTAINER & SECTION LAYOUTS (SPACING & FLEX) */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.section,
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(32,32,32,0.06);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  max-width: 780px;
}

/* FLEX LAYOUTS & SPACING */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 10px;
}
.features-grid > div {
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 350px;
  background: #fafafa;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(40,40,40,0.07);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px; /* extra margin for mobile stacking */
  transition: box-shadow 0.23s;
}
.features-grid > div:hover {
  box-shadow: 0 8px 32px rgba(32,32,32,0.11);
}
.features-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

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

/* TESTIMONIALS (MONOCHROME, HIGH CONTRAST, CARD DESIGN) */
.testimonial-card {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  padding: 24px 24px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: #fcfcfc;
  box-shadow: 0 2px 16px rgba(48,48,48, 0.07);
  border: 1px solid #e2e2e2;
  transition: box-shadow 0.2s, border 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(30,30,30,0.13);
  border: 1px solid #bbb;
}
.testimonial-card img {
  width: 44px;
  height: 44px;
  filter: grayscale(1);
}
.testimonial-card blockquote {
  color: #101010;
  margin: 0 0 0 0;
  flex: 1;
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #3a3a3a;
  font-size: 1rem;
}

/* SPECIAL CARD & FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fafafa;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(50,50,50,0.07);
  padding: 24px;
  min-width: 220px;
  transition: box-shadow 0.22s, border 0.2s;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0;
}

/***************************
   HEADER & NAVIGATION
***************************/
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px 16px 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  position: relative;
  z-index: 100;
}
header > a img {
  height: 48px;
}
header nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #222;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.17s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
header nav a:hover, header nav a:focus {
  color: #265D3A;
  border-bottom: 2px solid #265D3A;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: #222;
  padding: 12px 32px;
  border-radius: 26px;
  border: none;
  box-shadow: 0 2px 10px rgba(38,38,38, 0.10);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.22s, color 0.22s, box-shadow 0.2s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #265D3A;
  color: #fff;
  box-shadow: 0 6px 30px rgba(38,93,58,0.19);
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  background: #fff;
  border: 2px solid #222;
  padding: 10px 30px;
  border-radius: 26px;
  margin-left: 18px;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
  box-shadow: none;
}
.cta-secondary:hover, .cta-secondary:focus {
  color: #fff;
  background: #265D3A;
  border-color: #265D3A;
  box-shadow: 0 2px 12px rgba(38,93,58,0.08);
}

/***************************
   MOBILE NAVIGATION
***************************/
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 1.5px solid #222;
  border-radius: 50%;
  font-size: 2rem;
  color: #111;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 121;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08)
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 30px rgba(24,24,24,0.11);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.77,0,0.175,1);
  z-index: 120;
  padding-top: 52px;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: #222;
  cursor: pointer;
  z-index: 130;
  line-height: 1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
  width: 100%;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.32rem;
  font-weight: 600;
  color: #181818;
  padding: 12px 0;
  width: 100%;
  border-radius: 8px;
  transition: background 0.18s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #eee;
  color: #265D3A;
}

/******************************
  FOOTER
******************************/
footer {
  padding: 36px 20px 28px 20px;
  background: #222;
  color: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -6px 40px rgba(24,24,24,0.10);
  margin-top: 42px;
}
footer nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  opacity: 0.92;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: color 0.18s, border-bottom 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #B0DAB9;
  border-bottom: 1.5px solid #B0DAB9;
}
.footer-contact {
  margin-top: 10px;
  font-size: 0.97rem;
  color: #ececec;
}
.footer-contact a {
  color: #B0DAB9;
  text-decoration: underline;
  transition: color 0.13s;
}
.footer-contact a:hover {
  color: #fff;
}

/***********************
    COOKIE CONSENT
***********************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #282828;
  color: #fff;
  padding: 20px 10px 22px 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.22);
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  border: none;
  border-radius: 24px;
  margin-left: 8px;
  padding: 9px 24px;
  margin-top: 5px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
}
.cookie-btn-accept {
  background: #265D3A;
  color: #fff;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #388055;
  color: #fff;
}
.cookie-btn-reject {
  background: #fff;
  color: #111;
  border: 2px solid #444;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #111;
  color: #fff;
  border: 2px solid #222;
}
.cookie-btn-settings {
  background: #B0DAB9;
  color: #222;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #265D3A;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,40,40,0.65);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.32s;
}
.cookie-modal {
  background: #fff;
  color: #111;
  border-radius: 22px;
  box-shadow: 0 12px 54px rgba(24,24,24,0.20);
  max-width: 360px;
  width: 93vw;
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  animation: fadeInModal 0.4s;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.28rem;
  font-weight: 700;
  color: #101010;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-size: 1rem;
  margin-right: 10px;
  color: #212121;
  display: flex;
  align-items: center;
}
.cookie-modal input[type=checkbox] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}
.cookie-category {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.cookie-category .locked {
  color: #969696;
  margin-left: 7px;
  font-size: 0.98rem;
}
.cookie-modal .cookie-btn-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.7rem;
  background: transparent;
  border: none;
  color: #444;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .cookie-btn-modal-close:hover { color: #265D3A; }
.cookie-modal .cookie-btn-modal-save {
  margin-top: 4px;
  background: #265D3A;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  padding: 9px 30px;
  border-radius: 24px;
  font-weight: 600;
  transition: background 0.18s;
}
.cookie-modal .cookie-btn-modal-save:hover,
.cookie-modal .cookie-btn-modal-save:focus {
  background: #388055;
}

/***************************
 BUTTONS, FORMS, CTAs
***************************/
button, input[type=submit] {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
}
input, textarea {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

/***********************
  MAP & EMBED SECTIONS
***********************/
.map-embed {
  padding: 28px 0 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafbfc;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(32,32,32,0.04);
}

/***************************
      THANK YOU PAGE
***************************/
.thank-you-message {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fafafa;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(30,30,30,0.07);
  padding: 34px 30px;
  max-width: 650px;
  margin-top: 24px;
}

/***************************
   VISUAL STYLES
***************************/
/* Monochrome-sophisticated widget look */
.section, .content-wrapper, .thank-you-message, .features-grid > div, .testimonial-card, .card {
  background: #fff;
  color: #1a1a1a;
}

.section {
  border: 1.5px solid #e8e8e8;
  box-shadow: 0 8px 32px rgba(40,40,40,0.05);
  margin-bottom: 60px;
  padding: 40px 20px;
}

/***** MONOCHROME EFFECTS *****/
.features-grid img, .testimonial-card img,
.card img, .map-embed img, .text-section img {
  filter: grayscale(100%) contrast(1.04);
}

/***** MICRO-INTERACTIONS *****/
.cta-primary, .cta-secondary, .cookie-banner button, .cookie-modal button, .mobile-menu-toggle {
  transition: background 0.21s, color 0.19s, box-shadow 0.18s, border 0.14s;
}
.features-grid > div:hover, .card:hover {
  box-shadow: 0 10px 46px rgba(35,35,35,0.16);
  border-color: #d3d3d3;
  transform: translateY(-2px);
}

/***************************/
/***** RESPONSIVE CSS ******/
/***************************/
@media (max-width: 1024px) {
  .features-grid {
    gap: 20px;
  }
  .features-grid > div {
    max-width: 320px;
    min-width: 180px;
    padding: 20px 10px 16px 10px;
  }
  header nav {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
    padding: 0 12px;
  }
  .features-grid {
    gap: 12px;
  }
  .card-container, .content-grid {
    gap: 10px;
  }
}
@media (max-width: 800px) {
  h1 {
    font-size: 2.15rem;
  }
  h2 {
    font-size: 1.57rem;
  }
  .section {
    padding: 20px 10px;
  }
  .features-grid > div {
    min-width: 90vw;
    max-width: 99vw;
    padding: 18px 12px;
  }
  footer {
    padding: 22px 10px 20px 10px;
  }
  header{
    padding: 14px 10px 8px 10px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .cta-primary {
    padding: 10px 14px;
    font-size: 1.04rem;
  }
  .cta-secondary {
    padding: 9px 12px;
    font-size: 1.02rem;
    margin-left: 8px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .features-grid {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 10px 18px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .container {
    padding: 0 4vw;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.5rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.12rem;
    margin-bottom: 10px;
  }
  .subtitle {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  .section {
    margin-bottom: 36px;
    padding: 13px 3vw;
  }
  .testimonial-card {
    padding: 14px 0 14px 0;
  }
  .cookie-modal {
    padding: 14px 7vw 13px 7vw;
  }
  .thank-you-message {
    padding: 18px 4vw;
    margin-top: 10px;
  }
  .mobile-menu .mobile-nav {
    padding-left: 12px;
    gap: 15px;
  }
}

/**********************
   UTILITY CLASSES
**********************/
.mt-4 { margin-top: 32px;}
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 32px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.hide { display: none !important; }

/* END OF CSS */
