/* --- CSS RESET & BASE STYLES --- */
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 {
  scroll-behavior: smooth;
  background: #F1FAEE;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F1FAEE;
  color: #1D3557;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #E63946;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B2222C;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
strong, b {
  font-weight: 700;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #1D3557;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: 1px;
  margin-bottom: 16px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 4px;
}
p, li, div, span {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1D3557;
  font-size: 1rem;
}
blockquote.inspirational-quote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  background: #f9fafc;
  border-left: 5px solid #E63946;
  padding: 16px 22px;
  color: #1D3557;
  border-radius: 16px;
  margin-top: 16px;
  font-style: italic;
}

/* --- PLAYFUL DYNAMIC COLORS & ACCENTS --- */
:root {
  --primary: #1D3557;
  --secondary: #F1FAEE;
  --accent: #E63946;
  --accent-dark: #B2222C;
  --yellow: #FFE66D;
  --green: #23CE6B;
  --blue: #48CAE4;
  --purple: #7748E4;
  --card-shadow: 0 4px 28px rgba(77, 89, 138, 0.12);
  --card-radius: 20px;
}

/* --- NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(30,49,99,0.05);
  position: sticky;
  top: 0;
  z-index: 99;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 0;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1D3557;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 2px 10px;
  border-radius: 8px;
  transition: background 0.22s, color 0.2s, box-shadow 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFE66D;
  color: #E63946;
  box-shadow: 0 2px 12px rgba(230, 57, 70, 0.10);
}
.main-nav .cta.primary {
  background: linear-gradient(90deg, #FFE66D, #48CAE4);
  color: #1D3557;
  font-weight: bold;
  border: none;
  border-radius: 28px;
  padding: 10px 26px;
  font-size: 1.08rem;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.05);
  transition: box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  outline: none;
}
.main-nav .cta.primary:hover {
  background: linear-gradient(90deg, #48CAE4, #FFE66D);
  box-shadow: 0 12px 40px rgba(72, 202, 228, 0.11);
  color: #E63946;
}
.main-nav img {
  height: 38px;
  margin-right: 10px;
  margin-left: 0;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: #FFE66D;
  border: none;
  font-size: 2rem;
  border-radius: 22px;
  padding: 6px 16px;
  color: #E63946;
  box-shadow: 0 2px 8px rgba(30,49,99,0.08);
  position: absolute;
  right: 22px;
  top: 18px;
  z-index: 120;
  cursor: pointer;
  transition: background 0.18s, color 0.2s;
}
.mobile-menu-toggle:active {
  background: #FFD447;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: #FFE66D;
  box-shadow: 0 4px 40px rgba(77, 89, 138, 0.12);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.65,1.8,.41,.78);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 64px;
  /* Default: hidden */
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #fff;
  color: #E63946;
  font-size: 2.0rem;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(230, 57, 70, 0.08);
  z-index: 9;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFE66D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 32px;
  width: 100%;
}
.mobile-nav a {
  color: #1D3557;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 12px;
  padding: 12px 8px;
  margin-bottom: 0.5em;
  background: none;
  transition: background 0.18s, color 0.17s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #48CAE4;
  color: #fff;
}

/* Hide nav on mobile, show burger */
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO & FEATURE SECTIONS --- */
section {
  background: #fff;
  border-radius: 32px;
  margin-bottom: 60px;
  box-shadow: 0 4px 48px rgba(77, 89, 138, 0.06);
  position: relative;
  overflow: hidden;
}
section:nth-of-type(even) {
  background: #F1FAEE;
}
section .cta.primary {
  margin-top: 20px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fffbe9;
  border-radius: 18px;
  padding: 24px 20px 22px 20px;
  min-width: 210px;
  flex: 1 1 220px;
  box-shadow: var(--card-shadow);
  transition: transform 0.18s cubic-bezier(.64,1.62,.41,.78), box-shadow 0.13s;
  position: relative;
}
.feature-item:hover, .feature-item:focus-within {
  transform: translateY(-7px) scale(1.045) rotate(-1.3deg);
  box-shadow: 0 8px 48px rgba(72, 202, 228, 0.14);
  background: #f0fff7;
}
.feature-item h3 {
  color: #E63946;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature-item img {
  height: 40px;
  width: 40px;
  margin-bottom: 8px;
  border-radius: 8px;
  background: #FFF5EC;
  box-shadow: 0 2px 10px #ffe66da0;
  padding: 5px;
  animation: wiggle 2.6s infinite;
}
@keyframes wiggle {
  0% { transform: rotate(-7deg); }
  10% { transform: rotate(10deg); }
  16% { transform: rotate(-3deg); }
  23% { transform: rotate(6deg); }
  28% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}


/* --- CARD, GRID, CONTENT --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #F1FAEE;
  border-radius: var(--card-radius);
  margin-bottom: 20px;
  box-shadow: var(--card-shadow);
  position: relative;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.17s, box-shadow .16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 52px #ffe66d33;
  transform: scale(1.035) rotate(-1deg);
}

.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;
}


/* --- CATEGORY & TAGS --- */
.category-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 18px 0 12px 0;
  padding: 0;
  color: #B2222C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.11rem;
}
.category-list li {
  background: #e7faff;
  color: #1D3557;
  border-radius: 16px;
  padding: 8px 18px;
  margin-bottom: 4px;
  position: relative;
  transition: background .14s, color .2s;
}
.category-list li:hover {
  background: #FDEDF4;
  color: #E63946;
}
.tag-cloud {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 16px 0;
}
.tag-cloud span {
  background: #FFE66D;
  color: #1D3557;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 12px;
  padding: 7px 13px;
  font-weight: 600;
  font-size: .97rem;
  box-shadow: 0 1px 10px #ffd44713;
}


/* --- TESTIMONIALS & REVIEWS --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FFF8FF;
  border-radius: 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 20px #e6394632;
  border-left: 7px solid #48CAE4;
  transition: box-shadow .14s, transform .18s;
  color: #1d3557;
  max-width: 500px;
  animation: fadeinup 0.8s;
}
@keyframes fadeinup {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.testimonial-card strong {
  color: #1D3557;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
}
.testimonial-card .stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.testimonial-card img {
  width: 22px; height: 22px;
}
.testimonial-card p {
  color: #1D3557;
  background: none;
  font-size: 1.1rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 12px 44px #23ce6b18;
  transform: scale(1.05) rotate(0.5deg);
}

/* --- FORM & FILTERS --- */
.search-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 5px;
}
.search-filter label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
}
.search-filter input {
  border: 2px solid #48CAE4;
  border-radius: 12px;
  padding: 8px 15px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  margin-left: 7px;
  transition: border 0.14s, box-shadow .16s;
}
.search-filter input:focus {
  border-color: #B2222C;
  box-shadow: 0 8px 30px #ffe66d18;
  outline: none;
}
.dietary-filters {
  margin-top: 8px;
  margin-bottom: 5px;
}
.dietary-filters strong {
  color: #B2222C;
  margin-right: 8px;
}
.dietary-filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.dietary-filters li {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #E7FAF7;
  border-radius: 14px;
  padding: 7px 13px;
  font-size: 0.97rem;
  color: #1D3557;
}
.dietary-filters img {
  height: 17px;
  width: 17px;
}


.top-picks-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}
.top-picks-list li {
  background: #fffbe9;
  border-radius: 16px;
  box-shadow: 0 2px 12px #48cae41a;
  padding: 16px 22px;
  transition: box-shadow .13s, transform .1s;
}
.top-picks-list li:hover {
  box-shadow: 0 12px 25px #1D3557 0.13;
  background: #FAFFF0;
}


/* --- BUTTONS / CTA --- */
.cta, button, .button {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.08rem;
  padding: 12px 30px;
  border-radius: 24px;
  border: none;
  background: linear-gradient(90deg,#FFE66D,#48CAE4);
  color: #1d3557;
  box-shadow: 0 2px 16px #e6394630;
  cursor: pointer;
  margin: 4px 0;
  transition: background 0.2s, color 0.17s, box-shadow 0.18s, transform 0.15s;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus, button:hover, button:focus {
  background: linear-gradient(90deg,#48CAE4,#FFE66D);
  color: #E63946;
  box-shadow: 0 8px 32px #1D3557 0.10;
  transform: scale(1.05) rotate(-1deg);
}
.cta.secondary {
  background: #fff;
  color: #1D3557;
  border: 2px solid #48CAE4;
}
.cta.secondary:hover {
  background: #FFE66D;
  color: #E63946;
}

/* --- SEASONAL --- */
.season-switcher ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 8px 0 18px 0;
  padding: 0;
  list-style: none;
}
.season-switcher li {
  background: #E7FAF7;
  color: #1D3557;
  border-radius: 14px;
  padding: 7px 13px;
  font-size: .98rem;
  cursor: pointer;
  transition: background .14s, color .12s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.season-switcher li:hover {
  background: #FAFEE7;
  color: #E63946;
}
.seasonal-recipe-list h3 {
  margin: 18px 0 7px;
  color: #E63946;
}
.seasonal-recipe-list ul {
  margin-bottom: 9px;
  margin-left: 0;
  list-style-type: none;
  padding-left: 0;
}
.seasonal-recipe-list li {
  padding: 7px 0;
  color: #1D3557;
  border-bottom: 1px dashed #FFE66D;
}
.seasonal-ingredients ul {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 9px;
}
.seasonal-ingredients li {
  background: #FFE66D;
  color: #1D3557;
  border-radius: 11px;
  font-size: .96rem;
  padding: 7px 11px;
  font-family: 'Open Sans',Arial,sans-serif;
  font-weight: 600;
}

/* --- TEAM, VALUES --- */
.brand-story, .mission-statement, .team-introductions,
.value-list, .usage-rules, .liability-clause, .user-obligations {
  background: #F1FAEE;
  border-radius: 16px;
  box-shadow: 0 2px 12px #48cae41B;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.value-list, .user-rights ul, .data-processing-details ul {
  list-style: disc;
  margin-left: 18px;
  margin-bottom: 9px;
}
.value-list li {
  margin-bottom: 6px;
  font-size: 1.03rem;
}

/* --- FOOTER --- */
footer {
  background: #1D3557;
  padding: 36px 20px 16px 20px;
  color: #F1FAEE;
  border-radius: 32px 32px 0 0;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #F1FAEE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: .99rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFE66D;
  color: #1D3557;
}
.text-section {
  text-align: center;
  margin-top: 10px;
}
.text-section p {
  color: #F1FAEE;
  font-size: .98rem;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* --- CONTACT --- */
.contact-details {
  background: #e7faff;
  border-radius: 16px;
  box-shadow: 0 2px 12px #48cae41B;
  padding: 18px 24px;
  margin-bottom: 21px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-details img {
  height: 16px;
  width: 16px;
  margin-right: 4px;
  vertical-align: baseline;
}
.location-map {
  background: #fffbe9;
  border-radius: 16px;
  box-shadow: 0 1px 8px #ffe66d13;
  padding: 12px 16px;
  margin-bottom: 11px;
}


/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 5000;
  width: 100vw;
  background: #fffbe9;
  box-shadow: 0 -2px 32px #e6394638;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 26px 8vw 16px 8vw;
  font-size: 1rem;
  border-radius: 32px 32px 0 0;
  animation: slideup 0.7s;
  color: #1D3557;
}
@keyframes slideup {
  from { opacity: 0; transform: translateY(70px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner strong { color: #E63946; }
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
  justify-content: center;
}
.cookie-banner button, .cookie-banner .cta {
  font-size: 1.05rem;
  border-radius: 18px;
  padding: 10px 24px;
  box-shadow: 0 2px 10px #e6394632;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  margin: 2px 0;
  transition: background .15s, color .17s;
  background: #FFE66D;
  color: #1D3557;
  outline: none;
}
.cookie-banner .cta.accept {
  background: #23CE6B;
  color: #fff;
}
.cookie-banner .cta.accept:hover {
  background: #1D3557;
  color: #FFE66D;
}
.cookie-banner .cta.reject {
  background: #E63946;
  color: #fff;
}
.cookie-banner .cta.reject:hover {
  background: #B2222C;
  color: #fff;
}
.cookie-banner .cta.settings {
  background: #48CAE4;
  color: #fff;
}
.cookie-banner .cta.settings:hover {
  background: #1D3557;
  color: #48CAE4;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 49, 99, 0.25);
  animation: fadein 0.3s;
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-inner {
  background: #fffbe9;
  border-radius: 28px;
  padding: 36px 28px 26px 28px;
  box-shadow: 0 8px 54px #48cae478;
  color: #1d3557;
  max-width: 412px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 13px;
  background: #fff;
  border-radius: 50%;
  border: none;
  font-size: 1.6rem;
  color: #E63946;
  width: 44px;
  height: 44px;
  cursor: pointer;
  box-shadow: 0 2px 10px #e6394632;
  transition: background .16s;
}
.cookie-modal-close:hover {
  background: #FFE66D;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  padding: 8px 0;
}
.cookie-category input[type=checkbox] {
  accent-color: #23CE6B;
  width: 22px; height: 22px;
}
.cookie-category[aria-disabled="true"] {
  color: #949494;
}

/* --- THANK-YOU --- */
.thank_you_message, .next_steps_info {
  background: #F1FAEE;
  border-radius: 16px;
  box-shadow: 0 2px 12px #48cae41B;
  padding: 18px 20px;
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: #1d3557;
}
.next_steps_info {
  background: #fffbe9;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
  .container { max-width: 97vw; padding: 0 10px; }
  .feature-grid, .category-list { gap: 12px; }
  .feature-item { min-width: 170px; padding: 18px 9px; }
  .main-nav .cta.primary { padding: 10px 10px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .footer-nav { flex-direction: column; gap: 10px; }
  .testimonial-card, .feature-item, .card, .brand-story, .thank_you_message, .next_steps_info {
    padding: 15px;
    font-size: .97rem;
  }
  .feature-grid, .content-grid, .card-container, .category-list, .top-picks-list, .tag-cloud {
    flex-direction: column !important;
    gap: 11px !important;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  section {
    margin-bottom: 40px;
    padding: 18px 4px;
    border-radius: 15px;
  }
  .cookie-modal-inner { padding: 18px 9px 16px 9px; }
}
@media (max-width: 485px) {
  .container { padding: 0 2vw; }
  h1 { font-size: 1.32rem; }
  section { margin-bottom: 24px; }
  .footer-nav { flex-direction: column; gap: 6px; }
  .testimonial-card { gap: 12px; }
  .thank_you_message, .next_steps_info { font-size: .93rem; }
  .cookie-modal-inner { max-width: 98vw; font-size: 0.96rem; }
}

/* --- ANIMATION EFFECTS --- */
a, button, .cta, .card, .feature-item, .category-list li, .footer-nav a {
  transition: color .19s, background .16s, box-shadow .16s, transform .12s;
}

/* --- OTHER UTILS --- */
::-webkit-input-placeholder { color: #BBBBBB; opacity: 1; }
::-moz-placeholder { color: #BBBBBB; opacity: 1; }
:-ms-input-placeholder { color: #BBBBBB; opacity: 1; }
::placeholder { color: #BBBBBB; opacity: 1; }

/* --- Z-INDEX / LAYER PROTECTION --- */
header, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 999 !important;
}
.mobile-menu-toggle {
  z-index: 1100;
}

/* --- PREVENT OVERLAPPING CARD/ELEMENTS, ENFORCE SPACING --- */
.section, .card, .feature-item, .testimonial-card, .top-picks-list li, .category-list li, .brand-story, .mission-statement, .team-introductions, .cookie-banner, .thank_you_message, .next_steps_info{
  margin-bottom: 20px;
}
.card, .feature-item, .testimonial-card, .top-picks-list li {
  margin-right: 0;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 18px;
}

/* --- END --- */
