/* 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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #FAF9F5;
  color: #284035;
  font-family: "Lato", Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}
a {
  color: #B16868;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8C2525;
  text-decoration: underline wavy #B16868;
}
ul, ol {
  padding-left: 1.5em;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}
button {
  cursor: pointer;
}
strong, b {
  font-weight: bold;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@400;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #265236;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol, li, blockquote {
  color: #284035;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
}
blockquote {
  font-style: italic;
  border-left: 5px solid #BCD4AC;
  margin: 16px 0 20px 0;
  padding: 0 18px;
  color: #579866;
  background: #F4F8F3;
  border-radius: 12px;
}
cite {
  font-style: normal;
  color: #9499A0;
  display: block;
  margin-left: 24px;
  margin-top: 6px;
  font-size: 0.97rem;
}

/* CONTAINER & SPACING SYSTEM */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
main section {
  margin-bottom: 40px;
}

/* HEADER & NAVIGATION */
header {
  background: #F8F7F0;
  border-bottom: 1px solid #E9E3CE;
  position: relative;
  z-index: 99;
  box-shadow: 0 2px 8px 0 rgba(190,150,160,0.050);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  flex-wrap: wrap;
  gap: 16px;
}
.logo img {
  height: 45px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #336851;
  font-size: 1.04rem;
  padding: 6px 0 4px;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #B16868;
}

.cta-btn {
  background: #B16868;
  color: #fff;
  border-radius: 24px;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 9px 32px;
  margin-left: 10px;
  transition: background 0.22s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(179,104,104,0.07);
  display: inline-block;
  border: none;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #8C2525;
  color: #fff;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 4px 18px rgba(179,104,104,0.18);
}


/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  padding: 7px 15px;
  background: #BCD4AC;
  color: #284035;
  border-radius: 18px;
  border: none;
  font-size: 1.7rem;
  margin-left: 12px;
  transition: background 0.18s, color 0.18s;
  z-index: 111;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E7B39A;
  color: #8C2525;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(232,232,236,0.97);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.7,0,.23,1);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 30px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -6px 0 48px rgba(79,85,91,0.15);
}
.mobile-menu-close {
  background: #BCD4AC;
  color: #265236;
  font-size: 1.6rem;
  align-self: flex-end;
  border: none;
  border-radius: 50%;
  width: 40px; height: 40px;
  margin-bottom: 24px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #E7B39A;
  color: #B16868;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  color: #265236;
  font-size: 1.19rem;
  font-family: 'Lato', Arial, sans-serif;
  padding: 10px 0;
  font-weight: 700;
  border-radius: 8px;
  transition: background 0.17s, color 0.14s;
  width: 100%;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #BCD4AC;
  color: #8C2525;
}
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* HERO */
.hero {
  background: #E9F8EC;
  background: linear-gradient(150deg, #E9F8EC 49%, #F6E8F1 90%);
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 64px 0 30px 0;
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero h1 {
  color: #265236;
  letter-spacing: -1.2px;
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.hero p {
  color: #284035;
  line-height: 1.6;
  font-size: 1.08rem;
}

/* FLEX LAYOUTS & CARD SYSTEM */
.features-grid, .problem-grid, .course-list, .article-list, .category-list, .plant-type-list, .steps-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 20px 0 0 0;
}
.features-grid {
  gap: 24px;
  padding-top: 6px;
}
.feature-block {
  flex: 1 1 260px;
  min-width: 230px;
  background: #FFFFFF;
  border-radius: 22px;
  box-shadow: 0 6px 24px rgba(185, 216, 190, 0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 18px 22px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.18s;
}
.feature-block img {
  height: 44px;
  width: auto;
  margin-bottom: 14px;
}
.feature-block h3 {
  font-size: 1.16rem;
  color: #265236;
  margin-bottom: 6px;
}
.feature-block p {
  color: #3D5546;
  margin-bottom: 4px;
  font-size: 1rem;
}
.feature-block .feature-price, .feature-block strong {
  color: #B16868;
  font-weight: bold;
  font-family: 'Lato', Arial, sans-serif;
}
.feature-block:hover {
  box-shadow: 0 8px 34px rgba(185,104,104,0.14);
  transform: translateY(-2px) scale(1.025);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(195,186,197,0.10);
  position: relative;
  padding: 24px;
  transition: box-shadow 0.17s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(185,104,104,0.10);
}

.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;
  }
  .features-grid, .problem-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FBF7FF;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(185,104,104,0.07);
  padding: 20px;
  margin: 26px 0 18px 0;
  max-width: 700px;
  border-left: 7px solid #BCD4AC;
  flex-direction: column;
}
@media (min-width: 769px) {
  .testimonial-card {
    flex-direction: row;
  }
}
.testimonial-card blockquote {
  color: #265236;
  margin: 0;
  border: none;
  background: none;
  font-size: 1.15rem;
}
.testimonial-card cite {
  color: #336851;
  font-size: 0.96rem;
  margin-left: 0;
}

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

/* LISTS & SPECIAL LISTS */
.benefit-list,
.core-values-list,
.privacy-list,
.terms-list,
.gdpr-compliance-list,
.cookie-types-list,
.recent-articles-list,
.category-list,
.article-list,
.steps-list,
.plant-type-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 18px;
}
.benefit-list li,
.core-values-list li {
  padding-left: 30px;
  position: relative;
  font-size: 1.07rem;
}
.benefit-list li:before,
.core-values-list li:before {
  content: "🌱";
  position: absolute;
  left: 0; top: 0;
  font-size: 1.14rem;
  color: #BCD4AC;
}
ul.article-list li, ul.category-list li, ul.plant-type-list li {
  background: #F4F8F3;
  border-radius: 12px;
  padding: 16px 20px 14px 20px;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px rgba(185,104,104,0.06);
  position: relative;
}
ul.article-list li:hover, ul.category-list li:hover, ul.plant-type-list li:hover {
  box-shadow: 0 8px 32px rgba(185,216,190,0.11);
}

.privacy-notice {
  background: #E9F8EC;
  border-radius: 13px;
  padding: 10px 18px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
}
.privacy-notice img {
  height: 20px;
}

.trust-badges {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
}
.trust-badges img {
  height: 38px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.16s;
}
.trust-badges img:hover {
  opacity: 1;
}

/* BUTTONS & INTERACTIVE */
.text-link {
  color: #B16868;
  font-weight: bold;
  text-decoration: underline;
  font-size: 1.07rem;
  transition: color 0.17s;
}
.text-link:hover, .text-link:focus {
  color: #8C2525;
  text-decoration: underline wavy #B16868;
}

/* FORMS (basic for CTA forms/articles) */
input, textarea, select {
  background: #FFF;
  border-radius: 12px;
  border: 1px solid #E9E3CE;
  padding: 8px 14px;
  width: 100%;
  font-size: 1rem;
  margin-bottom: 14px;
  color: #284035;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #BCD4AC;
  outline: 1px solid #BCD4AC;
}
label {
  display: block;
  margin-bottom: 7px;
  color: #265236;
  font-size: 1rem;
}

/* FOOTER */
footer {
  background: #E9E3CE;
  padding: 32px 0 20px 0;
  margin-top: 60px;
  border-top: 1px solid #c8d3be;
}
footer .container {
  display: flex;
  flex-direction: row;
  gap: 34px;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer .logo img {
  height: 38px;
  margin-bottom: 14px;
  margin-right: 26px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-right: 24px;
}
.footer-nav a {
  color: #265236;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #B16868;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  color: #284035;
  font-size: 1rem;
}
.contact-details img {
  height: 20px;
  width: auto;
  opacity: 0.7;
  margin-right: 4px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* CALL TO ACTION & CTA SECTIONS */
.cta {
  background: linear-gradient(120deg, #FAECE6 58%, #E4F4EA 100%);
  padding: 48px 0;
  border-radius: 18px;
  margin-bottom: 30px;
  box-shadow: 0 4px 18px rgba(44,82,54,0.09);
}
.cta h2 {
  color: #B16868;
  font-family: 'Playfair Display', serif;
}
.cta .cta-btn {
  margin-top: 14px;
  min-width: 210px;
}

/* RESPONSIVE SIZING */
@media (max-width: 680px) {
  body {
    font-size: 15px;
  }
  h1 { font-size: 1.6rem;}
  h2 { font-size: 1.2rem;}
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 34px;
  }
  .hero .container {
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: unset;
  }
  .hero {
    min-height: 220px;
    padding: 40px 0 16px 0;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #F6E8F1;
  color: #265236;
  box-shadow: 0 -2px 40px rgba(185,104,104,0.12);
  border-top: 3px solid #BCD4AC;
  padding: 22px 6vw 22px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  z-index: 3333;
  font-size: 1.03rem;
  animation: cookie-slide-up 0.5s cubic-bezier(.7,0,.23,1);
}
@keyframes cookie-slide-up {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #BCD4AC;
  color: #265236;
  border-radius: 20px;
  padding: 8px 22px;
  font-weight: 700;
  font-size: 1.01rem;
  border: none;
  outline: none;
  transition: background 0.18s, color 0.16s;
}
.cookie-btn.accept {
  background: #B16868;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #8C2525;
}
.cookie-btn.reject {
  background: #d2bfc8;
  color: #8C2525;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #B16868;
  color: #fff;
}
.cookie-btn.settings {
  background: #F1EEDC;
  color: #8C2525;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E9E3CE;
  color: #B16868;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(44,35,57,0.16);
  z-index: 4444;
  animation: fade-in 0.23s;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  margin: 0 auto;
  max-width: 470px;
  background: #fff;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 -8px 40px rgba(44,82,54,0.12);
  z-index: 4450;
  padding: 34px 24px 22px 24px;
  animation: modal-slide-up 0.35s cubic-bezier(.7,0,.23,1);
}
@keyframes modal-slide-up {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}
.cookie-modal h3 {
  font-size: 1.13rem;
  color: #B16868;
  margin-bottom: 16px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  background: #F4F8F3;
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}
.cookie-modal label[disabled], .cookie-modal label input[disabled] {
  cursor: not-allowed;
  color: #AAA;
}
.cookie-modal input[type=checkbox] {
  accent-color: #BCD4AC;
  background: #FFF;
  width: 19px; height: 19px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}
.cookie-modal .cookie-btn {
  min-width: 100px;
}
.cookie-modal .category-desc {
  font-size: 0.98rem;
  color: #656e66;
  margin-bottom: 10px;
}
@media (max-width: 550px) {
  .cookie-modal {
    padding: 20px 7px 15px 7px;
    max-width: 98vw;
  }
}

/* ANIMATIONS & TRANSITIONS */
body, .cta-btn, a, .feature-block, .card, .testimonial-card, .footer-nav a, .main-nav a, .mobile-nav a, .cookie-btn {
  transition-timing-function: cubic-bezier(.7,0,.23,1);
  transition-duration: .23s;
}

/* UTILITIES */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }
.gap-2 { gap: 16px !important; }
.gap-3 { gap: 24px !important; }

/* SPECIALS: MODALS, SEPARATORS, MISC */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.expected-results {
  background: #F6E8F1;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 1.01rem;
  color: #877495;
  margin-top: 18px;
  box-shadow: 0 2px 6px rgba(177,104,168,0.06);
}
.expert-advice {
  background: #E9F8EC;
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 18px;
  color: #265236;
}

/* ENFORCE FLEXBOX ONLY (no grid or columns) */
:root {
  --forbid: initial;
  /* The following selectors serve as warnings for dev, but don't affect CSS */
}

/* Selection highlight */
::selection {
  background: #FDEDF2;
  color: #265236;
}

/* Decorative pastel background stripes (dreamy accent lines) */
body:before {
  content: '';
  pointer-events: none;
  position: fixed;
  z-index: 0;
  left: -50px;
  top: 40vh;
  width: 130vw;
  height: 50vh;
  background: linear-gradient(120deg, rgba(185,216,190,0.18) 0%, rgba(243,213,229,0.14) 100%);
  filter: blur(44px) brightness(1.12);
  opacity: .55;
}

/* Hide elements on small screens if needed */
@media (max-width: 600px) {
  .trust-badges {
    gap: 10px;
  }
  .testimonial-card {
    padding: 15px 6px;
  }
  .feature-block {
    padding: 15px 8px;
    min-width: 0;
  }
  .logo img, footer .logo img {
    max-width: 80vw; height: 28px;
  }
  .section {
    padding: 20px 3px;
  }
}

/* Hide cookie banner/modal if not shown by logic in JS */
.cookie-banner[hidden], .cookie-modal-overlay[hidden] {
  display: none !important;
}
