/* CSS RESET & BASE TYPOGRAPHY */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,
a,abbr,acronym,address,big,cite,code,del,dfn,em,font,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,
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: 'Roboto', Arial, sans-serif;
  color: #265D3E;
  background: #F2F9E9;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  transition: background 0.4s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #265D3E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B0D278;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #265D3E;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(176,210,120,0.06);
}
h1 { font-size: 2.8rem; margin-bottom: 24px; letter-spacing: 0.01em; }
h2 { font-size: 2rem; margin-bottom: 20px; letter-spacing:0.01em; }
h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 700; }

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 32px 0 rgba(38,93,62,0.15);
  position: relative;
  overflow: hidden;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- HEADER --- */
header {
  background: #265D3E;
  box-shadow: 0 2px 24px 0 rgba(38,93,62,0.10);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  position: relative;
  gap: 0;
}
.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.desktop-nav a {
  color: #F2F9E9;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  padding: 8px 3px;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.desktop-nav a:hover, .desktop-nav a:focus {
  color: #B0D278;
  text-shadow: 0 0 4px #B0D278;
}
.cta-button {
  background: #B0D278;
  color: #265D3E;
  border: none;
  border-radius: 28px;
  padding: 12px 38px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-left: 32px;
  box-shadow: 0 6px 18px 0 rgba(38,93,62,0.11);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.3s, transform 0.18s;
  letter-spacing: 0.04em;
}
.cta-button:hover, .cta-button:focus {
  background: #265D3E;
  color: #F2F9E9;
  box-shadow: 0 12px 32px 0 rgba(176,210,120,0.25);
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #B0D278;
  font-size: 2.3rem;
  cursor: pointer;
  margin-left: 24px;
  z-index: 101;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #F2F9E9;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 83vw;
  max-width: 360px;
  background: #265D3E;
  color: #F2F9E9;
  box-shadow: 4px 0 32px 0 rgba(38,93,62,0.31);
  transform: translateX(-110%);
  transition: transform 0.38s cubic-bezier(.6,-0.1,.5,1.35);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: auto;
  margin-top: 16px;
  margin-bottom: 10px;
  background: none;
  border: none;
  color: #B0D278;
  font-size: 2.2rem;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F2F9E9;
  transform: scale(1.2) rotate(10deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 32px;
  margin-top: 16px;
}
.mobile-nav a {
  color: #F2F9E9;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 12px 0;
  border-radius: 12px;
  transition: background 0.19s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B0D278;
  color: #265D3E;
}

/* --- MAIN LAYOUT --- */
main {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 16px;
}
.feature-grid > div, .service-grid > div {
  background: #F2F9E9;
  padding: 28px 22px;
  border-radius: 20px;
  flex: 1 1 250px;
  min-width: 220px;
  box-shadow: 0 3px 18px 0 rgba(176,210,120,0.16);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  outline: 0 solid #B0D278;
  transition: box-shadow 0.22s, outline 0.2s;
}
.feature-grid > div:hover, .service-grid > div:hover {
  box-shadow: 0 8px 34px -6px #B0D278;
  outline: 2px solid #B0D278;
  z-index: 2;
}
.feature-grid img, .feature-list img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 10px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px 0 rgba(38,93,62,0.11);
  margin-bottom: 20px;
  padding: 28px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  background: #F2F9E9;
  color: #1E392B;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 24px;
  box-shadow: 0 4px 18px 0 rgba(176,210,120,0.13);
  margin-bottom: 28px;
  position: relative;
  font-size: 1.04em;
  min-width: 0;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-style: italic;
  font-size: 1.09rem;
  color: #1E392B;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: #265D3E;
}

/* --- LISTS & FAQ --- */
.service-list, .feature-list, .tips-list, .faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-list li, .feature-list li, .tips-list li, .faq-list li {
  background: #fff;
  padding: 16px 22px;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(176,210,120,0.09);
  font-size: 1.02em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-list li {
  background: #F2F9E9;
}

ol {
  margin-left: 22px;
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

ul ul, ol ul {
  margin-top: 7px;
}

.map-placeholder {
  border: 2px dashed #B0D278;
  background: #F2F9E9;
  border-radius: 16px;
  padding: 32px 10px;
  text-align: center;
  color: #265D3E;
  margin-top: 10px;
}

/* --- FOOTER --- */
footer {
  background: #265D3E;
  color: #F2F9E9;
  padding: 44px 0 28px 0;
}
footer .container {
  flex-direction: column;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #B0D278;
  font-size: 1em;
  font-family: 'Montserrat', Arial,sans-serif;
  letter-spacing: 0.03em;
  transition: color 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F2F9E9;
}
.footer-contact {
  text-align: center;
  font-size: 0.96em;
  letter-spacing: 0.01em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  align-items: center;
  color: #ddefcf;
  margin-bottom: 8px;
}
.footer-contact img {
  width: 22px; height: 22px; margin: 0 5px -4px 0; opacity: 0.8; vertical-align: middle;
}
.footer-copy {
  text-align: center;
  color: #B0D278;
  font-size: 0.92rem;
  opacity: 0.92;
}

/* --- BUTTONS --- */
button, .cta-button, input[type=submit] {
  outline: none;
}
button:focus, .cta-button:focus, .mobile-menu-close:focus,
.mobile-menu-toggle:focus, input[type=submit]:focus {
  box-shadow: 0 0 0 2px #B0D278;
}

/* --- RESPONSIVE --- */
@media (max-width: 1170px){
  .container {
    max-width: 100%;
  }
  .feature-grid, .service-grid {
    gap: 20px;
  }
}
@media (max-width: 940px){
  .feature-grid, .service-grid {
    flex-direction: column;
    gap: 20px;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 768px){
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
  }
  .desktop-nav {
    display: none;
  }
  .cta-button {
    margin-left: 10px;
    font-size: 1.1rem;
    padding: 12px 25px;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .footer-nav {
    gap: 18px;
    font-size: 0.94rem;
  }
  .section {
    padding: 28px 8px;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
  h1 {font-size:2rem;}
  h2 {font-size:1.26rem;}
  .footer-contact { font-size: 0.9em; }
  .testimonial-card, .feature-grid > div, .service-grid > div, .card {
    padding: 18px 8px;
    font-size: 1em;
  }
  .section {
    padding: 14px 4px;
    margin-bottom: 26px;
  }
}

/* --- ANIMATIONS & HOVER EFFECTS --- */
.section:before {
  content: "";
  position: absolute;
  top: -40px; left: -40px;
  width: 120px; height: 120px;
  background: rgba(176,210,120,0.16);
  border-radius: 45% 55% 65% 35%/60% 40% 70% 50%;
  z-index: 0;
  filter: blur(6px);
  animation: sectionBlob 9s infinite alternate ease-in-out;
  pointer-events: none;
}
@keyframes sectionBlob {
  0% { border-radius: 45% 55% 65% 35% / 60% 40% 70% 50%; }
  100% { border-radius: 60% 40% 45% 55% / 45% 75% 45% 50%; }
}
.section > * {
  position: relative;
  z-index: 1;
}
.card, .feature-grid > div, .service-grid > div, .testimonial-card {
  transition: box-shadow 0.21s, transform 0.17s;
}
.card:hover, .feature-grid>div:hover, .service-grid>div:hover, .testimonial-card:hover {
  box-shadow: 0 8px 38px 0 rgba(38,93,62,0.16);
  transform: translateY(-3px) scale(1.025) rotate(-1.5deg);
}

input, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #B0D278;
  border-radius: 10px;
  padding: 9px 14px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px 0 rgba(176,210,120,0.13);
  background: #fff;
  transition: box-shadow 0.15s, border 0.18s;
}
input:focus, textarea:focus {
  outline: none;
  border: 2px solid #265D3E;
  box-shadow: 0 6px 18px -8px #B0D278;
}

hr {
  border: none;
  height: 1px;
  background: #B0D278;
  margin: 38px 0 32px 0;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #265D3E;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 24px 16px;
  gap: 18px;
  z-index: 99999;
  box-shadow: 0 -4px 24px rgba(38,93,62,0.21);
  font-size: 1.01rem;
  animation: cookiebannerIn 0.9s cubic-bezier(.62,0,.35,1.12);
}
@keyframes cookiebannerIn { from{transform:translateY(100%);} to{transform:translateY(0);} }
.cookie-banner p {
  flex: 1 1 240px;
  margin-right: 8px;
}
.cookie-banner button {
  background: #B0D278;
  color: #265D3E;
  border: none;
  border-radius: 16px;
  padding: 10px 26px;
  margin-right: 7px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, box-shadow 0.1s;
  box-shadow: 0 2px 10px 0 rgba(176,210,120,0.14);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #F2F9E9;
  color: #265D3E;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #265D3E;
  border: 1px solid #B0D278;
  margin-right: 0;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #B0D278;
  color: #fff;
}

/* Cookie modal overlay & window */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(38,93,62,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  padding: 40px 28px 28px 28px;
  max-width: 420px;
  box-shadow: 0 6px 48px 0 rgba(38,93,62,0.21);
  color: #265D3E;
  position: relative;
  animation: cookiemodalIn 0.4s cubic-bezier(.67,0,.45,1);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@keyframes cookiemodalIn { from{transform:translateY(60px) scale(.85); opacity:0;} to{transform:translateY(0) scale(1);opacity:1;} }
.cookie-modal h3 {
  margin-bottom: 19px;
  font-size: 1.3rem;
  color: #265D3E;
  font-family: 'Montserrat',sans-serif;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 22px; top: 18px;
  background: none;
  border: none;
  font-size: 1.28rem;
  color: #265D3E;
  cursor: pointer;
  transition: color 0.19s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #B0D278;
}
.cookie-preference {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F2F9E9;
  border-radius: 12px;
  padding: 15px 17px;
  font-size: 1em;
}
.cookie-category label {
  font-family: 'Montserrat',sans-serif;
  font-size: 1em;
  color: #265D3E;
}
.cookie-category input[type=checkbox] {
  appearance: none;
  width: 32px; height: 18px;
  border-radius: 14px;
  background: #B0D278;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-category input[type=checkbox]:checked {
  background: #265D3E;
}
.cookie-category input[type=checkbox]::before {
  content: "";
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 0; left: 0;
  transform: translateX(0px);
  transition: transform 0.18s;
  box-shadow: 0 1px 8px 0 rgba(38,93,62,0.08);
}
.cookie-category input[type=checkbox]:checked::before {
  transform: translateX(14px);
}

.cookie-category .essential {
  color: #B0D278;
  font-weight: 700;
  font-size: 1em;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 17px;
}
.cookie-modal .cookie-modal-actions button {
  padding: 9px 20px;
  border-radius: 12px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1em;
  border: none;
  background: #B0D278;
  color: #265D3E;
}
.cookie-modal .cookie-modal-actions button:hover, .cookie-modal .cookie-modal-actions button:focus {
  background: #265D3E;
  color: #F2F9E9;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 17px 7px 10px 10px;
    max-width: 96vw;
  }
}

/* --- UTILS / UNIQUE ELEMENTS --- */
::-webkit-scrollbar {
  width: 10px;
  background: #F2F9E9;
}
::-webkit-scrollbar-thumb {
  background: #B0D278;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(38,93,62,0.09);
}

blockquote {
  quotes: "\201C" "\201D";
  color: #1E392B;
  font-style: italic;
  letter-spacing: 0.01em;
}

strong {
  font-weight: bold;
  color: #265D3E;
}

/* --- CARDS, BORDERS, SPACING --- */
.card, .testimonial-card, .feature-grid > div, .service-grid > div {
  border: 1px solid #B0D278;
  margin-bottom: 20px;
}

.section, .card, .testimonial-card {
  margin-bottom: 60px;
}

.feature-grid > div, .service-grid > div, .card {
  margin-bottom: 20px;
}

.card-container, .content-grid, .feature-item, .testimonial-card {
  gap: 20px;
}

/* --- HIDE UNWANTED GRID/COLUMN --- */
/* NO grid, columns or absolute positioning for cards! All positioning above is decorative */

/* --- MODERN ARTISTIC FONTS/SPECIALS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;0,800;1,700&family=Roboto:wght@400;500&display=swap');

/* Example color flourishes */
.section:nth-child(even) {
  background: #F2F9E9 linear-gradient(70deg, rgba(176,210,120,0.13) 0%, rgba(176,210,120,0.04) 100%);
}
.section:nth-child(odd) {
  background: #fff linear-gradient(190deg, rgba(176,210,120,0.06) 0%, rgba(176,210,120,0.18) 80%);
}

/* --- ARTISTIC BUTTONS --- */
.cta-button {
  box-shadow: 0 6px 20px 0 rgba(176,210,120,0.18), 0 1.5px 0 0 #265D3E inset;
  border: 2px solid #B0D278;
  position: relative;
}
.cta-button:after {
  content: '';
  display: block;
  position: absolute;
  left: 15%; bottom: 7%;
  width: 50px; height: 14px;
  background: rgba(176,210,120,0.15);
  border-radius: 44% 56% 41% 59%/44% 52% 48% 56%;
  z-index: 0;
  filter: blur(6px);
  transition: opacity 0.17s;
}
.cta-button:hover:after {
  opacity: 0.25;
}

/* --- FOCUS VISIBLE (A11Y) --- */
:focus-visible {
  outline: 2px solid #B0D278;
  outline-offset: 2px;
}

/* Ensure no absolute layout on content: only for blobs & button glows, as above. */
