/* --- CSS RESET & NORMALIZATION --- */
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;
}
/* Make sure body uses 100% height and uses flex to enable flexible layouts */
html { height: 100%; }
body {
  min-height: 100vh;
  background: #F8F8F5;
  color: #254A32;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
img, picture {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}

/* --- BRAND FONTS --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #254A32;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
h1 { font-size: 2.75rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.375rem; margin-bottom: 16px; font-weight: 600; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.125rem; }
  html { font-size: 15px; }
}

strong, b { font-weight: 700; }

/* --- CONTAINERS & LAYOUTS (FLEXBOX ONLY) --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 36px;
  box-shadow: 0 3px 18px 0 rgba(64, 88, 60, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    border-radius: 24px;
    margin-bottom: 40px;
  }
  .content-wrapper {
    padding: 0;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 auto 24px auto;
  width: 100%;
}
.card {
  background: #F3F6EF;
  border-radius: 28px;
  box-shadow: 0 2px 7px rgba(38, 74, 50, 0.08);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 6px 16px 0 rgba(38, 74, 50, 0.13);
  transform: translateY(-4px) scale(1.014);
}

.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) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #E6E6E6;
  border-left: 7px solid #254A32;
  border-radius: 26px;
  box-shadow: 0 1px 8px rgba(38, 74, 50, 0.09);
  margin-bottom: 20px;
  transition: box-shadow 0.22s, background 0.18s;
}
.testimonial-card blockquote {
  color: #212B20;
  margin: 0 0 0 0;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.55;
}
.testimonial-card span {
  color: #486352;
  font-size: 0.98rem;
  font-weight: 500;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card:hover {
  background: #F3F6EF;
  box-shadow: 0 4px 16px rgba(38, 74, 50, 0.12);
}

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

/* For atuty / offer icon/text lists */
ul li, ol li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: #355E44;
}
ul li img, ol li img {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  background: #E8EDDF;
  padding: 3px;
}

ul { margin-bottom: 10px; }
.text-section ul, .text-section ol {
  margin-left: 0;
  margin-bottom: 10px;
}
.text-section li {
  font-size: 1rem;
  margin-bottom: 8px;
}

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

/* --- HEADER & NAVIGATION --- */
header {
  background: #F3F6EF;
  box-shadow: 0 2px 10px rgba(38, 74, 50, 0.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 998;
  width: 100%;
}
header .container {
  padding: 10px 20px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
header nav a {
  padding: 4px 0;
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #254A32;
  border-radius: 8px;
  transition: background 0.1s, color 0.18s;
  font-size: 1rem;
}
header nav a.cta, .cta {
  background: #254A32;
  color: #E6E6E6;
  padding: 8px 22px;
  border-radius: 32px;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: 2px solid #254A32;
  box-shadow: 0 2px 10px rgba(38,74,50,0.06);
  cursor: pointer;
  transition: all 0.16s cubic-bezier(.68,-0.55,.27,1.55);
  display: inline-block;
  margin-left: 16px;
}
header nav a.cta:hover, .cta:hover, .cta:focus {
  background: #386541;
  color: #fff;
  box-shadow: 0 3px 14px rgba(38, 74, 50, 0.16);
  transform: translateY(-2px) scale(1.02);
}
header nav a:hover:not(.cta), header nav a:focus:not(.cta) {
  background: #E8EDDF;
  color: #254A32;
}

header img {
  height: 54px;
  width: auto;
  border-radius: 18px;
  background: none;
  margin-right: 18px;
}

@media (max-width: 968px) {
  header .container {
    flex-direction: row;
    gap: 12px;
  }
  header img { height: 43px; margin-right: 8px; }
}
@media (max-width: 768px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #254A32;
  color: #E6E6E6;
  border: none;
  font-size: 2.3rem;
  width: 46px; height: 46px;
  border-radius: 36px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 12px;
  box-shadow: 0 1px 8px rgba(38, 74, 50, 0.10);
  transition: background 0.15s, color 0.17s;
  z-index: 1102;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #386541;
  color: #fff;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(38, 74, 50, 0.97);
  z-index: 1200;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.24s cubic-bezier(.68,-0.55,.27,1.55), transform 0.29s cubic-bezier(.68,-0.55,.27,1.55);
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #E6E6E6;
  font-size: 2.1rem;
  border-radius: 32px;
  padding: 7px 19px 7px 7px;
  margin: 20px 0 8px 16px;
  align-self: flex-end;
  cursor: pointer;
  z-index: 1205;
  transition: background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #BEA160;
  color: #254A32;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 44px 0 0 34px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.36rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 0 12px 12px;
  border-radius: 18px;
  width: 100%;
  transition: background 0.15s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #BEA160;
  color: #254A32;
}

@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* --- MAIN STRUCTURE --- */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* --- BUTTONS, CTAS --- */
.cta {
  background: #254A32;
  color: #E6E6E6;
  padding: 10px 28px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 1.13rem;
  letter-spacing: 0.02em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: 2px solid #254A32;
  box-shadow: 0 2px 10px rgba(38, 74, 50, 0.06);
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.18s, color 0.13s, box-shadow 0.19s, transform 0.13s;
  display: inline-block;
}
.cta:focus-visible { outline: 2px dashed #BEA160; outline-offset: 2px; }
.cta:active { transform: translateY(1px) scale(0.98); }
.cta:hover, .cta:focus {
  background: #386541;
  color: #fff;
  box-shadow: 0 6px 24px rgba(38, 74, 50, 0.17);
  border-color: #BEA160;
}

/* --- LINKS ON PAGES --- */
main a:not(.cta) {
  color: #BEA160;
  text-decoration: underline;
  transition: color 0.18s;
}
main a:not(.cta):hover { color: #254A32; }

/* --- ORGANIC/NATURE INSPIRED DECORATIONS --- */
.section, .card, .testimonial-card, .cta {
  /* Organic soft curves */
  border-radius: 30px 75px 44px 27px/40px 130px 54px 34px;
}
@media (max-width: 768px){
  .section, .card, .testimonial-card, .cta { border-radius: 19px 36px 24px 23px/27px 51px 32px 20px; }
}

/* --- SPACING SYSTEM --- */
.section, .card, .testimonial-card { margin-bottom: 20px; }
main > section:last-child { margin-bottom: 0; }
.content-wrapper > * { margin-bottom: 16px; }

/* --- ACCENTS & DETAILS --- */
blockquote {
  border-left: 4px solid #BEA160;
  padding-left: 14px;
  font-size: 1.10rem;
  color: #254A32;
  background: none;
  margin-bottom: 8px;
}
.text-section h3 {
  color: #386541;
  font-weight: 600;
}

/* --- FOOTER --- */
footer {
  background: #254A32;
  color: #E6E6E6;
  padding: 40px 0 18px 0;
  margin-top: 50px;
  width: 100%;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
footer nav a {
  color: #E6E6E6;
  font-size: 1rem;
  border-radius: 8px;
  padding: 4px 8px;
  transition: background 0.17s, color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  background: #BEA160;
  color: #254A32;
}
footer img {
  height: 41px;
  width: auto;
  border-radius: 11px;
  background: none;
}
footer p {
  margin-left: auto;
  color: #D4D8CD;
  font-size: 0.98rem;
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer nav {
    gap: 10px;
    flex-wrap: wrap;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #E6E6E6;
  color: #254A32;
  box-shadow: 0 -2px 12px rgba(38,74,50,0.10);
  padding: 26px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 1250;
  transition: transform 0.27s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.25s;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner p {
  font-size: 1rem;
  text-align: center;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-banner button, .cookie-banner .cta {
  padding: 8px 22px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 1.02rem;
  border: none;
  cursor: pointer;
  background: #254A32;
  color: #E6E6E6;
  margin: 0;
  transition: background 0.14s, color 0.17s, box-shadow 0.15s, transform 0.11s;
}
.cookie-banner button.cookie-reject {
  background: #BEA160;
  color: #254A32;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: #254A32;
  border: 1.5px solid #BEA160;
}
.cookie-banner button:hover, .cookie-banner .cta:hover, .cookie-banner button:focus, .cookie-banner .cta:focus {
  background: #386541;
  color: #fff;
  box-shadow: 0 3px 18px rgba(38, 74, 50, 0.14);
}
.cookie-banner button.cookie-settings:hover {
  background: #F8F8F5;
  color: #254A32;
}

/* Cookie Modal Popup */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1300;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(38,74,50,.70);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.active {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #254A32;
  border-radius: 38px;
  max-width: 380px;
  width: 92vw;
  padding: 36px 22px 26px 22px;
  box-shadow: 0 11px 36px 0 rgba(38, 74, 50, 0.24);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transform: translateY(30px) scale(0.98);
  opacity: 0;
  transition: transform 0.18s, opacity 0.16s;
}
.cookie-modal-overlay.active .cookie-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.cookie-modal h3 {
  font-size: 1.33rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
}
.cookie-modal .cookie-switch {
  width: 34px; height: 19px;
  border-radius: 13px;
  background: #DCEFDC;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal .cookie-switch input[type="checkbox"] {
  display: none;
}
.cookie-modal .cookie-switch span {
  display: inline-block;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: #254A32;
  position: absolute;
  left: 2px; top: 1px;
  transition: left 0.16s;
}
.cookie-modal .cookie-switch input[type="checkbox"]:checked + span {
  background: #BEA160;
  left: 15px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.cookie-modal .cookie-footer {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 14px; right: 24px;
  background: none;
  color: #254A32;
  font-size: 1.5rem;
  border: none;
  z-index: 1350;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .cookie-close:hover {
  color: #BEA160;
}

@media (max-width: 460px) {
  .cookie-modal {
    padding: 20px 7px;
    border-radius: 19px;
  }
}

/* --- MISC --- */
::-webkit-scrollbar { width: 9px; background: #E9EFE2; }
::-webkit-scrollbar-thumb { background: #C3D3B4; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #BEA160; }

/* Micro-interactions, transitions, accessibility focus states */
a, button, .cta {
  transition: background 0.15s, color 0.14s, box-shadow 0.18s, transform 0.13s;
}
a:focus-visible, button:focus-visible, .cta:focus-visible {
  outline: 2.5px solid #BEA160;
  outline-offset: 2.5px;
}

/* --- FORM ELEMENTS --- */
input, textarea, select {
  border: 1.5px solid #C1E1C1;
  background: #F3F6EF;
  padding: 10px 15px;
  font-size: 1.02rem;
  border-radius: 12px;
  transition: border 0.13s;
  color: #254A32;
  margin-bottom: 16px;
  width: 100%;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border-color: #BEA160;
  background: #FBF6EC;
}

/* --- ACCESSIBILITY --- */
@media (max-width: 480px) {
  html { font-size: 14px; }
  main, .container { padding: 0 3px; }
  .section { padding: 20px 3px; }
}

/* --- NATURE ORGANIC EXTRAS: ORGANIC SHAPE OVERLAYS --- */
.organic-decor {
  position: absolute;
  z-index: 1;
  opacity: 0.17;
  pointer-events: none;
  border-radius: 44% 56% 59% 41% / 42% 57% 43% 58%;
  background: #C8DFB4;
  width: 130px; height: 90px;
  top: -30px; right: -34px;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUpSoft {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
.section, .card, .testimonial-card {
  animation: fadeInUpSoft 0.85s ease cubic-bezier(.42,0,.58,1) both;
}

/* --- END --- */