/* ===================================================
   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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F2EB;
  color: #222;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #33693F;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #A7351E;
  outline: none;
}
ul, ol {
  margin: 0 0 24px 24px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .5px;
  color: #33693F;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #33693F;
}
h2 {
  font-size: 2rem;
  color: #A7351E;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.32rem;
  color: #33693F;
  margin-bottom: 10px;
}
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 16px;
  font-weight: 500;
}

/* Typography hierarchy */
p, li {
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
  letter-spacing: 0;
}
strong, b {
  font-weight: 700;
}
.text-section ul li,
.text-section ol li {
  margin-bottom: 10px;
}

/* Container & Layout Core */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px rgba(51,105,63,0.05);
  padding: 38px 28px 36px 28px;
  margin-bottom: 38px;
}
@media (max-width: 768px) {
  .content-wrapper {
    padding: 22px 10px 20px 10px;
    border-radius: 12px;
  }
}

/* ================================
   MAIN SECTION, FLEX SPACING
==================================*/
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
/* spacing – section override for mandatory rule */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2.5px 12px rgba(51, 105, 63, 0.09);
  padding: 22px 20px;
  position: relative;
  flex: 1 1 270px;
  min-width: 270px;
  transition: box-shadow .20s, transform .14s;
}
.card:hover {
  box-shadow: 0 7px 28px 0 rgba(51, 105, 63, 0.18);
  transform: translateY(-4px) scale(1.02);
  z-index: 1;
}
.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: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}
.testimonial-card {
  background: #faf8f4;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 0.5px 9px 0 rgba(34,34,34,0.09);
  padding: 20px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #222;
  transition: box-shadow .22s;
  border-left: 6px solid #A7351E;
}
.testimonial-card p {
  color: #222;
  margin: 0 0 0 0;
}
.testimonial-card span {
  color: #33693F;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 7px 30px rgba(163, 53, 30, 0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature Grid & Cards */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}
.features-grid > div {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(51,105,63,0.07);
  border-radius: 10px;
  padding: 25px 20px 18px 20px;
  min-width: 240px;
  flex: 1 1 250px;
  transition: box-shadow .19s, border .25s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  border: 2.5px solid transparent;
}
.features-grid > div img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.features-grid > div:hover {
  border: 2.5px solid #A7351E;
  box-shadow: 0 6px 32px 0 rgba(51,105,63,0.18);
  z-index: 1;
}
@media (max-width: 1050px) {
  .features-grid {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    gap: 16px;
  }
  .features-grid > div {
    min-width: unset;
    width: 100%;
  }
}

.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}
.tips-grid > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(51,105,63,0.07);
  padding: 20px 16px;
  flex: 1 1 240px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .tips-grid {
    flex-direction: column;
    gap: 14px;
  }
}

.team-intro ul {
  margin-left: 18px;
  padding-left: 0;
}

.faq-teaser {
  background: #33693F;
  color: #fff;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 12px;
  margin-top: 22px;
  margin-bottom: 0;
  font-size: 1.1rem;
}

.prompt {
  background: #fffbe0;
  color: #A7351E;
  border-radius: 10px;
  padding: 9px 18px;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 18px;
  margin-bottom: 0;
}

/* ================================
   HEADER & NAVIGATION
==================================*/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 11px 0 rgba(51, 105, 63, 0.06);
  position: sticky;
  top: 0;
  z-index: 900;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #33693F;
  padding: 8px 10px;
  border-radius: 8px;
  transition: color .16s, background .2s;
}
nav a:hover, nav a:focus {
  color: #fff;
  background: #A7351E;
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #fff;
  background: #A7351E;
  border: none;
  padding: 13px 30px;
  font-size: 1.09rem;
  border-radius: 28px;
  cursor: pointer;
  margin-left: 28px;
  transition: background .18s, box-shadow .19s, color .15s, transform .13s;
  outline: none;
  box-shadow: 0 2px 14px 0 rgba(163,53,30,0.08);
  letter-spacing: .8px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.cta-button:hover, .cta-button:focus {
  background: #33693F;
  color: #fff;
  box-shadow: 0 7px 20px 0 rgba(51, 105, 63, 0.14);
  transform: translateY(-2px) scale(1.03);
}

/* MOBILE NAVIGATION BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: #A7351E;
  color: #fff;
  border: none;
  font-size: 2.1rem;
  line-height: 1;
  border-radius: 100px;
  padding: 8px 16px;
  margin-left: 32px;
  cursor: pointer;
  transition: background .15s, transform .14s;
  z-index: 1001;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #33693F;
  background: #33693F;
}
@media (max-width: 1020px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-button {
    margin-left: 10px;
    padding: 13px 20px;
  }
  header .container {
    gap: 10px;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 330px;
  height: 100vh;
  max-width: 95vw;
  background: #fff;
  box-shadow: -5px 0 24px rgba(51, 105, 63, 0.16);
  transform: translateX(110%);
  transition: transform .36s cubic-bezier(.7,.13,.36,1.01);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 18px;
  background: #A7351E;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .19s;
  z-index: 2200;
}
.mobile-menu-close:focus {
  outline: 2px solid #33693F;
  background: #33693F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 80px 28px 24px 28px;
  height: 100%;
  justify-content: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #33693F;
  padding: 13px 0;
  border-bottom: 2px solid #F7F2EB;
  font-weight: 800;
  transition: color .15s, background .12s, padding-left .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #A7351E;
  padding-left: 12px;
  background: #fff3ec;
}

@media (max-width: 768px) {
  .mobile-menu {
    width: 95vw;
    min-width: 0;
  }
  .mobile-nav {
    padding: 60px 16px 22px 16px;
    font-size: 1.17rem;
  }
}

.mobile-menu.open {
  box-shadow: -6px 0 34px 3px rgba(163,53,30,0.13);
}
.mobile-menu::before {
  content: '';
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(51, 105, 63, 0.14);
  z-index: 2090;
  pointer-events: none;
}

@media (max-width: 650px) {
  header .container {
    flex-direction: row;
    gap: 2px;
    padding: 12px 6px;
  }
  .logo img {
    height: 34px;
  }
}
/* ================================
   FOOTER
==================================*/
footer {
  background: #33693F;
  color: #fff;
  width: 100%;
  padding: 0;
  box-shadow: 0 -2px 11px 0 rgba(51,105,63,0.08);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 34px 20px 26px 20px;
}
.footer-brand {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}
.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 11px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 3px 12px 0 rgba(34,34,34,0.05);
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 0;
  border-radius: 4px;
  transition: color .16s, background .15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #A7351E;
  background: #fff;
}
.footer-contact {
  font-size: 0.98rem;
  color: #fff;
  font-weight: 400;
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  transition: color .16s;
}
.footer-contact a:hover {
  color: #A7351E;
}
@media (max-width: 950px) {
  footer .container {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
    padding: 30px 10px 18px 10px;
  }
  .footer-brand {
    margin-bottom: 5px;
  }
}

/* ================================
   MISC UTILITIES
==================================*/
.text-section {
  margin-bottom: 24px;
}
.text-section ul, .text-section ol {
  margin-bottom: 16px;
  padding-left: 17px;
}
.text-section {
  color: #222;
  font-size: 1.09rem;
}
.content-wrapper.text-section {
  background: #faf8f4;
  border-radius: 14px;
  box-shadow: 0 1.3px 8px 0 rgba(51,105,63,0.04);
  margin-bottom: 34px;
}
@media (max-width: 768px) {
  .content-wrapper.text-section {
    padding: 15px 6px;
    margin-bottom: 18px;
  }
}

/* Mandatory Spacing Rule: min 20px between cards & sections */
.card:not(:last-child), .feature-item:not(:last-child), .testimonial-card:not(:last-child),
.features-grid > div:not(:last-child), .tips-grid > div:not(:last-child) {
  margin-bottom: 20px;
}
section:not(:last-child) {
  margin-bottom: 60px;
}
.content-wrapper:not(:last-child) {
  margin-bottom: 38px;
}

/* ================================
   BUTTONS & FORM ELEMENTS
==================================*/
button, .cta-button {
  outline: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: #A7351E;
  color: #fff;
  padding: 12px 28px;
  border-radius: 28px;
  font-weight: 800;
  letter-spacing: .9px;
  transition: background .16s, box-shadow .17s, color .13s, transform .13s;
}
button:hover, .cta-button:hover, button:focus, .cta-button:focus {
  background: #33693F;
  color: #fff;
  box-shadow: 0 6px 20px 0 rgba(51,105,63,0.14);
  transform: translateY(-2px);
}

input, textarea, select {
  background: #fafafa;
  border: 2px solid #eee;
  border-radius: 7px;
  font-size: 1rem;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  width: 100%;
  transition: border .14s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid #33693F;
  outline: none;
}

/* ================================
   COOKIE CONSENT BANNER
==================================*/
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #222;
  box-shadow: 0 -2px 20px 0 rgba(51,105,63,0.11);
  padding: 22px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  z-index: 3200;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  justify-content: center;
  animation: slideup .62s cubic-bezier(.6,-0.02,.64,1.13);
}
@keyframes slideup {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
#cookie-banner .banner-text {
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 630px;
  font-size: 1.08rem;
}
#cookie-banner .cookie-btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
#cookie-banner button, #cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 24px;
  padding: 10px 22px;
  margin: 0;
  font-weight: 700;
  border: none;
  outline: none;
  transition: background .15s, color .13s;
}
#cookie-banner .accept-all {
  background: #33693F;
  color: #fff;
}
#cookie-banner .accept-all:hover, #cookie-banner .accept-all:focus {
  background: #A7351E;
}
#cookie-banner .reject-all {
  background: #A7351E;
  color: #fff;
}
#cookie-banner .reject-all:hover, #cookie-banner .reject-all:focus {
  background: #33693F;
}
#cookie-banner .settings-btn {
  background: #f4eadd;
  color: #33693F;
  border: 2px solid #33693F;
}
#cookie-banner .settings-btn:hover, #cookie-banner .settings-btn:focus {
  background: #ece2da;
  color: #A7351E;
  border-color: #A7351E;
}
@media (max-width: 700px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: .98rem;
    padding: 19px 10px;
  }
}

/* COOKIE MODAL */
#cookie-modal, .cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-58%) scale(1);
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 36px 5px rgba(51,105,63,0.17);
  z-index: 3300;
  max-width: 440px;
  width: 92vw;
  padding: 34px 26px 24px 26px;
  display: none;
  flex-direction: column;
  gap: 22px;
  animation: popin .34s cubic-bezier(.61,-0.02,.54,1.21);
}
@keyframes popin { from { transform: translate(-50%,-40%) scale(.8); opacity: 0; } to { transform: translate(-50%,-58%) scale(1); opacity: 1; } }
#cookie-modal.open, .cookie-modal.open {display: flex;}
#cookie-modal h3, .cookie-modal h3 {
  font-size: 1.32rem;
  margin-bottom: 11px;
  color: #A7351E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
#cookie-modal ul, .cookie-modal ul {
  list-style: none;
  padding: 0;
  margin: 0 0 7px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: space-between;
}
.cookie-toggle-row label {
  font-size: 1.08rem;
  font-weight: 600;
  color: #33693F;
  margin: 0;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}
.cookie-switch input {display:none;}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0; right: 0;
  bottom: 0;
  background: #F7F2EB;
  border-radius: 24px;
  transition: background .16s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #33693F;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 20px; width: 20px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
  box-shadow: 0 2px 6px 0 rgba(51,105,63,0.13);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(24px);
}
.cookie-category-desc {
  color: #555;
  font-size: .97rem;
  margin-left: 5px;
  font-weight: 400;
}
.cookie-modal-btns {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal-btns button {
  padding: 8px 22px;
  font-size: 1rem;
  border-radius: 22px;
  font-weight: 700;
}
#cookie-modal .modal-close, .cookie-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #A7351E;
  color: #fff;
  border: none;
  font-size: 1.46rem;
  border-radius: 50%;
  height: 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
}
#cookie-modal .modal-close:focus, .cookie-modal .modal-close:focus {
  outline: 2px solid #33693F;
  background: #33693F;
}
@media (max-width: 600px) {
  #cookie-modal.open, .cookie-modal.open {
    padding: 15px 5px 15px 14px;
    max-width: 96vw;
  }
}

/* ================================
   RESPONSIVE TYPOGRAPHY & SCALE
==================================*/
@media (max-width: 1020px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.47rem; }
  h3 { font-size: 1.11rem; }
  .subheadline { font-size: 1.09rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }
}

/* ================================
   CUSTOM SCROLLBAR FOR MODERN_BOLD
==================================*/
::-webkit-scrollbar {
  width: 10px;
  background: #F7F2EB;
}
::-webkit-scrollbar-thumb {
  background: #B9D5C0;
  border-radius: 8px;
}

/* ================================
   BOLD GEOMETRIC DECOR & EFFECTS
==================================*/
.card, .features-grid > div, .tips-grid > div {
  border-radius: 10px;
  position: relative;
  /* geometric shape accent (pseudo-element) */
}
.features-grid > div:before {
  content: '';
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 30px;
  height: 30px;
  border-radius: 50% 40% 70% 60% / 40% 70% 30% 60%;
  background: #e2dfd1;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.features-grid > div:hover:before {
  background: #A7351E;
  opacity: 0.13;
}

/* ================================
   FORM FOCUS STATE
==================================*/
input:focus, textarea:focus {
  background: #fafff9;
  border-color: #33693F;
  outline: none;
}

/* ================================
   ERROR STATES
==================================*/
input.error, textarea.error {
  border-color: #A7351E;
  background: #fff0ed;
}

/* ================================
   MISC:
==================================*/
ul li {
  margin-bottom: 8px;
}
ol li {
  margin-bottom: 8px;
}

/* Hide scrollbar in mobile menu when closed */
.mobile-menu:not(.open) {
  overflow: hidden;
}
.mobile-menu.open {
  overflow-y: auto;
}

/* Fallbacks for custom properties (simple, as only colors are used directly) */

/* END */
