/* ========================================================================== */
/*               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,
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8F9F6;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  background: #F6F7F3;
  color: #24312A;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}
a {
  color: #387B54;
  text-decoration: none;
  transition: color .18s;
}
a:hover, a:focus {
  color: #4CA153;
  outline: none;
}
ul, ol {
  padding-left: 24px;
}
img {
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: background .18s, color .16s;
}
input, textarea, select {
  font-family: inherit;
  font-size: 1em;
  border-radius: 8px;
  outline: none;
  border: 1px solid #C0C4B7;
  padding: 10px 12px;
  background: #fff;
  color: #1e321e;
}
*
{
  box-sizing: border-box;
}

/* ========================================================================== */
/*                 Brand and Nature Organic Variables                         */
/* ========================================================================== */
:root {
  --brand-primary: #1C2533;        /* Electron Glide brand primary */
  --brand-secondary: #F3F7FA;      /* Electron Glide light bg */
  --brand-accent: #2196F3;
  --nature-green: #387B54;         /* Primary accent green (organic) */
  --nature-green-hover: #4CA153;
  --nature-dark-green: #24312A;    /* Very dark accent green */
  --nature-beige: #F8F9F6;         /* Main light bg */
  --nature-brown: #B19470;         /* Earth brown accent */
  --nature-coral: #E99C6F;         /* Warm accent */
  --nature-stone: #D7C9B7;         /* Pale stone bg */
  --nature-leaf: #E7F2EC;          /* Soft leaf light bg */
  --nature-shadow: 0 2px 12px 0 rgba(60, 72, 56, 0.09);
  --border-radius-main: 18px;
  --border-radius-btn: 30px;
  --border-radius-card: 16px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ========================================================================== */
/*                           Typography                                      */
/* ========================================================================== */
h1, .h1 { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; line-height: 1.1; color: var(--nature-dark-green); margin-bottom: 20px; letter-spacing: -0.02em; }
h2, .h2 { font-family: var(--font-display); font-size: 2rem;   font-weight: 600; line-height: 1.15; color: var(--nature-dark-green); margin-bottom: 18px; }
h3, .h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; line-height: 1.2; color: var(--nature-green); margin-bottom: 14px; }
h4, .h4 { font-family: var(--font-display); font-size: 1.18rem; font-weight: 500; color: var(--nature-green); margin-bottom: 10px; }
p, li, ol, ul {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #33422f;
}
strong {
  font-weight: 600;
}

/* ========================================================================== */
/*                       Container & Sections                                 */
/* ========================================================================== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  background: var(--nature-leaf);
  border-radius: var(--border-radius-main);
  box-shadow: var(--nature-shadow);
  margin-bottom: 36px;
  padding: 40px 28px 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--nature-beige);
  border-radius: var(--border-radius-main);
}

/* ========================================================================== */
/*                          Header & Navigation                               */
/* ========================================================================== */
header {
  width: 100%;
  background: var(--nature-leaf);
  box-shadow: 0 4px 24px 0 rgba(36, 49, 42, 0.04);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.desktop-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.desktop-nav a {
  color: var(--nature-green);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 6px;
  border-radius: 8px;
  transition: background .17s, color .13s;
}
.desktop-nav a:hover, .desktop-nav a.active {
  background: var(--nature-green);
  color: var(--nature-beige);
}
.cta.primary {
  background: var(--nature-green);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.08em;
  letter-spacing: 0.03em;
  font-weight: 600;
  border-radius: var(--border-radius-btn);
  padding: 11px 36px;
  margin-left: 10px;
  box-shadow: 0 2px 8px 0 rgba(60, 72, 56, 0.06);
  border: none;
  transition: background 0.18s, box-shadow 0.15s, color .14s;
  cursor: pointer;
  outline: none;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--nature-green-hover);
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(76, 161, 83, 0.13);
}

/* Logo size */
header .container > a > img { height: 46px; }
footer .footer-logo img { height: 38px; }

/* ========================================================================== */
/*                    Mobile Navigation Styles                                */
/* ========================================================================== */
.mobile-menu-toggle {
  position: fixed;
  top: 18px;
  right: 23px;
  width: 51px;
  height: 51px;
  background: var(--nature-green);
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px 0 rgba(60, 72, 56, 0.14);
  border: none;
  transition: background .17s, box-shadow .13s;
  cursor: pointer;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--brand-accent);
}
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 94vw;
  max-width: 360px;
  height: 100vh;
  background: var(--nature-leaf);
  box-shadow: -2px 0 38px 0 rgba(36,49,42,0.21);
  z-index: 1115;
  transform: translateX(110%);
  transition: transform .34s cubic-bezier(.77,.15,.22,.81);
  padding: 26px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-right: 14px;
  margin-bottom: 16px;
  background: #fff;
  color: var(--nature-green);
  border-radius: 50%;
  font-size: 2.1rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 6px rgba(36,49,42,0.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 0 32px;
}
.mobile-nav a {
  color: var(--nature-green);
  font-family: var(--font-body);
  font-size: 1.13rem;
  padding: 11px 3px;
  border-radius: 10px;
  margin-bottom: 2px;
  transition: background .18s, color .13s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--nature-green);
  color: #fff;
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* Hide desktop nav on mobile */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  header .container {
    gap: 6px;
  }
}

/* Show burger only below large screens */
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* ========================================================================== */
/*                              Main Layouts                                  */
/* ========================================================================== */
main {
  margin-bottom: 48px;
  margin-top: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--border-radius-main);
  background: var(--nature-beige);
  display: flex;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--border-radius-card);
  box-shadow: var(--nature-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.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-slider {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(60, 72, 56, 0.11);
  min-width: 290px;
  max-width: 410px;
  flex: 1 1 290px;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #253C1E;
  font-size: 1.13rem;
  font-family: var(--font-display);
  margin-bottom: 8px;
}
.testimonial-card span {
  color: var(--nature-brown);
  font-size: 0.99rem;
  margin-left: 10px;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Teaser grids & listing grids (custom layouts for provided html) */
.feature-grid, .listing-teaser-grid, .top-guides-grid, .ranking-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 18px;
}
.feature-grid > div,
.listing-teaser-grid > div, .top-guides-grid > div, .ranking-categories-grid > div {
  flex: 1 1 210px;
  min-width: 240px;
  background: #fff;
  border-radius: var(--border-radius-card);
  box-shadow: var(--nature-shadow);
  padding: 23px 18px 20px 18px;
  margin-bottom: 18px; /* to comply with spacing rules */
  display: flex;
  flex-direction: column;
  gap: 13px;
  border-left: 7px solid var(--nature-green);
  transition: border-color .14s, box-shadow .15s;
}
.feature-grid > div:hover, .listing-teaser-grid > div:hover, .top-guides-grid > div:hover, .ranking-categories-grid > div:hover {
  border-left: 7px solid var(--nature-brown);
  box-shadow: 0 4px 24px 0 rgba(224, 153, 111, 0.14);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin-bottom: 16px;
}
.category-filters li {
  background: var(--nature-stone);
  color: var(--nature-green);
  padding: 9px 22px;
  border-radius: 21px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.08rem;
  cursor: pointer;
  transition: background .15s, color .12s;
  margin-bottom: 4px;
}
.category-filters li:hover {
  background: var(--nature-green);
  color: #fff;
}

/* Best products highlight in ranking */
.best-products-highlights {
  margin-top: 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 12px rgba(60, 72, 56, 0.08);
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.best-products-highlights h4 {
  color: var(--nature-coral);
  font-size: 1.1rem;
  margin-bottom: 0px;
}

/* Methodologies/list etc */
.methodology-list, .privacy-policy-content ul, .terms-of-service-content ul, .cookies-policy-content ul, .rodo-content ul {
  margin: 13px 0 21px 0;
}
.methodology-list li, .privacy-policy-content ul li, .terms-of-service-content ul li, .cookies-policy-content ul li, .rodo-content ul li {
  margin-bottom: 9px;
  color: #2C421C;
  font-size: 1.01rem;
}

/* Search and info blocks */
.search-guides {
  margin-top: 24px;
  background: var(--nature-stone);
  border-radius: 14px;
  padding: 16px 18px;
}
.search-guides p {
  margin: 0;
  color: #2A3821;
  font-size: 1.02rem;
}
.address-block, .opening-hours {
  margin-bottom: 18px;
  background: var(--nature-leaf);
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-radius: 13px;
  padding: 13px 16px 13px 13px;
}

/* Newsletter signup area */

/* ========================================================================== */
/*                           Footer Styles                                    */
/* ========================================================================== */
footer {
  background: var(--nature-stone);
  border-top: 1px solid #ded7cc;
  padding: 35px 0 0 0;
  font-size: 1rem;
  color: #2B4222;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px 48px;
  justify-content: flex-start;
}
.footer-logo {
  flex: 1 1 110px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 19px 32px;
  align-items: flex-start;
  flex: 2 1 220px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--nature-green);
  font-family: var(--font-body);
  padding: 4px 1px;
  font-size: 1rem;
  border-radius: 6px;
  transition: background .14s, color .12s;
}
.footer-nav a:hover {
  background: var(--nature-green);
  color: #fff;
}
.footer-contact {
  flex: 3 1 310px;
  font-size: 1rem;
  color: #575d4f;
  margin-bottom: 8px;
}
.footer-copy {
  flex-basis: 100%;
  padding-top: 15px;
  font-size: 0.95rem;
  color: #7A7D6E;
  text-align: left;
  border-top: 1px solid #e5e1d8;
  margin-top: 10px;
}

/* Icon in footer contact */
.footer-contact img {
  height: 1.1em;
  width: auto;
  margin-right: 4px;
  vertical-align: middle;
}

/* ========================================================================== */
/*                      Responsive Flexbox Layouts                            */
/* ========================================================================== */
@media (max-width: 1024px) {
  .container, footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .content-grid, .feature-grid, .listing-teaser-grid, .ranking-categories-grid, .top-guides-grid {
    flex-direction: column;
    gap: 22px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 22px;
  }
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .container, .content-wrapper, .section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section, .content-wrapper {
    border-radius: 12px;
    padding: 26px 10px 20px 10px;
  }
  main {
    margin-top: 19px;
    margin-bottom: 22px;
  }
}
@media (max-width: 768px) {
  .footer-nav { gap: 6px 24px; margin-bottom: 3px; }
  .footer-contact { margin-bottom: 2px; }
  .footer-logo { margin-bottom: 2px; }
  .footer-copy {
    font-size: 0.87rem;
    padding-top: 8px;
    margin-top: 3px;
  }
}
@media (max-width: 728px) {
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 { font-size: 1.25rem; }
  h3, .h3 { font-size: 1.08rem; }
  .feature-grid > div, .listing-teaser-grid > div, .top-guides-grid > div, .ranking-categories-grid > div {
    min-width: 0;
    padding: 16px 11px 13px 11px;
    border-radius: 11px;
  }
  .testimonial-card {
    min-width: 0;
    padding: 13px;
    border-radius: 12px;
  }
}
/* For text-image-section */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ========================================================================== */
/*                  News & Custom Listing Sections                            */
/* ========================================================================== */
.news-article-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 11px;
  list-style: none;
}
.news-article-list li {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 10px rgba(60, 72, 56,0.07);
  padding: 20px 18px;
}
.news-article-list h3 { margin-bottom: 4px; }

/* ========================================================================== */
/*                Cookie Consent Banner & Modal                               */
/* ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--nature-stone);
  border-top: 2px solid var(--nature-brown);
  box-shadow: 0 -1px 14px rgba(36,49,40,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1800;
  padding: 22px 9vw 22px 9vw;
  gap: 13px;
  animation: fadeInUpBanner .44s cubic-bezier(.17,.67,.68,1);
}
@keyframes fadeInUpBanner {
  from { transform: translateY(90px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #253C1E;
  font-size: 1.06rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-btn, .cookie-banner button {
  border-radius: var(--border-radius-btn);
  padding: 9px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0;
  border: none;
  box-shadow: 0 1px 7px rgba(60,72,56,0.09);
  transition: background .16s, box-shadow .13s, color .12s;
  cursor: pointer;
}
.cookie-accept {
  background: var(--nature-green);
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--nature-green-hover);
}
.cookie-reject {
  background: #fff;
  color: var(--nature-green);
  border: 1px solid var(--nature-green);
}
.cookie-reject:hover {
  background: var(--nature-leaf);
  color: #2a4c24;
}
.cookie-settings {
  background: var(--nature-brown);
  color: #fff;
}
.cookie-settings:hover {
  background: var(--nature-coral);
}
@media (max-width: 660px) {
  .cookie-banner {
    padding: 20px 5vw 18px 5vw;
  }
  .cookie-btn, .cookie-banner button {
    font-size: 0.95rem;
    padding: 8px 15px;
  }
  .cookie-banner .cookie-btns {
    flex-direction: column;
    gap: 10px;
  }
}

.cookie-modal {
  position: fixed;
  top: 0; left: 0; right:0; bottom: 0;
  background: rgba(24,30,19,0.51);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeInModalBg .38s cubic-bezier(.15,.65,.5,1.01);
}
@keyframes fadeInModalBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  max-width: 410px;
  width: 94vw;
  box-shadow: 0 4px 32px rgba(60,72,56,0.23);
  padding: 35px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  animation: fadeInModal .34s cubic-bezier(.22,.87,.59,.89);
  position: relative;
}
@keyframes fadeInModal {
  from {transform: scale(.92); opacity: 0;}
  to   {transform: scale(1); opacity: 1;}
}
.cookie-modal-content h3 {
  color: var(--nature-green);
  margin-bottom: 6px;
  font-size: 1.25rem;
}
.cookie-modal-content .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 20px 0 13px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--nature-leaf);
  padding: 11px 17px;
  border-radius: 12px;
  font-size: 1rem;
}
.cookie-category label {
  font-family: var(--font-body);
  font-weight: 400;
  cursor: pointer;
  color: #2a381f;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  right: 15px; top: 13px;
  background: #fff;
  color: var(--nature-green);
  border-radius: 50%;
  border: none;
  width: 36px; height: 36px;
  font-size: 1.4em;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 7px rgba(60,72,56,0.09);
}

@media (max-width: 560px) {
  .cookie-modal-content {
    max-width: 98vw;
    padding: 19px 8px;
  }
  .cookie-category { font-size: 0.99rem; padding: 8px 7px; }
}

/* Toggle switch for cookie categories */
.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #d2eac6;
  border-radius: 24px;
  transition: background 0.17s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px; bottom: 2px;
  background: var(--nature-green);
  border-radius: 50%;
  transition: transform 0.18s, background 0.13s;
}
input:checked + .slider {
  background: var(--nature-green);
}
input:checked + .slider:before {
  transform: translateX(24px);
  background: var(--nature-coral);
}

/* ========================================================================== */
/*                        Micro-interactions & Effects                        */
/* ========================================================================== */
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px 0 rgba(56,123,84,0.08), 0 1px 11px 0 rgba(185,148,112,0.09);
}
.feature-grid > div:active, .feature-grid > div:focus-within,
.listing-teaser-grid > div:active, .listing-teaser-grid > div:focus-within {
  box-shadow: 0 8px 44px 0 rgba(56,123,84,0.11), 0 2px 18px 0 rgba(233,156,111,0.11);
  border-color: var(--nature-coral);
}

/* Highlight for tab/keyboard focus on interactive elements */
a:focus, button:focus, .cta.primary:focus, .cookie-btn:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--nature-green);
}

/* Transitions for cards and buttons */
.card, .feature-grid > div, .testimonial-card, .cta.primary, .cookie-btn {
  transition: box-shadow .17s, border .16s, background .15s, color .12s;
}

/* ========================================================================== */
/*                          Miscellaneous                                     */
/* ========================================================================== */
::-webkit-input-placeholder { color: #999; opacity: .85; }
:-ms-input-placeholder { color: #999; opacity: .85; }
::placeholder { color: #999; opacity: .85; }

hr {
  border: 0;
  border-bottom: 1px solid #e0dfd9;
  margin: 28px 0;
}

/* List section for privacy/cookies/terms */
.privacy-policy-content, .terms-of-service-content, .cookies-policy-content, .rodo-content {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 11px rgba(60, 72, 56,0.08);
  padding: 27px 22px;
  margin-bottom: 16px;
}

/* Media mentions and trusted sources blocks */
.media-mentions, .trusted-sources {
  background: var(--nature-leaf);
  padding: 11px 19px;
  border-radius: 10px;
  color: var(--nature-dark-green);
  font-size: 1rem;
  margin-top: 7px;
  margin-bottom: 11px;
}

/* Decorative organic shapes (optional for visuals) */
.organic-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.14;
}

/* ========================================================================== */
/*                         Accessibility & Print                              */
/* ========================================================================== */
@media (print) {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  main { margin: 0 !important; }
}

/* ========================================================================== */
/* EOF Modern Nature Organic Theme for Electron Glide | Powered by Flexbox    */
/* ========================================================================== */
