/* RESET & BASE ---------------------------------- */
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,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 { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F2F4EE;
  color: #37563B;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
button, .cta-button, .cta-link, .mobile-menu-toggle {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
ul, ol { list-style: none; }
strong { font-weight: bold; }
hr { border: none; border-top: 1px solid #e1ead7; margin: 32px 0; }

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

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* TYPOGRAPHY -------------------------------------- */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #3ea94a;
  margin-bottom: 8px;
  letter-spacing: -1px;
  line-height: 1.08;
  text-shadow: 2px 4px 0 #c1edb4, 0 1px 12px #bedfaf44;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #37563B;
  margin-bottom: 8px;
  line-height: 1.16;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #537e3e;
  margin-bottom: 8px;
}
.subheadline {
  font-size: 1.1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #538853;
  margin-bottom: 16px;
}
p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #37563B;
}
blockquote {
  font-family: 'Montserrat', cursive, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  background: #ffe8e8;
  border-left: 8px solid #ffb53b;
  color: #c37200;
  margin: 8px 0 20px 0;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px #ffb53b22;
}

/* HEADER & NAVIGATION ----------------------------- */
header {
  background: #ffffff;
  box-shadow: 0 3px 18px -8px #acdec538;
  position: sticky;
  top: 0;
  z-index: 42;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 16px 10px 16px;
}
.logo {
  min-width: 110px;
  display: flex;
  align-items: center;
  animation: pop-logo .75s cubic-bezier(.33,2, .43,.8);
}
@keyframes pop-logo {
  0% { transform: scale(0.8) rotate(-10deg); opacity:0; }
  70% { transform: scale(1.13) rotate(8deg); opacity:.7; }
  100% { transform: scale(1) rotate(0); opacity:1; }
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 7px 13px;
  color: #507428;
  border-radius: 20px;
  transition: background .2s, color .2s, box-shadow .2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #e5f7d7;
  color: #2a5c1a;
  box-shadow: 0 1px 8px #9ce1644a;
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 900;
  color: #fff;
  background: #3ea94a;
  border-radius: 30px;
  padding: 10px 28px;
  box-shadow: 0 6px 28px -8px #91d8526e;
  position: relative;
  transition: background .2s, box-shadow .2s, transform .15s;
  outline: none;
  border: none;
  margin-left: 6px;
}
.cta-button:hover, .cta-button:focus {
  background: #235d29;
  color: #fff;
  transform: translateY(-1px) scale(1.07) rotate(-2deg);
  box-shadow: 0 2px 16px #59d68c85;
}
.cta-link {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: #ff7e57;
  display: inline-block;
  margin-top: 10px;
  transition: color .16s, text-decoration .11s;
}
.cta-link:hover, .cta-link:focus {
  color: #e25e1b;
  text-decoration: underline wavy #ffcd0d 2px;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  font-weight: bold;
  background: #e8ffd0;
  color: #23ad44;
  padding: 7px 18px 7px 15px;
  border-radius: 18px;
  transition: background .18s, color .15s, box-shadow .18s;
  z-index: 50;
  margin-left: 4px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #14d877;
  color: #fff;
  box-shadow: 0 2px 14px #40d0ca4c;
}

/* MOBILE MENU ------------------------------------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #f9fff5;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  transform: translateX(-110%);
  transition: transform 0.38s cubic-bezier(.25,1.2,.55,1);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  padding: 36px 24px 24px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 80px #2a740e22;
}
.mobile-menu-close {
  font-size: 2.3rem;
  align-self: flex-end;
  background: #fff5e9;
  color: #ff7e57;
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 2px 14px #ffd53e2b;
  transition: background .16s, color .13s, transform .12s;
  overflow: visible !important;
}
.mobile-menu-close:hover {
  background: #ffd1b3;
  color: #c05624;
  transform: rotate(-10deg) scale(1.14);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #0d4609;
  padding: 14px 0 8px 16px;
  border-radius: 24px;
  background: #e6f7e1;
  margin-bottom: 2px;
  transition: background .18s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff0dc;
  color: #ff7e57;
}

/* LAYOUT SECTIONS --------------------------------- */
section {
  width: 100%;
  background: none;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 799px) {
  section {
    padding: 20px 7px;
    margin-bottom: 36px;
  }
}

.feature-grid, .category-grid, .values-grid, .advice-category-grid, .product-list, .inspiration-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 10px;
}

.feature-grid > div,
.category-grid > div,
.values-grid > div,
.advice-category-grid > div,
.product-list > div,
.inspiration-list > div {
  background: #fff;
  border-radius: 22px;
  padding: 22px 18px 17px 18px;
  flex: 1 1 244px;
  min-width: 210px;
  max-width: 340px;
  box-shadow: 0 2px 18px #44ca3845, 0 0px 0px #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .22s, transform .13s;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid > div:hover, .category-grid > div:hover, .values-grid > div:hover,
.advice-category-grid > div:hover, .product-list > div:hover, .inspiration-list > div:hover {
  box-shadow: 0 8px 40px #67d48766;
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}
.feature-grid img, .values-grid img, .category-grid img, .product-list img {
  width: 48px; height: 48px;
  margin-bottom: 8px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 1px 12px #6cd44e1c;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
  transition: box-shadow .19s, transform .11s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 38px #d0efaf64;
  transform: scale(1.03) rotate(-1.5deg);
}

.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: 20px;
    align-items: flex-start;
  }
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 3px 16px #ecd1672e;
  margin-bottom: 20px;
  min-width: 213px;
  max-width: 370px;
  flex: 1 1 290px;
  transition: box-shadow .22s, transform .13s;
  border: 2px solid #ffe291;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px #eac8142b;
  transform: scale(1.023) rotate(2deg);
}
.testimonial-rating {
  font-size: 1.33rem;
  color: #ffb53b;
  letter-spacing: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-author {
  font-size: 0.98rem;
  font-weight: 700;
  color: #458824;
  margin-top: -11px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  background: #fff; /* fallback */
  border-radius: 16px;
  box-shadow: 0 2px 13px #cad99132;
  margin-bottom: 20px;
}

/* BADGES & RATINGS */
.badge {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.89rem;
  font-weight: 700;
  color: #fff;
  background: #ff9f3b;
  border-radius: 20px;
  padding: 3px 13px;
  margin-left: 7px;
  filter: drop-shadow(0 1.5px 6px #ffdf90aa);
  animation: badge-pop .5s;
}
@keyframes badge-pop {
  0% {transform: scale(0.75); opacity:0;}
  80% {transform: scale(1.18); opacity:.6;}
  100% {transform: scale(1); opacity:1;}
}
.product-rating, .star-rating {
  font-size: 1.13rem;
  color: #ffc13b;
  margin-top: 5px;
}

/* TABLES (for policy pages) */
table {
  width: 100%;
  border-spacing: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px #e2fbae13;
  margin-bottom: 32px;
}
th, td {
  padding: 12px 16px;
  text-align: left;
}
th {
  background: #eeffd4;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
tr:nth-child(even) { background: #f9fcf3; }

/* LISTS -------------------------------------------- */
ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
  line-height: 1.75;
}
ul li, ol li {
  margin-bottom: 9px;
  font-size: 1.02rem;
  position: relative;
}
ul li:before {
  content: '•';
  color: #67b34e;
  font-weight: bold;
  margin-right: 9px;
  font-size: 1rem;
  vertical-align: middle;
  transition: color .18s;
}
ul li strong { color: #278e76; }

/* NEWSLETTER, CTA, QUICK LINKS --------------------- */
.quick-access-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}
.quick-access-links a {
  background: #e3fca6;
  color: #235d29;
  border-radius: 18px;
  font-weight: 700;
  padding: 9px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: background .18s, color .14s, box-shadow .14s;
  box-shadow: 0 2px 12px #b6e58941;
}
.quick-access-links a:hover {
  background: #ffefdc;
  color: #ea6611;
  box-shadow: 0 2px 14px #f09c3e59;
}

/* CARDS & INFO ------------------------------------- */
.text-section, .footer-contact, .footer-info {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.text-section img {
  width: 19px; height: 19px;
  margin-right: 3px;
  vertical-align: middle;
  position: relative;
  top: 3px;
}
.footer-contact p img {
  top: 3px; margin-right:6px;
}

/* INSPIRATION ARTICLES */
.inspiration-list > div {
  border-left: 4px solid #ffe291;
  position: relative;
}
.call-to-read {
  display: inline-block;
  margin-top: 9px;
  color: #ff7e57;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff9ed;
  border-radius: 18px;
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 17px 6px 16px;
  transition: background .17s, color .14s;
}
.call-to-read:hover {
  background: #ffeae0;
  color: #e35218;
}

/* FOOTER ------------------------------------------- */
footer {
  background: #e4f4e2;
  padding: 34px 0 14px 0;
  border-top: 3px solid #d0ecb8;
  font-size: 0.96rem;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  gap: 36px 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-info {
  flex: 1 1 210px;
  gap: 7px;
}
.footer-info img {
  width: 64px; height: 64px;
  margin-bottom: 12px;
  filter: drop-shadow(0 1px 8px #9de18d11);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #37563B;
  background: #fff;
  border-radius: 14px;
  padding: 7px 18px;
  font-weight: 700;
  margin-bottom: 5px;
  transition: background .16s, color .18s;
}
.footer-nav a:hover {
  background: #fcffef;
  color: #5bb54d;
  box-shadow: 0 1px 9px #bffcac1e;
}
.footer-contact {
  flex: 1 1 220px;
  gap: 5px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.97rem;
}

/* RESPONSIVE BREAKPOINTS ------------------------- */
@media (max-width: 1200px) {
  .container { max-width: 990px; }
}
@media (max-width: 950px) {
  .container { max-width: 800px; }
  .footer-info img { width: 48px; height: 48px; }
}
@media (max-width: 800px) {
  .main-nav { display: none; }
  .cta-button { margin-right: 8px; }
  .mobile-menu-toggle { display: block; }
  .footer-info, .footer-contact {
    flex: 1 1 90vw;
    align-items: flex-start;
  }
}
@media (max-width: 750px) {
  .container {
    max-width: 97vw;
    padding: 0 4vw;
  }
  .feature-grid, .category-grid, .values-grid, .advice-category-grid, .product-list, .inspiration-list {
    gap: 17px;
  }
  section { border-radius: 14px; }
}
@media (max-width: 600px) {
  h1, .h1 { font-size: 1.43rem; }
  h2 { font-size: 1.08rem; }
  .feature-grid > div, .category-grid > div, .values-grid > div, .advice-category-grid > div, .product-list > div, .inspiration-list > div {
    min-width: 90vw; max-width: 99vw; flex: 1 1 99vw;
    border-radius: 16px;
  }
  .testimonial-card { max-width: 98vw; min-width: 93vw; }
  .footer-info img { width: 43px; height: 43px; }
}

/* ANIMATIONS & INTERACTIONS ---------------------- */
section, .card, .testimonial-card, .cta-button {
  animation: fadein-appear .6s cubic-bezier(.37,2,.57,1);
}
@keyframes fadein-appear {
  from { opacity: 0; transform: translateY(28px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

[tabindex]:focus-visible, a:focus-visible, button:focus-visible {
  outline: 2px dotted #67b34e;
  outline-offset: 1px;
}

/* COOKIE CONSENT (Banner & Modal) ----------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 20428;
  background: #37563B;
  color: #fff;
  border-radius: 32px 32px 0 0;
  padding: 20px 24px 13px 24px;
  box-shadow: 0 -2px 30px #85c58d49;
  display: flex;
  align-items: center;
  gap: 22px;
  animation: slideup-banner .4s cubic-bezier(.42,1.5,.7,.95);
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; gap: 16px; align-items: flex-start; padding: 12px 10px 7px 10px; }
}
@keyframes slideup-banner {
  from { transform: translateY(100px); opacity:0; }
  to   { transform: none; opacity:1; }
}
.cookie-banner p {
  font-size: 0.97rem;
  color: #fff;
  margin: 0 0 3px 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn, .cookie-btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  transition: background .18s, color .13s;
  margin: 0;
  box-shadow: 0 2px 14px #f6ff9c31;
}
.cookie-btn {
  background: #ffb53b;
  color: #fff;
}
.cookie-btn:hover { background: #3ea94a; color: #fff; }
.cookie-btn-secondary {
  background: #eef7e1;
  color: #37563B;
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  background: #fee2b1;
  color: #df8f09;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 21420;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #0f463ad9;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: showcookie .2s;
}
@keyframes showcookie { from{ opacity:.1; } to{ opacity:1; } }
.cookie-modal {
  background: #fff;
  color: #37653b;
  border-radius: 28px;
  padding: 32px 24px 21px 24px;
  min-width: 340px;
  max-width: 96vw;
  box-shadow: 0 2px 40px #3eb97887;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
  animation: cookie-modal-appear .35s cubic-bezier(.34,1.2,.41,1.1);
}
@keyframes cookie-modal-appear {
  from { transform: scale(.8) translateY(44px); opacity:0; }
  to   { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal h3 {
  font-size: 1.19rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #146b15;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-toggle {
  width: 38px; height: 22px;
  border-radius: 13px;
  background: #e7e7e7;
  position: relative;
  cursor: pointer;
  transition: background .14s;
  flex-shrink: 0;
  margin-left: auto;
}
.cookie-toggle[data-enabled="true"] {
  background: #3ea94a;
}
.cookie-toggle-circle {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 6px #bccfd936;
  position: absolute;
  top: 1px; left: 1px;
  transition: left .18s;
}
.cookie-toggle[data-enabled="true"] .cookie-toggle-circle {
  left: 17px;
}
.cookie-modal-close {
  position: absolute;
  right: 16px; top: 16px;
  background: #e5ffd2;
  color: #376543;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1.36rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background .12s, color .13s, transform .13s;
}
.cookie-modal-close:hover {
  background: #ffb53b;
  color: #fff;
  transform: rotate(9deg) scale(1.12);
}
.cookie-modal .cookie-actions { margin-top: 18px; }

/* MISC -------------------------------------------- */
::-webkit-scrollbar {
  width: 9px;
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #92d6b5;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb:hover {
  background: #376d4e;
}

/* PLAYFUL DYNAMIC STYLE EXTRAS ------------------ */
section, .card, .testimonial-card, .feature-grid > div, .category-grid > div, .inspiration-list > div {
  position: relative;
  /* Fun floating shapes (decor) for playful feel: Use ::after pseudo - randomly colored circles */
}
.feature-grid > div::after, .testimonial-card::after, .category-grid > div::after, .card::after, .inspiration-list > div::after {
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  background: #ffe29199;
  width: 26px; height: 26px;
  right: 20px; top: -15px;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}
.feature-grid > div:nth-child(2)::after,
.category-grid > div:nth-child(2)::after,
.inspiration-list > div:nth-child(2)::after {
  background: #3ee7b7bb;
  width: 16px; height: 16px;
  top: -10px; right: 13px;
}
.feature-grid > div:nth-child(3)::after,
.category-grid > div:nth-child(3)::after {
  background: #fca2f8bb;
  width: 20px; height: 20px;
  top: 22px; right: -15px;
}

/* Fun font for headings! */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900;800;700;600;400&family=Roboto:wght@400;500;700&display=swap');

body {
  background-size: 100% 70px;
  background-image: linear-gradient(90deg, #f9ffe9 0 36%, #fff6f1 60%, #ecfff7 100%);
}

/* ACCESSIBILITY: Contrast in testimonials and reviews  */
.testimonial-card p,
.testimonial-card .testimonial-rating,
.testimonial-author {
  color: #273f11 !important;
}

/* END OF CSS */
