/* === 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F3FBF8;
  color: #22322A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font: inherit;
  box-sizing: border-box;
}


/* === NATURE ORGANIC COLOR PALETTE === */
:root {
  --color-primary: #196960;
  --color-primary-dark: #10423c;
  --color-secondary: #F3FBF8;
  --color-background: #F3FBF8;
  --color-white: #fff;
  --color-accent: #E8981E;
  --color-accent-dark: #BB7400;
  --color-green-lt: #B5E3C4;
  --color-green-md: #6DC8A7;
  --color-brown-light: #EFE8DC;
  --color-brown-dark: #7E603C;
  --color-grey: #7d837f;
}


/* === TYPOGRAPHY === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500|Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  font-weight: 700;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 600;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}
h4 {
  font-size: 1rem;
}
.subtitle {
  color: var(--color-green-md);
  font-size: 1.125rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 18px;
}
p, li, address {
  color: #22322A;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}


/* === GENERAL SPACING, CONTAINER, FLEX PATTERNS === */
.container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  background: var(--color-white);
  border-radius: 22px;
  box-shadow: 0 3px 24px 0 rgba(18, 43, 34, 0.061);
  padding: 40px 32px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex !important;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(25, 105, 96, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  min-width: 200px;
  flex: 1 1 250px;
}
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; margin-bottom: 20px; background: var(--color-brown-light); border-radius: 18px; box-shadow: 0 1px 10px 0 rgba(25,105,96,0.08); flex-direction: row; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Ensure testimonial text contrast on all backgrounds */
.testimonial-card p, .testimonial-card span {
  color: #22322A;
}


/* === HEADER & NAV === */
header {
  background: var(--color-background);
  box-shadow: 0 2px 18px 0 rgba(25, 105, 96, 0.045);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px 16px 20px;
}
header img {
  height: 41px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-primary);
  transition: color 0.23s;
  padding: 6px 2px;
  border-radius: 5px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
  background: var(--color-green-lt);
}

.cta-btn {
  background: var(--color-primary);
  color: var(--color-white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 28px;
  border: none;
  border-radius: 22px;
  cursor: pointer;
  box-shadow: 0 3px 14px 0 rgba(25, 105, 96, 0.17);
  transition: background 0.28s, color 0.22s, box-shadow 0.24s;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 6px 20px 0 rgba(25, 105, 96, 0.16);
  text-decoration: none;
}

/* Mobile header styles */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 18px;
  top: 19px;
  background: var(--color-accent);
  color: #fff;
  font-size: 2.0rem;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  z-index: 1012;
  box-shadow: 0 2px 10px 0 rgba(25,105,96,0.11);
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  cursor: pointer;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-primary);
}

/* === MOBILE NAVIGATION === */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(28,41,32, 0.97);
  z-index: 1200;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.48s cubic-bezier(.71,0,.5,1) 0s;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-accent);
  color: #fff;
  border: none;
  font-size: 2.1rem;
  padding: 8px 18px;
  align-self: flex-end;
  margin: 16px 24px 0 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 1300;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 36px 24px 0 32px;
  flex: 1 1;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  width: 100%;
  transition: color 0.2s, background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
  background: rgba(232,152,30,0.02);
}

/* Show/hide nav depending on breakpoint */
@media (max-width: 1020px) {
  .main-nav { display: none; }
  .cta-btn { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 1021px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none; }
}


/* === ORGANIC SECTIONS & CARDS === */
.content-wrapper, .section, .card, .testimonial-card {
  /* Nice paper/earth subtle shadow */
  box-shadow: 0 3px 19px 0 rgba(112,84,54,0.08);
}
.section {
  background: var(--color-brown-light);
  border-radius: 34px;
}
.card {
  background: var(--color-white);
  border-radius: 18px 38px 33px 22px / 24px 18px 40px 21px;
  /* organic irregular border radius */
  border: 1.8px solid #E5F0E5;
  min-width: 220px;
  margin-bottom: 20px;
}
.icon-list img, .icon-list svg, .benefit-cards img, .benefit-cards svg {
  margin-right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #E6FAF5;
  padding: 2px;
  vertical-align: middle;
}
.benefit-cards { display: flex; flex-wrap: wrap; gap: 20px; justify-content: flex-start; margin: 18px 0; }
.benefit-cards > div { background: var(--color-green-lt); border-radius: 20px; padding: 22px 26px; flex: 1 1 220px; box-shadow: 0 2px 13px rgba(25,105,96,0.08); }
.statistics {
  background: #E6FAF5;
  border-radius: 17px;
  padding: 16px 24px;
  margin: 24px 0 0 0;
  font-size: 1.09rem;
  color: var(--color-primary);
  font-weight: 500;
}
.short-quotes blockquote, .expert-comments blockquote {
  background: #FCF6E6;
  border-left: 5px solid var(--color-accent);
  padding: 14px 26px;
  border-radius: 18px 44px 24px 14px / 18px 28px 33px 19px;
  color: #22322A;
  font-style: italic;
  margin-top: 16px;
  margin-bottom: 12px;
}
.short-quotes span, .expert-comments span {
  display: block;
  color: var(--color-green-md);
  font-size: 1rem;
  margin-top: 7px;
  font-style: normal;
}


/* === ICONS === */
.icon-list { display: flex; flex-wrap: wrap; gap: 23px; margin: 15px 0; align-items: center; }
.icon-list li {
  font-size: 1.07rem;
  color: var(--color-primary);
  font-weight: 500;
  display: flex; align-items: center;
  gap: 10px;
}

/* === FAQ, SERVICE-LIST, GUIDES === */
.faq-items, .service-list, .guide-list, .latest-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 12px 0 6px 0;
}
.faq-items > div, .service-list > li, .guide-list > div, .latest-articles > article {
  background: #F3FBF8;
  border-radius: 23px 13px 33px 18px;
  padding: 22px 20px 18px 26px;
  box-shadow: 0 1px 7px 0 rgba(25, 105, 96, 0.045);
  flex: 1 1 270px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-list > li { border-bottom: 1px solid #E5F0E5; margin-bottom: 20px; }
.service-description {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #22322A;
  margin-top: 7px;
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: 700;
  margin-top: 8px;
  align-self: flex-end;
}
.filter-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 20px 0 10px 0;
}
.filter-options button {
  background: var(--color-green-md);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 6px 18px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.15s;
}
.filter-options button:hover, .filter-options button.active {
  background: var(--color-primary);
  color: #fff;
}

.category-links {
  display: flex; flex-wrap: wrap; gap: 18px; margin: 24px 0 10px 0; align-items: center;
}
.category-links a {
  color: var(--color-green-md);
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 1rem;
  transition: color 0.18s;
}
.category-links a:hover { color: var(--color-accent);background: #e6faf5 }

.popular-posts ul, .featured-guides ul {
  margin-top: 6px;
  display: flex; flex-direction: column; gap: 8px;
}

.popular-posts li, .featured-guides li { color: var(--color-primary); font-size: 0.98rem; }
.popular-posts a { color: var(--color-accent); font-weight: 600; }

/* === TESTIMONIALS === */
.testimonials {
  margin: 28px 0 0 0;
}
.testimonials h2 {
  margin-bottom: 22px;
}
.testimonial-card {
  border-left: 5px solid var(--color-green-md);
  background: var(--color-brown-light);
  box-shadow: 0 1px 11px 0 rgba(25, 105, 96, 0.08);
}
.testimonial-card p {
  font-size: 1.08em;
  margin-bottom: 0;
  font-style: italic;
  color: #22322A;
}
.testimonial-card span {
  font-weight: 600;
  font-size: 0.97em;
  color: var(--color-accent);
  margin-left: 18px;
}


/* === FOOTER === */
footer {
  background: #ECE8E0;
  border-top: 1px solid #E5F0E5;
  margin-top: 44px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 32px;
  align-items: flex-start;
  padding: 38px 0 16px 0;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}
.footer-logo {
  flex: 0 0 95px;
}
.footer-contact, .footer-nav, .footer-menu, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact h3 { font-size: 1.16em; margin-bottom: 6px; color: var(--color-primary-dark); }
.footer-contact address { font-style: normal; color: #22322A; font-size: 0.98rem; line-height: 1.62; }
.footer-nav, .footer-menu {
  gap: 8px;
  font-size: 0.98em;
}
.footer-nav a, .footer-menu a {
  color: var(--color-primary);
  font-weight: 500;
  border-radius: 7px;
  padding: 4px 2px;
  transition: color 0.18s, background 0.14s; 
}
.footer-nav a:hover, .footer-menu a:hover {
  color: var(--color-accent);
  background: var(--color-green-lt);
}
.footer-social {
  flex-direction: row;
  gap: 15px;
  margin-top: 10px;
}
.footer-social a img {
  width: 34px; height: 34px; border-radius: 8px; background: var(--color-primary);
  padding: 6px;
  transition: background 0.14s;
}
.footer-social a:hover img { background: var(--color-green-md); }

footer .container:last-child {
  text-align: center;
  padding: 15px 0 6px 0;
  color: #4e6157;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.94rem;
}


/* === COOKIE CONSENT BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #E4F6EB;
  color: #22322A;
  box-shadow: 0 -2px 20px rgba(25, 105, 96, 0.10);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 32px;
  padding: 24px 16px;
  z-index: 1600;
  font-size: 1.05rem;
  animation: banner-in 0.7s cubic-bezier(.82,0,.5,1);
}
@keyframes banner-in {
  0% { transform: translateY(96px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 19px;
  padding: 7px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-accent);
}
.cookie-banner button.cookie-settings {
  background: var(--color-green-md);
  color: #fff;
}
.cookie-banner button.cookie-settings:hover {
  background: var(--color-accent);
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed; left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(25, 105, 96, 0.23);
  z-index: 1700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-appear 0.24s cubic-bezier(.71,0,.5,1);
}
@keyframes modal-appear {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 24px 40px 28px 20px / 18px 27px 32px 30px;
  max-width: 420px;
  padding: 36px 28px;
  color: #22322A;
  box-shadow: 0 6px 30px rgba(25,105,96,0.18);
  z-index: 1800;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex; align-items: center; gap: 13px; margin: 7px 0;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--color-primary);
}
.cookie-modal .switch {
  position: relative;
  width: 48px;
  height: 27px;
  background: #E4F6EB;
  border-radius: 13px;
  transition: background 0.17s;
}
.cookie-modal input[type="checkbox"] {
  display: none;
}
.cookie-modal .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 23px; height: 23px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 1px 3px rgba(25,105,96,0.07);
}
.cookie-modal input:checked + .slider {
  transform: translateX(21px);
  background: var(--color-green-md);
}
.cookie-modal .always-enabled {
  font-size: 0.95em;
  color: #7d837f;
  margin-left: 7px;
}
.cookie-modal .cookie-modal-actions {
  display: flex; gap: 14px; margin-top: 15px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 21px; top: 14px;
  font-size: 1.4rem;
  background: none;
  border: none;
  color: #7d837f;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 8px;
  transition: background 0.1s;
}
.cookie-modal .cookie-modal-close:hover { background: #E6FAF5; }


/* === ORGANIC, NATURAL INTERACTIONS === */
button, .cta-btn, .filter-options button, .cookie-banner button {
  transition: background 0.2s, color 0.2s, box-shadow 0.23s, border-color 0.17s, transform 0.10s;
}
.card, .testimonial-card, .faq-items > div, .benefit-cards > div {
  transition: box-shadow 0.23s, transform 0.19s;
}
.card:hover, .benefit-cards > div:hover, .testimonial-card:hover, .faq-items > div:hover {
  box-shadow: 0 6px 35px 0 rgba(25, 105, 96, 0.11);
  transform: translateY(-3px) scale(1.016) rotateZ(-0.2deg);
}
.cta-btn:active, .filter-options button:active {
  transform: scale(0.97);
}


/* === RESPONSIVE DESIGN (MOBILE-FIRST) === */
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .content-wrapper { padding: 26px 10px; }
  .footer-content { gap: 24px 10px; flex-direction: column; align-items: stretch; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  .content-wrapper {
    padding: 22px 7px;
    margin-bottom: 21px;
  }
  h1 { font-size: 1.35rem; margin-bottom: 11px; }
  h2 { font-size: 1.09rem; margin-bottom: 7px; }
  .main-nav { display: none !important; }
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 7px;
    padding: 8px 6px 8px 6px;
  }
  .section {
    margin-bottom: 28px;
    padding: 20px 4px;
    border-radius: 24px;
  }
  .card-container,
  .content-grid,
  .faq-items,
  .service-list,
  .guide-list,
  .latest-articles,
  .benefit-cards {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section { flex-direction: column; gap: 19px; align-items: flex-start; }
  .testimonial-card { flex-direction: column; gap: 7px; align-items: flex-start; }
  .footer-social { margin-bottom: 14px; }
  .footer-content { flex-direction: column; gap: 11px; }
}
@media (max-width: 520px) {
  .footer-content { padding: 10px 0 5px 0; gap: 5px; }
  .content-wrapper { border-radius: 13px; }
  .testimonial-card { border-radius: 10px 20px 13px 11px; }
}

/* === NICE SCROLL === */
html {
  scroll-behavior: smooth;
}

/* === FORM ELEMENTS (for newsletter/email forms, etc.) === */
input[type="text"], input[type="email"], textarea {
  border: 1.3px solid #ADF6C1;
  border-radius: 13px;
  padding: 9px 14px;
  font-size: 1rem;
  background: #fff;
  margin-bottom: 13px;
  width: 100%;
  outline: none;
  transition: border-color 0.17s, box-shadow 0.2s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-green-lt);
}

/* =============== UTILITY CLASSES ================ */
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-10 { gap: 10px; }
.flex-column { flex-direction: column; }

/* =============== END OF CSS ================ */
