/* ----------------------------------------------------------
   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;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #F0ECE2; /* Secondary (creative_artistic base) */
  color: #2C4D2D;      /* Primary (brand dark green) */
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #2C4D2D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D18B09; /* Accent */
  outline: none;
}
ul, ol {
  list-style: none;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}

/* ----------------------------------------------------------
   TYPOGRAPHY (CREATIVE ARTISTIC)
---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  color: #2C4D2D;
  margin-bottom: 16px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.8rem;
  color: #D18B09; /* Vibrant accent title */
  text-shadow: 0 2px 8px rgba(213,139,9,0.11);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 2rem;
  color: #2C4D2D;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  border-left: 6px solid #F5B042;
  padding-left: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}
blockquote {
  font-family: 'Merriweather', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #2C4D2D;
  background: #fffbea;
  border-left: 4px solid #D18B09;
  margin: 0 0 18px 0;
  padding: 18px 22px 18px 18px;
  border-radius: 16px 32px 18px 10px;
}
cite {
  display: block;
  font-size: 1rem;
  font-style: normal;
  color: #6b5d2f;
  margin-top: 6px;
  padding-left: 10px;
}
p, li, span, .address-block, .commitment-block {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ----------------------------------------------------------
   LAYOUT CONTAINERS (FLEXBOX)
---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 14px;
  padding-right: 14px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 24px 10px 32px 20px;
  box-shadow: 0 8px 40px 0 rgba(53,97,54,0.09), 0 2px 6px 0 rgba(213,139,9,0.07);
  padding: 24px 32px;
  min-width: 260px;
  max-width: 390px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 54px 0 rgba(213,139,9,0.17), 0 2px 12px 0 rgba(53,97,54,0.10);
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
}
.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;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}
.tips-grid, .quick-facts-grid, .benefits-grid, .email-phone-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}
.tips-grid li, .quick-facts-grid span, .benefits-grid span, .email-phone-grid span {
  background: #fff;
  border-radius: 20px 12px 16px 25px;
  padding: 18px 24px;
  min-width: 180px;
  box-shadow: 0 4px 14px 0 rgba(53,97,54,0.06);
  font-size: 1.05rem;
  color: #2C4D2D;
  display: flex;
  align-items: center;
  gap: 12px;
}
.address-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.info-box, .faq-teaser {
  background: #F5B04218;
  border-radius: 22px 14px 28px 16px;
  padding: 16px 26px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #2C4D2D;
  font-size: 1.02rem;
}
.next-steps-info {
  margin-top: 20px;
  padding: 20px 24px;
  border-radius: 18px 40px 16px 8px;
  background: #fff8ec;
}

/* ----------------------------------------------------------
   HEADER & NAVIGATION
---------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(44, 77, 45, 0.06);
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 10;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 82px;
  padding: 8px 16px 8px 12px;
  position: relative;
}
header nav > a img {
  height: 50px;
  width: auto;
  margin-right: 18px;
}
header nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
header nav ul li a {
  font-family: 'Merriweather', serif;
  font-size: 1.06rem;
  color: #2C4D2D;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border-radius: 13px 6px 18px 5px;
  transition: background 0.19s, color 0.18s;
}
header nav ul li a:hover,
header nav ul li a:focus,
header nav ul li a.active {
  background: #F5B042;
  color: #fff;
}
.cta-button {
  background: #F5B042;
  color: #2C4D2D;
  font-family: 'Merriweather', serif;
  font-size: 1.12rem;
  font-weight: 700;
  padding: 11px 36px;
  border-radius: 22px 12px 25px 8px;
  box-shadow: 0 4px 18px 0 rgba(245,176,66,0.09);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.15s, box-shadow 0.18s, transform 0.18s;
  margin-left: 8px;
  position: relative;
  z-index: 2;
}
.cta-button:hover, .cta-button:focus {
  background: #D18B09;
  color: #fff;
  box-shadow: 0 10px 30px 0 rgba(213,139,9,0.14);
  transform: scale(1.04) rotate(-2deg);
}
.secondary-cta {
  color: #2C4D2D;
  padding: 8px 16px;
  font-size: 1.01rem;
  font-family: 'Roboto',sans-serif;
  border-bottom: 2px solid #D18B09;
  margin-top: 16px;
  margin-bottom: 0;
  transition: color 0.18s, border-color 0.18s;
}
.secondary-cta:hover, .secondary-cta:focus {
  color: #D18B09;
  border-color: #356136;
}

/* HAMBURGER MENU (MOBILE) */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 15px;
  right: 18px;
  padding: 12px 16px;
  background: #F5B042;
  color: #2C4D2D;
  font-size: 2rem;
  border-radius: 14px 8px 18px 6px;
  border: none;
  cursor: pointer;
  z-index: 99;
  transition: background 0.16s, color 0.16s, transform 0.17s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #D18B09;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(44,77,45,0.96);
  z-index: 999;
  transform: translateX(100vw);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.67,.1,.27,1.26), opacity 0.25s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.4rem;
  color: #fff;
  background: none;
  padding: 14px 18px 0 0;
  border: none;
  cursor: pointer;
  margin-bottom: 14px;
  margin-right: 10px;
  transition: color 0.15s, transform 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #F5B042;
  transform: rotate(5deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100vw;
  padding: 26px 14px 0 28px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 13px 8px 25px 10px;
  padding: 14px 18px;
  background: rgba(245,176,66,0.09);
  transition: background 0.18s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: #F5B042;
}

/* ----------------------------------------------------------
   HERO/BANNER SECTIONS
---------------------------------------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
section:first-of-type {
  background: linear-gradient(90deg, #F5B042 0%, #D18B09 55%, #fff0c0 100%);
  background: #F5B042;
  box-shadow: 0 12px 30px 0 rgba(213,139,9,0.14);
  border-radius: 0 0 62px 10px;
  padding-top: 46px;
  padding-bottom: 60px;
}
section:first-of-type h1 {
  color: #2C4D2D;
  text-shadow: none;
}

/* ----------------------------------------------------------
   FEATURE & VALUE ICON ROWS
---------------------------------------------------------- */
section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 20px;
  align-items: flex-start;
  margin-bottom: 0;
}
section ul li {
  background: #fff;
  border-radius: 22px 9px 24px 18px;
  box-shadow: 0 4px 16px 0 rgba(53,97,54,0.10);
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 204px;
  max-width: 350px;
  font-size: 1.1rem;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.15s;
}
section ul li:hover {
  box-shadow: 0 12px 38px rgba(245,176,66,0.13);
  transform: scale(1.025) rotate(-1deg);
}
section ul li img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 6px;
}

/* special for about-values and service-icons */
section ul li strong {
  color: #D18B09;
  font-family: 'Merriweather', serif;
  font-size: 1.08rem;
}
section ul li em {
  color: #356136;
  font-style: normal;
  background: #F5B042;
  padding: 3px 13px 3px 8px;
  border-radius: 11px 7px 13px 6px;
  font-size: 1rem;
  margin-top: 6px;
  display: inline-block;
}

.commitment-block {
  background: #3561360F;
  border-radius: 14px 6px 18px 10px;
  margin-top: 12px;
  font-size: 1.08rem;
  color: #2C4D2D;
  padding: 18px 18px;
}

.pricing-teaser {
  color: #fff;
  background: #356136;
  border-radius: 18px 10px 28px 18px;
  font-size: 1.02rem;
  padding: 14px 22px;
  box-shadow: 0 3px 12px rgba(44,77,45,0.07);
  margin-top: 14px;
}

.secondary-information {
  color: #625338;
  font-size: 0.99rem;
  margin-top: 7px;
}

/* ----------------------------------------------------------
   TESTIMONIALS
---------------------------------------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 24px 40px 24px 20px;
  box-shadow: 0 4px 25px 0 rgba(53,97,54,0.13);
  margin-bottom: 20px;
  margin-top: 12px;
  max-width: 620px;
  color: #232914;
  transition: box-shadow 0.19s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 60px 0 rgba(245,176,66,0.16);
  transform: translateY(-4px) scale(1.018);
}
.testimonial-card blockquote {
  background: none;
  border-left: 6px solid #F5B042;
  color: #2C4D2D;
  font-size: 1.08rem;
  margin-bottom: 0;
  padding: 0 12px 0 10px;
  border-radius: 0;
  box-shadow: none;
}
.testimonial-card cite {
  color: #D18B09;
  font-size: 0.95rem;
  padding-left: 0;
  margin-top: 0;
  font-family: 'Roboto', sans-serif;
}

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */
footer {
  background: #2C4D2D;
  color: #fff;
  padding: 32px 0 34px 0;
  position: relative;
}
footer .container {
  padding-top: 0;
  padding-bottom: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px 46px;
  justify-content: space-between;
}
footer nav ul {
  flex-direction: row;
  gap: 24px;
  justify-content: flex-start;
}
footer nav ul li a {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #FFF;//#F5B042;
  opacity: 1;
  letter-spacing: 0.03em;
  border-radius: 9px 5px 17px 7px;
  padding: 6px 12px;
  background: transparent;
  transition: background 0.16s, color 0.14s;
}
footer nav ul li a:hover,
footer nav ul li a:focus {
  background: #F5B042;
  color: #2C4D2D;
}
.address-block {
  color: #fff;
  font-size: 1.04rem;
  margin-bottom: 8px;
}
.address-block a {
  color: #F5B042;
  text-decoration: underline;
  transition: color 0.15s;
}
.address-block a:hover,
.address-block a:focus {
  color: #fff;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-social img {
  height: 34px; width: 34px;
  background: #fffeba;
  border-radius: 50%;
  padding: 7px;
  box-shadow: 0 3px 8px rgba(245,176,66,0.13);
  transition: background 0.13s;
}
.footer-social img:hover {
  background: #F5B042;
}

/* ----------------------------------------------------------
   COOKIE CONSENT BANNER
---------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #fffbe8;
  color: #2C4D2D;
  border-radius: 28px 28px 0 0;
  padding: 18px 36px;
  box-shadow: 0 -3px 25px 0 rgba(44,77,45,0.13);
  transition: transform 0.16s, opacity 0.17s;
  font-size: 1rem;
  gap: 22px;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner__text {
  flex: 1 1 340px;
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 700px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button,
.cookie-banner .cookie-settings-btn {
  background: #F5B042;
  color: #2C4D2D;
  border-radius: 15px 5px 14px 5px;
  border: none;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 7px 21px;
  margin-right: 5px;
  cursor: pointer;
  transition: background 0.13s, color 0.15s, box-shadow 0.15s;
}
.cookie-banner button:focus,
.cookie-banner button:hover {
  background: #D18B09;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(213,139,9,0.11);
}
.cookie-settings-btn {
  background: #fff;
  color: #2C4D2D;
  border: 2px solid #F5B042;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #F5B042;
  color: #2C4D2D;
  border-color: #D18B09;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(44,77,45,0.25);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.19s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fffbe8;
  color: #2C4D2D;
  border-radius: 25px 15px 28px 12px;
  padding: 38px 32px 30px 32px;
  box-shadow: 0 8px 70px 0 rgba(245,176,66,0.18);
  max-width: 445px;
  width: 94vw;
  text-align: left;
  font-size: 1.09rem;
  transform: translateY(25vh);
  position: relative;
  z-index: 4050;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  font-size: 1.2rem;
  color: #D18B09;
  margin-bottom: 8px;
  border: none;
  padding-left: 0;
}
.cookie-cat-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 8px;
}
.cookie-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFF;
  padding: 12px 18px;
  border-radius: 14px 6px 15px 7px;
  font-size: 1.01rem;
  font-family: 'Roboto',sans-serif;
}
.cookie-cat .cookie-toggle {
  min-width: 50px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #D18B09;
  cursor: pointer;
  transition: color 0.13s;
  padding: 7px;
}
.cookie-modal .close-modal:hover { color: #2C4D2D; }

/* Custom Toggle (Switch) */
.cookie-toggle-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.cookie-toggle {
  appearance: none;
  width: 44px;
  height: 22px;
  background: #F0ECE2;
  border-radius: 15px 10px 12px 17px;
  position: relative;
  outline: none;
  margin-left: 12px;
  transition: background 0.15s;
}
.cookie-toggle:checked {
  background: #D18B09;
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px; left: 2px;
  box-shadow: 0 2px 5px 0 rgba(213,139,9,0.13);
  transition: transform 0.18s;
}
.cookie-toggle:checked::before {
  transform: translateX(22px);
}
/* Make Essential not clickable */
.cookie-cat.essential .cookie-toggle-label {
  pointer-events: none;
  opacity: 0.7;
}

/* ----------------------------------------------------------
   BUTTONS, MICRO-INTERACTIONS, VISUAL ELEMENTS
---------------------------------------------------------- */
button, .cta-button, input[type=button], input[type=submit] {
  transition: background 0.15s, color 0.14s, box-shadow 0.15s, transform 0.14s;
}
button:active, .cta-button:active {
  transform: scale(0.97) rotate(1deg);
}

/* Cards for services, lists,facts, etc */
.card, .tips-grid li, .quick-facts-grid span, .benefits-grid span, .email-phone-grid span {
  transition: box-shadow 0.16s, background 0.13s, color 0.14s, transform 0.14s;
}
.card:hover, .tips-grid li:hover, .quick-facts-grid span:hover, .benefits-grid span:hover {
  background: #F0ECE2;
  box-shadow: 0 4px 25px rgba(245,176,66,.09);
  color: #D18B09;
  transform: scale(1.03) rotate(-1deg);
}

/* ----------------------------------------------------------
   RESPONSIVE DESIGN (MOBILE-FIRST)
---------------------------------------------------------- */
@media (max-width: 1130px) {
  .container { max-width: 97vw; }
}
@media (max-width: 992px) {
  .container { max-width: 99vw; }
  .content-wrapper { padding: 0; }
  section ul, .content-grid, .tips-grid, .quick-facts-grid, .benefits-grid, .email-phone-grid, .footer-social {
    gap: 17px;
  }
  section ul li {
    min-width: 160px;
    max-width: 270px;
    padding: 16px 12px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .footer-social img { height: 27px; width: 27px; }
  .content-wrapper {
    gap: 10px;
  }
  section, .section {
    padding: 21px 7px 28px 7px;
    margin-bottom: 28px;
  }
  section ul, .content-grid, .tips-grid, .quick-facts-grid, .benefits-grid, .email-phone-grid, .address-details {
    gap: 10px;
  }
  section ul li, .tips-grid li, .quick-facts-grid span, .benefits-grid span {
    min-width: 139px;
    max-width: 98vw;
    padding: 9px 8px;
    font-size: 0.99rem;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 13px 7px;
    border-radius: 18px 16px 24px 14px;
  }
  header nav ul { display: none; }
  .cta-button { padding: 9px 18px; font-size: 1rem; }
  header nav { height: auto; padding: 7px 4px 7px 4px; }
  header nav > a img { height: 38px; margin-right: 8px; }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-social { gap: 10px; }
  .address-block { font-size: 0.96rem; }
}
@media (max-width: 540px) {
  section, .section { padding: 8px 1px 17px 1px; }
  .testimonial-card {
    border-radius: 8px 14px 12px 8px;
    font-size: 0.99rem;
  }
  .cookie-banner { padding: 12px 8px; font-size: 0.97rem; flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-modal { padding: 22px 8px 16px 8px; }
}
@media (max-width: 420px) {
  h1 { font-size: 1.19rem; }
  .cookie-banner { border-radius: 0; }
}
/* Flex direction column for text-image sections on mobile */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 10px; }
}

/* ----------------------------------------------------------
   ACCESSIBILITY & FOCUS STATES
---------------------------------------------------------- */
a:focus, button:focus, .cta-button:focus {
  outline: 2px dashed #D18B09;
  outline-offset: 2px;
}

/*----------------------------------------------------
   END OF CSS
-----------------------------------------------------*/