/* 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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #FFFFFF;
  color: #254228;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  scroll-behavior: smooth;
}
img, picture, video { max-width: 100%; display: block; }
a { color: #325B36; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus {
  color: #C05B00;
  outline: none;
  text-decoration: underline;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #254228;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.7rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
h4 { font-size: 1.18rem; }
h5, h6 { font-size: 1rem; }
p, ul, ol { font-size: 1rem; margin-bottom: 16px; }
strong {
  font-weight: 700;
  color: #254228;
}

@media (max-width: 1200px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.2rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.26rem; }
  h3 { font-size: 1.05rem; }
}

/* SPACING & LAYOUT */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(50,91,54,0.06);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 20px 0;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(50,91,54,0.08);
  margin-bottom: 20px;
  padding: 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 18px rgba(38,66,40,0.14);
  transform: translateY(-2px) scale(1.02);
}

.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;
    align-items: flex-start;
    gap: 20px;
  }
  .container {
    padding: 0 10px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F7F8FA;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(37,66,40,0.08);
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.testimonial-card p {
  color: #254228;
  font-size: 1.09rem;
  margin: 0 0 4px 0;
  font-style: italic;
}
.testimonial-card span {
  color: #325B36;
  font-size: 0.98rem;
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px rgba(38,66,40,0.17);
}

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

ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 10px;
}
ul li, ol li {
  margin-bottom: 9px;
  line-height: 1.5;
  padding-left: 0;
}

/* HEADER STYLES */
header {
  background: #FFFFFF;
  box-shadow: 0 1px 10px rgba(50,91,54,0.07);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  padding: 18px 20px;
  justify-content: space-between;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #254228;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #E5E1DE;
  color: #C05B00;
}
header img {
  height: 45px;
  width: auto;
  margin-right: 18px;
}
.cta-primary {
  background: #325B36;
  color: #fff;
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 10px 28px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-transform: none;
  box-shadow: 0 2px 8px rgba(50,91,54,0.07);
  transition: background 0.20s, box-shadow 0.2s, transform 0.18s;
  margin-left: 20px;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #254228;
  color: #fff;
  box-shadow: 0 3px 14px rgba(192,91,0,0.09);
  transform: translateY(-1px) scale(1.02);
}

button, input[type="submit"], input[type="button"] {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: #325B36;
  color: #fff;
  border-radius: 22px;
  padding: 9px 20px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.17s;
}
button:hover, input[type="submit"]:hover, input[type="button"]:hover,
button:focus, input[type="submit"]:focus, input[type="button"]:focus {
  background: #254228;
  box-shadow: 0 2px 7px rgba(50,91,54,0.11);
  outline: none;
  transform: translateY(-1px) scale(1.01);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #325B36;
  padding: 8px 10px;
  margin-left: 18px;
  cursor: pointer;
  z-index: 120;
}

@media (max-width: 900px) {
  header .container nav { display: none; }
  .cta-primary { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* MOBILE SLIDE MENU */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 90vw;
  max-width: 375px;
  z-index: 2000;
  box-shadow: -3px 0 28px rgba(37,66,40,0.13);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.5,.98,.41,.99);
  padding: 32px 28px 24px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #254228;
  font-size: 2.3rem;
  font-weight: 300;
  border: none;
  margin-bottom: 25px;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #C05B00;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.mobile-nav a {
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: #325B36;
  padding: 9px 0 10px 0;
  border-bottom: 1px solid #E5E1DE;
  transition: color 0.15s, background 0.13s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #C05B00;
  background: #F5F4F1;
  border-radius: 7px;
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* MAIN STYLES */
main > section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 768px) {
  main > section { padding: 30px 0 0 0; }
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 10px 0 18px 0;
}
input[type="email"], input[type="text"], input[type="password"] {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #E5E1DE;
  font-size: 1rem;
  color: #254228;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F8FA;
  margin-bottom: 6px;
  transition: border-color 0.2s;
}
input[type="email"]:focus, input[type="text"]:focus, input[type="password"]:focus {
  border-color: #325B36;
  outline: none;
}
label {
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  color: #254228;
  font-size: 1.01rem;
  margin-bottom: 3px;
}

/* ADDRESS BLOCKS */
address {
  font-style: normal;
  color: #254228;
  background: #F7F8FA;
  padding: 16px 18px;
  border-radius: 13px;
  margin-bottom: 13px;
  line-height: 1.7;
  font-size: 1rem;
}

/* FOOTER */
footer {
  background: #254228;
  color: #fff;
  padding: 26px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
footer nav a {
  color: #f7f8fa;
  font-size: 1rem;
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 5px;
  transition: color 0.17s, background 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #C05B00;
  background: #e5e1de;
}
footer p { font-size: 0.98rem; margin: 0; }
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* CTA BUTTONS & LINKS */
a.cta-primary, .cta-primary {
  background: #325B36;
  color: #fff;
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 24px;
  padding: 11px 32px;
  margin: 8px 0 0 0;
  font-size: 1.12rem;
  box-shadow: 0 2px 10px rgba(50,91,54,0.07);
  transition: background 0.2s, color 0.16s, transform 0.17s;
  display: inline-block;
  border: none;
}
a.cta-primary:hover, a.cta-primary:focus, .cta-primary:hover, .cta-primary:focus {
  background: #C05B00;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* ICONS IN FEATURES/LISTS */
li img {
  vertical-align: middle;
  margin-right: 9px;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background: #E5E1DE;
  padding: 2px;
}

/* CARDS (CONTENTS) */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* FAQ/INFO-LIST */
ul.info-list {
  list-style-type: disc;
  margin-left: 28px;
  margin-bottom: 16px;
}

/* RESPONSIVE / MOBILE ADAPTATION */
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .content-wrapper {
    padding: 0;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1, h2, h3 { text-align: left; }
  .section, main > section {
    padding: 17px 0;
    margin-bottom: 32px;
    border-radius: 11px;
  }
}

@media (max-width: 530px) {
  header .container { flex-direction: row; gap: 8px; padding: 10px 4px; }
  .card { padding: 12px 7px; border-radius: 10px; }
}

/* MICRO-ANIMATIONS */
a, button, .card, .cta-primary, .mobile-menu, .mobile-menu-close, .testimonial-card {
  transition: all 0.18s cubic-bezier(.5,.98,.41,.99);
}

/* Z-INDEX and LAYERING for nav/cookie */
header, .mobile-menu, .cookie-banner, .cookie-modal { z-index: 2002; }

/* -- COOKIE CONSENT BANNER -- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #254228;
  color: #fff;
  padding: 20px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 29px;
  justify-content: center;
  box-shadow: 0 -2px 18px rgba(37,66,40,0.17);
  font-size: 1rem;
  z-index: 2300;
  animation: cookieSlideIn 0.5s 1 cubic-bezier(.35,.85,.44,1.02);
}
.cookie-banner.hide {
  display: none;
}
.cookie-banner p {
  max-width: 350px;
  margin-bottom: 0;
  color: #fff;
  font-size: 0.99rem;
}
.cookie-banner button, .cookie-banner .cookie-btn {
  margin-left: 0;
  margin-right: 15px;
  padding: 7px 17px;
  font-size: 1rem;
  background: #E5E1DE;
  color: #254228;
  border-radius: 20px;
  border: none;
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(37,66,40,0.06);
  cursor: pointer;
  transition: background 0.15s, color 0.14s;
}
.cookie-banner button:hover, .cookie-banner .cookie-btn:hover {
  background: #C05B00;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #C05B00;
  color: #fff;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #254228;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    font-size: 0.99rem;
    padding: 18px 3px 20px 3px;
  }
  .cookie-banner button, .cookie-banner .cookie-btn { margin-bottom: 12px; width: 100%; }
}
@keyframes cookieSlideIn { from { transform: translateY(60px); opacity: 0;} to { transform: none; opacity: 1;} }

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  z-index: 2550;
  background: rgba(37,66,40,0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s;
  animation: modal-in 0.22s cubic-bezier(.55,1,.5,.96) 1;
}
.cookie-modal.hide {
  opacity: 0; pointer-events: none;
}
.cookie-modal .modal-panel {
  background: #fff;
  color: #254228;
  width: 98vw; max-width: 410px;
  border-radius: 19px;
  padding: 33px 27px 25px 27px;
  box-shadow: 0 5px 30px rgba(192,91,0,0.13);
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1rem;
}
.cookie-modal .modal-panel h3 {
  font-size: 1.17rem;
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  color: #254228;
}
.cookie-modal .modal-panel .modal-close {
  position: absolute;
  right: 25px;
  top: 19px;
  font-size: 1.25rem;
  background: none;
  border: none;
  color: #c05b00;
  cursor: pointer;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #F7F8FA;
  padding: 12px 17px;
  border-radius: 10px;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 36px;
  height: 21px;
  background: #e5e1de;
  border-radius: 17px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.13s;
  border: none;
}
.cookie-modal .cookie-toggle:checked {
  background: #C05B00;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.19s;
  box-shadow: 0 0 3px #bbb;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 17px;
}
.cookie-modal .cookie-category .always-on {
  font-size: 0.92rem;
  color: #325B36;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.cookie-modal .modal-actions {
  margin-top: 10px;
  display: flex;
  gap: 17px;
}
.cookie-modal .modal-actions button {
  padding: 9px 23px;
  border-radius: 24px;
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  font-size: 1.07rem;
}

@keyframes modal-in { from { opacity: 0; transform: scale(.97);} to { opacity: 1; transform: scale(1); } }

/* UTILITIES */
.hide { display: none !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.gap-20 { gap: 20px; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* FOCUS VISIBILITY & INTERACTIONS */
a:focus, button:focus, input:focus {
  outline: 2px solid #C05B00;
  outline-offset: 1px;
}

::-webkit-input-placeholder { color: #254228cc; opacity:1; }
::-moz-placeholder { color: #254228cc; opacity:1; }
:-ms-input-placeholder { color: #254228cc; opacity:1; }
::placeholder { color: #254228cc; opacity:1; }

/* Disabled state */
button[disabled], .cta-primary[disabled] {
  opacity: 0.54;
  cursor: not-allowed;
  pointer-events: none;
}

/***** END STYLES *****/