/* ========================================================================== */
/* CSS RESET & BASELINE 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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #F2EDE4;
  color: #22323C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg { display: inline-block; max-width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
input, button, textarea, select { font: inherit; }
button { cursor: pointer; background: none; border: none; }
:focus { outline: 2px solid #35736E; outline-offset: 2px; }

/* ========================================================================== */
/* BRAND COLORS                                                               */
/* ========================================================================== */
:root {
  --primary: #35736E;
  --primary-dark: #24534A;
  --secondary: #7FB069;
  --secondary-dark: #619258;
  --accent: #F2EDE4;
  --gray-bg: #F5F7FA;
  --gray-light: #e7ecef;
  --gray-medium: #A4AEB3;
  --gray-dark: #22323C;
  --white: #fff;
  --black: #10181F;
  --shadow: 0 2px 12px 0 rgba(34,50,60,0.07);
  --shadow-card: 0 4px 16px 0 rgba(34,50,60,0.08);
  --shadow-soft: 0 1.5px 6px 0 rgba(34,50,60,0.04);
  --border-radius: 14px;
  --border-radius-small: 8px;
  --transition-main: 0.28s cubic-bezier(.4,1,.6,1);
  --star: #FBCF33;
}

/* ========================================================================== */
/* TYPOGRAPHY                                                                 */
/* ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
}
h1 { font-size: 2.75rem; margin-bottom: 24px; line-height: 1.13; }
h2 { font-size: 2rem; margin-bottom: 20px; line-height: 1.15; }
h3 { font-size: 1.25rem; margin-bottom: 14px; line-height: 1.17; }
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1rem; }
}
p { margin-bottom: 16px; font-size: 1rem; line-height: 1.7; color: var(--gray-dark); }
strong, b { font-weight: 700; color: var(--primary-dark); }
blockquote {
  color: var(--primary-dark);
  border-left: 4px solid var(--primary);
  padding-left: 24px;
  font-style: italic;
  margin: 0 0 14px 0;
  background: var(--accent);
  border-radius: var(--border-radius-small);
}

/* ========================================================================== */
/* LAYOUT STRUCTURE                                                           */
/* ========================================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .section { padding: 32px 8px; margin-bottom: 32px; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  box-shadow: var(--shadow-card);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 260px;
  flex: 1 1 260px;
}
@media (max-width: 768px) {
  .card { min-width: 90%; }
}

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

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
  flex-direction: column;
  transition: box-shadow var(--transition-main), background 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px 0 rgba(53,115,110,0.18);
  background: #f7f3ea;
}

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

/* ========================================================================== */
/* HEADER, NAVIGATION, AND HERO                                               */
/* ========================================================================== */
header {
  background: var(--white);
  box-shadow: 0 2px 10px 0 rgba(34, 50, 60, 0.06);
  padding: 0;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}
header a img {
  height: 44px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--primary-dark);
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 8px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
}
.cta-btn {
  background: var(--primary);
  color: #fff;
  padding: 13px 36px;
  border: none;
  border-radius: var(--border-radius-small);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-soft);
  margin-left: 14px;
  transition: background var(--transition-main), color var(--transition-main), box-shadow var(--transition-main);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary-dark);
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(127,176,105,0.18);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--primary-dark);
  background: none;
  border: none;
  margin-left: 12px;
  transition: color 0.19s;
  z-index: 97;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus { color: var(--secondary-dark); }

/* --- Mobile navigation --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,50,60,0.97);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.45,1,.4,.98);
  z-index: 99;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  padding: 44px 30px 30px 30px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: unset;
}
.mobile-menu-close {
  font-size: 2.4rem;
  color: #fff;
  background: none;
  border: none;
  align-self: flex-end;
  margin-bottom: 36px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 101;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: var(--secondary); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.33rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .012em;
  transition: color 0.18s, background 0.17s;
  padding: 10px 6px;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: rgba(127,176,105,.15);
}

@media (max-width: 1020px) {
  .main-nav, .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 480px) {
  .container { padding: 0 8px; }
  .mobile-menu { padding: 40px 12px 20px 12px; }
}

/* ========================================================================== */
/* HERO SECTIONS                                                              */
/* ========================================================================== */
.hero {
  background: linear-gradient(90deg, var(--accent) 48%, #F5F7FA 100%);
  padding: 58px 0 0 0;
  margin-bottom: 0;
}
.hero .container { align-items: flex-start; }
.hero .content-wrapper {
  max-width: 660px;
  padding: 22px 0 48px 0;
  gap: 20px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.5rem;
}
.hero p {
  font-size: 1.18rem;
  color: var(--gray-dark);
}
@media (max-width: 768px) {
  .hero { padding: 32px 0 0 0; }
  .hero .content-wrapper { padding: 12px 0 22px 0; }
}

/* ========================================================================== */
/* FEATURE SECTIONS & GRIDS                                                   */
/* ========================================================================== */
.feature-grid, .testimonial-slider, .testimonial-grid, .service-overview-cards, .blog-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.feature-grid li,
.service-overview-cards > div,
.blog-teasers article {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 26px 20px;
  flex: 1 1 265px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow var(--transition-main), transform 0.19s;
}
.feature-grid li h3, .service-overview-cards h3 {
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.feature-grid li:hover, .service-overview-cards > div:hover, .blog-teasers article:hover {
  box-shadow: 0 4px 24px 0 rgba(53, 115, 110, 0.13);
  transform: translateY(-2px) scale(1.015);
}
.service-overview-cards img { height: 40px; width: 40px; margin-bottom: 2px; }
@media (max-width: 900px) {
  .feature-grid, .service-overview-cards, .blog-teasers { flex-direction: column; }
  .feature-grid li, .service-overview-cards > div, .blog-teasers article { min-width: 92%; }
}

/* ========================================================================== */
/* TESTIMONIALS & REVIEWS (PROFESSIONAL CONTRAST)                            */
/* ========================================================================== */
.testimonial-slider, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  min-width: 280px;
  flex: 1 1 280px;
  background: #f7faf9;
  color: var(--gray-dark);
  border-left: 6px solid var(--primary);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  align-items: flex-start;
  font-size: 1rem;
}
.testimonial-card blockquote {
  color: var(--primary-dark);
  border: none;
  background: none;
  font-size: 1.08em;
  padding-left: 0;
}
.testimonial-card p { margin-bottom: 0; }
.star-ratings { display: flex; gap: 4px; margin-top: 6px; }
.star-ratings img { width: 20px; height: 20px; filter: drop-shadow(0 1px 2px #e5f7e0); }

/* Highlighted review/summary sections */
.review-highlights ul, .main-benefits, .benefit-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 14px;
}
.review-highlights li, .main-benefits li, .benefit-highlights li {
  background: var(--gray-bg);
  color: var(--primary-dark);
  padding: 13px 18px;
  border-radius: var(--border-radius-small);
  font-size: 1rem;
}


/* ========================================================================== */
/* BLOG TEASERS & NEWSLETTER                                                  */
/* ========================================================================== */
.blog-teasers article {
  border: 2px solid var(--accent);
}
.blog-teasers h3 {
  margin-bottom: 10px;
}
.blog-teasers a { font-weight: 600; color: var(--primary-dark); text-decoration: underline; }
.blog-teasers a:hover { color: var(--secondary-dark); }

.popular-categories {
  margin-bottom: 16px;
}
.popular-categories ul {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px;
}
.popular-categories li a {
  background: var(--gray-light);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
}
.popular-categories li a:hover, .popular-categories li a:focus {
  background: var(--secondary);
  color: #fff;
}
.featured-post { margin-bottom: 22px; }
.featured-post a {
  color: var(--primary);
  font-weight: 700;
  transition: color 0.14s;
}
.featured-post a:hover { color: var(--secondary-dark); }

.newsletter-form {
  background: var(--gray-bg);
  border-radius: var(--border-radius);
  padding: 18px 22px;
}

@media (max-width:700px){
  .blog-teasers, .testimonial-slider, .testimonal-grid, .feature-grid, .service-overview-cards {
    flex-direction: column;
    gap: 16px;
  }
}

/* ========================================================================== */
/* FORMS, FAQ, AND VARIOUS SUPPORT SECTIONS                                   */
/* ========================================================================== */
.text-section { margin-bottom: 14px; }
.text-section ul, .faq ul, .resource-links, .nutrition-tips-list, .process-steps {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 8px;
  margin-bottom: 10px;
}
.text-section li { padding-left: 0; margin-bottom: 0; position: relative; color: var(--primary-dark); }
.text-section li::before {
  content: '\2022';
  color: var(--secondary-dark);
  margin-right: 10px;
}
.map-location {
  background: var(--gray-bg);
  padding: 10px 16px;
  border-radius: var(--border-radius-small);
  margin-top: 18px;
  color: var(--primary-dark);
  font-size: 1rem;
}
.faq, .response-times, .common-questions, .myth-busters, .personalised-approach, .support-options {
  margin-bottom: 20px;
  background: var(--gray-bg);
  border-radius: var(--border-radius-small);
  padding: 18px 16px;
}
.faq h3, .common-questions h3, .myth-busters h3, .personalised-approach h3, .support-options h3 {
  font-size: 1.13rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.resource-links li a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}
.resource-links li a:hover { color: var(--secondary-dark); }

/* ========================================================================== */
/* LEGAL & POLICIES                                                           */
/* ========================================================================== */
.legal {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  margin-bottom: 48px;
  padding: 46px 32px;
}
.legal h1, .legal h2, .legal h3 { color: var(--primary-dark); margin-bottom: 16px; }
.legal ul { margin-bottom: 20px; }
@media (max-width:768px){ .legal{ padding: 20px 10px; margin-bottom: 22px; } }

/* ========================================================================== */
/* FOOTER                                                                     */
/* ========================================================================== */
footer {
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  margin-top: 44px;
  padding: 40px 0 14px 0;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.15s;
  opacity: .95;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  font-size: 1rem;
}
.footer-contact p {
  display: flex; align-items: center; gap: 10px; color: #fff; font-size: 1rem;
}
.footer-contact a {
  color: var(--secondary);
  text-decoration: underline;
}
footer p:last-child {
  font-size: .95rem;
  margin-top: 20px;
  letter-spacing: .01em;
  opacity: .88;
}
@media (max-width: 700px) {
  footer .container { gap: 10px; }
  .footer-nav { flex-direction: column; gap: 10px; align-items: flex-start; }
}

/* ========================================================================== */
/* COOKIE CONSENT BANNER                                                      */
/* ========================================================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #22323C;
  color: #fff;
  font-size: 1rem;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -2px 24px 0 rgba(34,50,60,0.13);
  padding: 24px 16px 16px 16px;
  gap: 16px;
  animation: cookieBannerIn 0.5s cubic-bezier(.4,1,.6,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-buttons {
  display: flex; flex-direction: row; gap: 18px;
  margin-top: 6px;
}
.cookie-consent-banner button {
  min-width: 110px;
  padding: 10px 22px;
  border-radius: var(--border-radius-small);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  margin: 0;
  transition: background 0.18s, color 0.18s, box-shadow 0.13s;
}
.cookie-consent-banner .accept {
  background: var(--secondary);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.cookie-consent-banner .accept:hover, .cookie-consent-banner .accept:focus {
  background: var(--secondary-dark);
}
.cookie-consent-banner .reject {
  background: var(--gray-medium);
  color: #fff;
}
.cookie-consent-banner .reject:hover, .cookie-consent-banner .reject:focus {
  background: var(--primary-dark);
}
.cookie-consent-banner .settings {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cookie-consent-banner .settings:hover, .cookie-consent-banner .settings:focus {
  background: var(--secondary);
  color: #fff;
}


/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: rgba(34,50,60,0.37);
  justify-content: center;
  align-items: center;
  display: none;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: fadeInModal 0.25s cubic-bezier(.22,.98,.58,1.07);
}
@keyframes fadeInModal { from { opacity:0; } to { opacity:1; } }
.cookie-modal {
  background: #fff;
  color: var(--gray-dark);
  border-radius: var(--border-radius);
  max-width: 412px;
  min-width: 240px;
  padding: 38px 32px 26px 32px;
  box-shadow: 0 8px 32px 0 rgba(34,50,60,0.23);
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  margin: 16px;
}
.cookie-modal h2 { color: var(--primary); font-size: 1.35rem; margin-bottom: 12px; }
.cookie-modal .modal-close {
  position: absolute;
  top: 13px; right: 16px;
  background: none; border: none;
  font-size: 1.7rem;
  color: var(--gray-medium);
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus { color: var(--primary-dark); }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-category-name { flex: 1; font-weight: 600; color: var(--primary-dark); font-size: 1rem; }
.cookie-toggle {
  width: 36px;
  height: 20px;
  background: var(--gray-light);
  border-radius: 14px;
  position: relative;
  border: 1px solid var(--gray-medium);
  flex-shrink: 0;
  box-sizing: content-box;
  outline: none;
  transition: background 0.15s, border 0.15s;
}
.cookie-toggle[aria-checked="true"] {
  background: var(--secondary);
  border: 1px solid var(--secondary-dark);
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(34,50,60,.07);
  transition: transform 0.18s cubic-bezier(.55,.22,.24,1), background .18s;
}
.cookie-toggle[aria-checked="true"]:before {
  transform: translateX(16px);
  background: #fff;
}
.cookie-category-desc { font-size: .95rem; color: var(--gray-medium); font-weight: 400; margin-left: 12px; }
.cookie-modal-buttons {
  display: flex; flex-direction: row; gap: 16px; justify-content: flex-end;
  margin-top: 2px;
}
.cookie-modal-buttons button {
  min-width: 92px;
  padding: 9px 17px;
  border-radius: var(--border-radius-small);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  margin: 0;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal-buttons .save {
  background: var(--primary);
  color: #fff;
}
.cookie-modal-buttons .save:hover, .cookie-modal-buttons .save:focus { background: var(--secondary-dark); }
.cookie-modal-buttons .cancel{
  background: #f5f6f7; color: var(--gray-dark);
}
.cookie-modal-buttons .cancel:hover, .cookie-modal-buttons .cancel:focus { background: var(--gray-medium); color: #fff; }

/* Essential cookies - cannot toggle */
.cookie-toggle[disabled], .cookie-toggle[aria-disabled="true"] {
  background: #e5ece9;
  border: 1px solid #c2d6cc;
  opacity: 0.63;
  cursor: not-allowed;
}
.cookie-toggle[disabled]:before, .cookie-toggle[aria-disabled="true"]:before { background: #eaeaea; }

@media (max-width: 540px) {
  .cookie-modal { padding: 24px 8px 18px 8px; }
}


/* ========================================================================== */
/* UTILITY CLASSES & ANIMATIONS                                               */
/* ========================================================================== */
.mb-12 { margin-bottom: 12px !important; }
.mt-24 { margin-top: 24px !important; }
.text-center { text-align: center; }
.d-flex { display: flex !important; }
.flex-wrap { flex-wrap: wrap !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }

/* Fade-in animation */
@keyframes fadeIn { from { opacity: 0;} to {opacity: 1;} }

/* Smooth transition for all links and buttons */
a, button, .cta-btn { transition: background 0.18s, color 0.18s, box-shadow 0.19s, border 0.18s; }

/* ========================================================================== */
/* RESPONSIVE DESIGN                                                          */
/* ========================================================================== */
@media (max-width: 990px) {
  .container { max-width: 98vw; }
  .main-nav { gap: 12px; }
}
@media (max-width:700px){
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.18rem; }
  .section { padding: 16px 6px; margin-bottom: 24px; }
  .feature-grid li, .service-overview-cards > div, .blog-teasers article, .testimonial-card { min-width: 88vw; }
  .card { padding: 16px 8px; }
}

/* Ensure spacing & prevent overlaps */
.section:not(:last-child), .content-wrapper:not(:last-child) { margin-bottom: 32px; }
.card:not(:last-child) { margin-bottom: 20px; }

/* END OF CSS */
