/* 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, menu, 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, 
main, 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;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
  background: #F7F6F2;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F6F2;
  color: #354B3E;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.7;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #647A43;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #354B3E;
  text-decoration: underline;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #354B3E;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.22;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h4 { font-size: 1.22rem; margin-bottom: 12px; }
h5, h6 { font-size: 1rem; margin-bottom: 8px; }

p {
  margin-bottom: 16px;
  font-size: 1rem;
}
strong {
  font-weight: 700;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
  font-size: 1rem;
}
ul li, ol li {
  margin-bottom: 8px;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1090px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  width: 100%;
  padding: 0;
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(180deg, #F7F6F2 85%, #E6E2D5 100%);
  box-shadow: 0 2px 22px 0 rgba(87,118,102,0.04);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}
header nav {
  display: flex;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #354B3E;
  padding: 8px 12px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #D5E7DA;
  color: #647A43;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  display: inline-block;
  background: #87986A;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 32px;
  margin-left: 8px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(135,152,106,0.09);
  transition: background 0.2s, box-shadow 0.25s, transform 0.1s;
  font-weight: 600;
}
.cta-btn:hover, .cta-btn:focus {
  background: #354B3E;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(135,152,106,0.16);
  transform: translateY(-2px) scale(1.04);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #F7F6F2;
  border: none;
  font-size: 2.1rem;
  color: #647A43;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 14px 0 rgba(87,118,102,0.06);
  transition: background 0.2s, color 0.15s;
  z-index: 105;
}
.mobile-menu-toggle:active {
  background: #E6E2D5;
  color: #354B3E;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FAF9F6;
  box-shadow: 2px 0 38px 0 rgba(87,118,102,0.10);
  z-index: 5000;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(.55,0,.1,1), opacity 0.18s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #647A43;
  font-size: 2.25rem;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 5100;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #354B3E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  padding: 96px 32px 32px 32px;
  gap: 18px;
}
.mobile-nav a {
  font-size: 1.13rem;
  color: #354B3E;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 16px 10px;
  border-radius: 16px;
  transition: background 0.15s, color 0.2s;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D5E7DA;
  color: #647A43;
}

@media (max-width: 1024px) {
  header .container {
    gap: 12px;
  }
  header nav a {
    font-size: 0.97rem;
    padding: 8px 8px;
  }
  .cta-btn {
    padding: 9px 24px;
    font-size: 0.97rem;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0 8px;
  }
  header nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 14px;
    top: 13px;
  }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}
/* MAIN LAYOUT / SECTION STYLES */
main {
  width: 100%;
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  gap: 0;
}
section {
  background: transparent;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 1px 14px 0 rgba(87,118,102,0.04);
}

@media (max-width: 700px) {
  section {
    padding: 28px 6px 28px 6px;
    margin-bottom: 34px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 16px 2px 22px 2px;
    margin-bottom: 22px;
    border-radius: 14px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 4px 19px 0 rgba(87,118,102,0.085);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 24px 24px 18px 24px;
  min-width: 220px;
  max-width: 370px;
  transition: box-shadow 0.19s, transform 0.13s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(100,122,67,0.13);
  transform: translateY(-2px) scale(1.01);
}
.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: stretch;
    gap: 22px;
    text-align: center;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  background: #FEF9F7;
  border-radius: 18px;
  box-shadow: 0 2px 15px 0 rgba(135,152,106,0.10);
  color: #354B3E;
  margin-bottom: 20px;
  max-width: 560px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.testimonial-card strong {
  font-size: 1.01rem;
  color: #647A43;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(100,122,67,0.13);
  transform: translateY(-2px) scale(1.012);
}

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

/* FOOTER */
footer {
  width: 100%;
  background: #FFFDF8;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -1px 18px 0 rgba(135,152,106,0.04);
  margin-top: 24px;
  letter-spacing: 0.01em;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  padding: 32px 16px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.footer-menu a {
  font-size: 0.99rem;
  color: #647A43;
  border-radius: 14px;
  padding: 8px 12px;
  transition: background 0.16s, color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #D5E7DA;
  color: #354B3E;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11rem;
}
.footer-brand img {
  width: 46px;
  height: auto;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: #354B3E;
}
.footer-contact img {
  width: 20px;
  vertical-align: middle;
  margin-right: 5px;
}
@media (max-width: 700px) {
  footer .container {
    padding: 16px 8px;
    gap: 12px;
  }
  .footer-menu {
    gap: 10px;
  }
  .footer-brand {
    gap: 8px;
    font-size: 1rem;
  }
  .footer-contact {
    gap: 7px;
    font-size: 0.95rem;
  }
}


/* FORMS */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
  width: 100%;
  max-width: 400px;
}
label {
  font-size: 1rem;
  margin-bottom: 3px;
  color: #647A43;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
input, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 10px;
  border: 1.5px solid #E6E2D5;
  padding: 11px 13px;
  margin-bottom: 4px;
  width: 100%;
  outline: none;
  transition: border-color 0.17s, box-shadow 0.17s;
}
input:focus, textarea:focus {
  border-color: #87986A;
  box-shadow: 0 1px 6px 0 rgba(135,152,106,0.14);
}
button[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: #647A43;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 28px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.22s, transform 0.13s;
  font-weight: 600;
}
button[type="submit"]:hover, button[type="submit"]:focus {
  background: #354B3E;
  box-shadow: 0 3px 18px 0 rgba(100,122,67, 0.13);
  transform: translateY(-2px) scale(1.03);
}

/* Spacing Utilities and List Styles */
ul, ol {
  padding-left: 22px;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #D5E7DA;
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
}
ul li {
  position: relative;
  padding-left: 0;
}
ul li img {
  margin-right: 8px;
  vertical-align: middle;
}

ol {
  list-style: decimal inside;
  padding-left: 18px;
}
ol li {
  margin-bottom: 10px;
}

/* CARDS, SHADOWS & EFFECTS */
.card, .testimonial-card {
  background: #FEF9F7;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(87,118,102,0.09);
}
.card {
  padding: 24px 22px 20px 22px;
}

/* Micro-interactions */
a, button, .cta-btn, .footer-menu a {
  outline: none;
  transition: background 0.16s, color 0.13s, box-shadow 0.19s, transform 0.09s;
}
a:active, .cta-btn:active, button:active {
  transform: scale(0.98);
}

/* Responsive FONT & SPACING SCALE */
@media (max-width: 700px) {
  h1 {
    font-size: 2rem;
  }
  h2 { font-size: 1.44rem; }
  h3 { font-size: 1.15rem; }
  .card, .testimonial-card { padding: 16px 8px; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  padding: 24px 12px 22px 12px;
  background: #FFF8F0;
  color: #354B3E;
  z-index: 10000;
  box-shadow: 0 -2px 22px 0 rgba(135,152,106,0.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.29s, opacity 0.25s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #647A43;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 8px 22px;
  cursor: pointer;
  font-size: 0.98rem;
  margin: 0 2px;
  transition: background 0.2s, box-shadow 0.18s;
  box-shadow: 0 1px 8px 0 rgba(135,152,106,0.12);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #354B3E;
}
.cookie-settings-btn {
  background: #E6E2D5;
  color: #354B3E;
  border: 1px solid #D5E7DA;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #D5E7DA;
  color: #354B3E;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(51,82,62,0.28);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 10px 44px 0 rgba(87,118,102,0.18);
  min-width: 345px;
  max-width: 98vw;
  padding: 32px 32px 24px 32px;
  font-size: 1.01rem;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 10002;
  transform: translateY(32px);
  transition: transform 0.27s cubic-bezier(.59,0,.09,1);
}
.cookie-modal-overlay.open .cookie-modal {
  transform: translateY(0);
}
.cookie-modal-close {
  background: transparent;
  border: none;
  color: #354B3E;
  font-size: 1.9rem;
  position: absolute;
  top: 16px;
  right: 30px;
  cursor: pointer;
  z-index: 10012;
  transition: color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #647A43;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category input[type='checkbox'] {
  width: 20px; height: 20px;
  accent-color: #87986A;
}
.cookie-category label {
  font-size: 1rem;
  color: #647A43;
  margin-bottom: 0;
  font-weight: 600;
  cursor: pointer;
}
.cookie-category .category-essential {
  color: #87986A;
}
.cookie-category .always-on {
  font-size: 0.89rem;
  color: #C8CCB6;
  font-family: 'Roboto', Arial, sans-serif;
  margin-left: 4px;
}
.cookie-modal-footer {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

@media (max-width: 540px) {
  .cookie-modal {
    min-width: 88vw;
    padding: 16px 6px 12px 10px;
    font-size: 0.95rem;
    border-radius: 13px;
  }
}

/* DREAMY SOFT-PASTEL EFFECTS */
body, main, section, .card, .testimonial-card, .cookie-banner, .cookie-modal {
  background-image: none;
  background-color: #FEF9F7;
}
main section:nth-child(even) {
  background: #F3F5F9;
}
section {
  background: linear-gradient(120deg,#FFFDF8 0%, #F7F6F2 70%, #F3F5F9 100%);
  box-shadow: 0 2px 26px 0 rgba(135,152,106,0.045); 
}
.card {
  background: #F7F9F7;
}
.testimonial-card {
  background: #FFFFFF;
  color: #354B3E;
}

/* DREAMY SHADOWS, RADIUS */
.card, .testimonial-card, .cookie-modal {
  border-radius: 18px;
  box-shadow: 0 6px 18px 0 rgba(135,152,106,0.06);
  border: 1px solid #F3F1EC;
}

/* DREAMY BUTTONS */
.cta-btn, button[type='submit'] {
  background: linear-gradient(90deg, #87986A 20%, #647A43 100%);
  filter: brightness(1.06);
}
.cta-btn:active, button[type='submit']:active {
  filter: brightness(0.99);
}

/* IMAGES IN ICON LISTS */
ul li img {
  display: inline-block;
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 1px #E6E2D5);
  margin-bottom: -3px;
}

/* CARD EXAMPLES */
.card strong { color: #647A43; }
.card span { color: #BBAA99; font-size: 0.97em; }

/* TEXT SECTION (maps/contact) */
.text-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 6px;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 1px 7px 0 rgba(87,118,102,0.09);
  margin-bottom: 10px;
}
.text-section img {
  width: 60px;
  margin: 0 auto 6px auto;
}

/* Layout Utilities / Responsive */
@media (max-width: 480px) {
  .container { padding: 0 3px; }
  .card, .testimonial-card { min-width: 93vw; max-width: 100vw; padding: 11px 5px; }
  .footer-contact { font-size: 0.92rem; }
}

/* Prevent Overlapping and Ensure Gaps */
section, .card, .testimonial-card, .content-grid, .card-container, .footer-menu, nav, .features, .footer-contact {
  margin-bottom: 0;
  gap: 20px;
}
.card-container > *, .content-grid > *, .footer-menu > *, nav > *, .features > *, .footer-contact > * {
  margin-bottom: 0;
  margin-right: 0;
}

/* Accent and Highlighted Text */
.accent {
  color: #647A43;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Hide visually for accessibility */
.sr-only {
  position: absolute;
  left: -10000px;
  width: 1px; height: 1px;
  top: auto;
  overflow: hidden;
}

/* Section with text & image on desktop, stacked on mobile */
.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: stretch;
    gap: 18px;
  }
}

/* VISUAL HIERARCHY */
.content-wrapper > h2 {
  margin-top: 0;
  margin-bottom: 18px;
}
.content-wrapper > h1 {
  margin-top: 0;
  margin-bottom: 18px;
}

.content-wrapper > p, .content-wrapper > ul, .content-wrapper > ol {
  margin-bottom: 12px;
}

.content-wrapper > a.cta-btn {
  margin: 18px 0;
}

/* LINKS INSIDE CONTENT */
.content-wrapper a:not(.cta-btn) {
  color: #647A43;
  border-bottom: 1.5px solid #D5E7DA;
  transition: color 0.18s, border-color 0.18s;
  font-weight: 500;
}
.content-wrapper a:not(.cta-btn):hover, .content-wrapper a:not(.cta-btn):focus {
  color: #354B3E;
  border-color: #647A43;
}

/* Miscellaneous flex helpers (if needed) */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-center { align-items: center; justify-content: center; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-30 { gap: 30px; }

/* REMOVE OVERLAPS ON ALL FLEX CHILDREN */
section > .container > .content-wrapper > * + * {
  margin-top: 12px;
}

/* PROFESSIONAL TRANSITIONS / ANIMATIONS */
.cta-btn, button, .cookie-btn {
  transition: background 0.19s, color 0.17s, box-shadow 0.18s, transform 0.11s;
}

/* TEXT CONTRAST FOR TESTIMONIALS */
.testimonial-card {
  color: #223220;
  background: #FFF !important;
  border: 1.5px solid #E6E2D5;
}

/* List in testimonials: always dark text, light bg */
.testimonial-card p, .testimonial-card strong {
  color: #354B3E;
}

/* END CSS */