/* ==== 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, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FAF8F4;
  color: #272D21;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img, video, canvas, svg {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}
:root {
  --color-primary: #212F45;
  --color-secondary: #1CA89B;
  --color-accent: #F7F7FA;
  --color-green: #397646;
  --color-brown: #7C6747;
  --color-beige: #F3EBDD;
  --color-dark: #20281c;
  --color-white: #FFF;
  --radius-main: 18px;
  --shadow-soft: 0 6px 32px 0 rgba(50, 80, 45, 0.08);
  --shadow-card: 0 3px 24px rgba(50,40,10,0.10);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ==== TYPOGRAPHY ==== */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-green);
  margin-bottom: 18px;
  letter-spacing: -1px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-green);
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-primary);
}
p, ul, ol, blockquote, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.7;
}
.subheadline {
  font-size: 1.15rem;
  color: var(--color-brown);
  margin-bottom: 18px;
}
strong {
  color: var(--color-green);
}
blockquote {
  color: var(--color-primary);
  font-size: 1.1rem;
  font-style: italic;
  margin: 0 0 10px 0;
}

/* ==== CONTAINER & LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.content-wrapper {
  background: var(--color-accent);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-soft);
  padding: 36px 22px;
  margin-bottom: 40px;
  transition: box-shadow 0.24s;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* ==== FLEXBOX LAYOUT UTILS ==== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 4px;
}
.card-container, .guide-list, .blog-list, .trend-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--radius-main);
  background: var(--color-beige);
  position: relative;
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  flex: 1 1 260px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.24s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 38px 0 rgba(75, 140, 90, 0.13);
  transform: translateY(-3px) scale(1.012);
}
.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;
  background: #F4F8F2;
  color: var(--color-primary);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.categories-filter, .filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

/* ==== BUTTONS ==== */
.cta-btn, .content-wrapper a.cta-btn {
  background: var(--color-green);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 13px 28px;
  border-radius: 999px;
  box-shadow: 0 3px 18px rgba(55, 125, 95, 0.16);
  cursor: pointer;
  border: none;
  display: inline-block;
  margin-top: 12px;
  transition: background 0.23s, box-shadow 0.2s, transform 0.13s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #25633A;
  color: var(--color-white);
  box-shadow: 0 7px 32px rgba(67, 143, 95, 0.19);
  transform: translateY(-2px) scale(1.01);
}

button, .filter-controls button, .categories-filter button {
  background: var(--color-beige);
  color: var(--color-green);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 550;
  font-size: 1rem;
  padding: 8px 19px;
  border: none;
  box-shadow: 0 1.5px 8px rgba(104,124,91,0.08);
  transition: background 0.18s, color 0.16s, box-shadow 0.15s;
  cursor: pointer;
}
button:hover, .filter-controls button:hover, .categories-filter button:hover {
  background: var(--color-green);
  color: var(--color-white);
  box-shadow: 0 3px 16px rgba(90, 152, 98, 0.14);
}

/* ==== HEADER & NAV ==== */
header {
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 1px 16px rgba(67, 120, 54, 0.05);
  position: relative;
  z-index: 90;
}
.main-nav {
  max-width: 1220px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.main-nav > a img {
  height: 39px;
  width: auto;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
.main-nav li {
  list-style: none;
}
.main-nav a:not(.cta-btn) {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 4px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.13s;
}
.main-nav a:not(.cta-btn):hover, .main-nav a:not(.cta-btn):focus {
  background: var(--color-beige);
  color: var(--color-green);
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-green);
  color: var(--color-white);
  font-size: 2.1rem;
  padding: 8px 18px;
  border-radius: 13px;
  border: none;
  z-index: 250;
  position: absolute;
  right: 20px;
  top: 18px;
  cursor: pointer;
  box-shadow: 0 2px 13px 0 rgba(43,90,50,0.13);
  transition: background 0.2s, color 0.19s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #388150;
  color: #C2FFE3;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(235, 243, 239, 0.97);
  z-index: 999;
  transform: translateX(100vw);
  transition: transform 0.32s cubic-bezier(.87,0,.13,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--color-brown);
  color: var(--color-white);
  font-size: 2.0rem;
  margin: 32px 32px 12px 0;
  border-radius: 9px;
  border: none;
  padding: 5px 17px;
  cursor: pointer;
  box-shadow: 0 2px 13px 0 rgba(120, 117, 55, 0.13);
  transition: background 0.22s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-green);
  color: var(--color-white);
}
.mobile-nav {
  width: 90vw;
  max-width: 360px;
  margin: 0 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: flex-start;
  background: var(--color-white);
  border-radius: 0 0 var(--radius-main) var(--radius-main);
  box-shadow: 0 2px 19px #68835C27;
  padding: 36px 26px 24px 32px;
  margin-right: 30px;
}
.mobile-nav a {
  color: var(--color-green);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  padding: 8px 0;
  border-radius: 7px;
  width: 100%;
  transition: background 0.14s, color 0.15s;
  display: block;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-beige);
  color: var(--color-brown);
}

/* ==== MAIN SECTIONS & ORGANIC SHAPES ==== */
main section, .section {
  background: none;
  position: relative;
}
main .container {
  padding-bottom: 0;
}
.content-wrapper {
  border: 1.5px solid #E5E8E3;
}

/* Organic section backgrounds as SVG overlays */
.section::before {
  content: '';
  position: absolute;
  display: block;
  z-index: 1;
  width: 128px; height: 75px;
  top: -38px; left: -46px;
  pointer-events: none;
  background: url('data:image/svg+xml;utf8,<svg width="128" height="75" viewBox="0 0 128 75" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="67" cy="40" rx="38" ry="31" fill="%23B9D1B7" opacity="0.12"/></svg>');
}
.section:last-child::after {
  content: '';
  position: absolute;
  display: block;
  bottom: -25px; right: -60px;
  width: 88px; height: 51px;
  pointer-events: none;
  z-index: 1;
  background: url('data:image/svg+xml;utf8,<svg width="88" height="51" viewBox="0 0 88 51" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="44" cy="25.5" rx="44" ry="25.5" fill="%23F0E3C8" opacity="0.17"/></svg>');
}

/* ==== ORGANIC CARD ELEMENTS ==== */
.features-grid > div, .trend-highlights > div, .guide-list > div, .blog-list > li {
  background: var(--color-beige);
  border-radius: var(--radius-main) var(--radius-main) 32px 12px / 14px 34px 29px 27px;
  box-shadow: var(--shadow-card);
  padding: 24px 18px 20px 22px;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  flex: 1 1 250px;
  gap: 6px;
  margin-bottom: 20px;
  border: 1px solid #E5E8E3;
  transition: box-shadow 0.23s, background 0.19s;
  position: relative;
}
.features-grid > div:hover, .trend-highlights > div:hover, .guide-list > div:hover, .blog-list > li:hover {
  box-shadow: 0 8px 36px 0 rgba(50,70,60,0.16);
  background: #F6F9F2;
}
.features-grid img, ul > li img {
  height: 36px;
  margin-bottom: 7px;
  border-radius: 13px;
  background: #e7ede0;
  padding: 6px;
  box-shadow: 0 2px 11px 0 rgba(87,143,90,0.06);
}

/* ==== LISTS ==== */
ul {
  margin-bottom: 20px;
}
li {
  margin-bottom: 14px;
  padding-left: 0.7em;
  position: relative;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--color-green);
  border-radius: 50%;
  vertical-align: middle;
  opacity: 0.64;
}
ul > li img {
  display: inline;
  vertical-align: middle;
  margin-right: 7px;
  margin-bottom: 0;
  height: 22px;
  border-radius: 9px;
  padding: 2px;
  background: #e6f1e5;
}

/* ==== INPUTS ==== */
input[type="text"], input[type="email"], textarea {
  border-radius: 12px;
  background: #F5F7EF;
  border: 1.2px solid #B4C2AE;
  padding: 11px 18px;
  margin-bottom: 13px;
  color: var(--color-dark);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.19s, background 0.13s;
  width: 100%;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--color-green);
  background: #F0F7E5;
}

/* ==== FOOTER ==== */
footer {
  background: var(--color-beige);
  border-top: 2px dashed #A8AB8D15;
  margin-top: 46px;
  padding: 38px 0 18px 0;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo {
  flex: 1 1 60px;
}
.footer-logo img {
  height: 48px;
}
.footer-nav {
  flex: 2 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--color-primary);
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 4px;
  transition: color 0.14s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--color-green);
  text-decoration: underline;
}
.footer-contact {
  flex: 2 1 240px;
  color: var(--color-brown);
  font-size: 1rem;
}
.footer-contact p {
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  height: 18px;
  margin: 0 4px 0 0;
  background: #e4eee0;
  border-radius: 4px;
  padding: 2px;
}

/* ==== MAP PLACEHOLDER ==== */
.map-placeholder {
  background: #E2E7EC;
  color: #AAA78D;
  border-radius: 16px;
  font-size: 1.08rem;
  text-align: center;
  height: 200px;
  line-height: 200px;
  letter-spacing: 1px;
}

/* ==== TESTIMONIALS ==== */
.testimonial-card {
  background: #F7F8F2;
  color: var(--color-primary);
  font-size: 1.12rem;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  align-items: flex-start;
}
.testimonial-card blockquote {
  margin-bottom: 0px;
  color: var(--color-dark);
  font-size: 1.08rem;
}
.testimonial-card span {
  font-family: var(--font-body);
  color: var(--color-green);
  font-size: 1rem;
  font-weight: 500;
  margin-left: 12px;
}

/* ==== VISUAL MICRO-INTERACTIONS ==== */
a, button, .cta-btn, .main-nav a, .footer-nav a, .filter-controls button, .categories-filter button {
  transition: background 0.18s, color 0.13s, box-shadow 0.14s, transform 0.13s;
}
.card, .features-grid > div, .guide-list > div, .trend-highlights > div {
  transition: box-shadow 0.23s, background 0.19s, transform 0.13s;
}
.card:hover, .features-grid > div:hover, .guide-list > div:hover, .trend-highlights > div:hover {
  box-shadow: 0 8px 38px 0 rgba(80, 140, 80, 0.15);
  transform: scale(1.015);
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1040px) {
  .container {
    max-width: 98vw;
  }
  .content-wrapper {
    padding: 30px 8px;
  }
  .main-nav {
    max-width: 98vw;
    padding: 10px 6px;
  }
}
@media (max-width: 992px) {
  .features-grid, .card-container, .content-grid {
    gap: 16px;
  }
  .section {
    padding: 30px 6px;
    margin-bottom: 42px;
  }
  .content-wrapper {
    margin-bottom: 22px;
  }
  footer .container {
    gap: 16px;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2.1rem; }
  h2, .h2 { font-size: 1.35rem; }
  h3, .h3 { font-size: 1.08rem; }
  .main-nav ul {
    display: none;
  }
  .main-nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    padding: 8px 6px 8px 6px;
  }
  .card-container, .features-grid, .content-grid, .guide-list, .trend-highlights {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 16px 14px;
  }
  .content-wrapper {
    padding: 19px 5px;
    border-radius: 14px;
  }
  .footer-nav, .footer-contact {
    font-size: 0.98rem;
  }
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .section {
    padding: 16px 0.5rem;
    margin-bottom: 29px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 500px) {
  .main-nav > a img {
    height: 32px;
  }
  .content-wrapper {
    padding: 13px 4px;
    border-radius: 11px;
  }
  h1, .h1 { font-size: 1.45rem; }
  h2, .h2 { font-size: 1.09rem; }
  .section {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1500;
  background: var(--color-white);
  color: var(--color-primary);
  border-top: 2px solid #C6D3B4;
  box-shadow: 0 -2px 18px rgba(72,102,71,0.16);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 20px 20px;
  font-size: 1rem;
  animation: cookieSlideIn 0.6s cubic-bezier(.53,0,.27,1);
}
@keyframes cookieSlideIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  margin: 0 10px 0 0;
  flex: 2 1 240px;
}
.cookie-consent-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-consent-banner button {
  padding: 5px 19px;
  font-size: 1rem;
  border-radius: 999px;
  font-family: var(--font-display);
  border: none;
  cursor: pointer;
  margin: 0 3px;
  box-shadow: 0 1.5px 9px rgba(70,108,62,0.11);
  transition: background 0.18s, color 0.13s;
}
.cookie-accept {
  background: var(--color-green);
  color: var(--color-white);
}
.cookie-accept:hover {
  background: #215c29;
  color: #d5f7c7;
}
.cookie-reject {
  background: var(--color-brown);
  color: var(--color-white);
}
.cookie-reject:hover {
  background: #392800;
  color: #ffe7af;
}
.cookie-settings {
  background: var(--color-beige);
  color: var(--color-green);
  border: 1px solid #AEC8B6;
}
.cookie-settings:hover {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}
@media (max-width: 768px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 10px;
    gap: 13px;
    font-size: 0.96rem;
  }
  .cookie-consent-buttons {
    flex-direction: row;
  }
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(50,80,50,0.27);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieBackdropIn 0.22s cubic-bezier(.86,0,.13,1);
}
@keyframes cookieBackdropIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: var(--color-white);
  border-radius: 22px;
  box-shadow: 0 12px 48px rgba(70, 92, 54, 0.19);
  padding: 39px 34px 26px 34px;
  min-width: 300px;
  max-width: 99vw;
  width: 420px;
  position: relative;
  z-index: 2005;
  animation: cookieModalIn 0.45s cubic-bezier(.87,0,.13,1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@keyframes cookieModalIn {
  0% { transform: scale(0.85) translateY(50px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: var(--color-green);
  font-family: var(--font-display);
  font-size: 1.23rem;
  margin-bottom: 9px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}
.cookie-modal .category-label {
  font-family: var(--font-body);
  color: var(--color-brown);
  font-size: 1rem;
}
.cookie-modal .cookie-toggle {
  width: 40px; height: 22px;
  border-radius: 21px;
  background: #ECF5EA;
  border: 1px solid #B4C2AE;
  position: relative;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  flex-shrink: 0;
}
.cookie-modal .cookie-toggle[data-enabled="true"] {
  background: var(--color-green);
  border-color: var(--color-green);
}
.cookie-modal .cookie-toggle::after {
  content: '';
  position: absolute;
  left: 3.2px;
  top: 3.2px;
  width: 16px;
  height: 16px;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(73,119,61,0.09);
  transition: left 0.19s;
}
.cookie-modal .cookie-toggle[data-enabled="true"]::after {
  left: 20px;
}
.cookie-modal .cookie-category[data-essential] .cookie-toggle {
  opacity: 0.55;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 6px 20px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1rem;
  border: none;
  cursor: pointer;
}
.cookie-modal-actions .cookie-accept {
  background: var(--color-green);
  color: var(--color-white);
}
.cookie-modal-actions .cookie-accept:hover {
  background: #28753d;
  color: #d3efb9;
}
.cookie-modal-actions .cookie-reject {
  background: var(--color-brown);
  color: var(--color-white);
}

@media (max-width: 520px) {
  .cookie-modal {
    min-width: unset;
    width: 99vw;
    border-radius: 11px;
    padding: 16px 4px 16px 10px;
  }
}

/* ==== MISC / UTILS ==== */
.text-section {
  margin-bottom: 16px;
}

/* Emphasize links in text */
p a, li a {
  color: var(--color-green);
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.17s;
}
p a:hover, li a:hover {
  color: var(--color-primary);
}

/* Hide visually but available for screen readers */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Ensure min margins between all significant cards and sections  */
.card, .content-wrapper, .testimonial-card, .section, .features-grid > div, .trend-highlights > div, .guide-list > div, .blog-list > li {
  margin-bottom: 20px;
}

/* === END === */
