/* === 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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F7F6F1;
  color: #2E5A37;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  border-style: none;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* === BRAND FONTS === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F7F6F1;
  color: #2E5A37;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2E5A37;
  font-weight: 900;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.6rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; font-weight: 700; }
h4 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 700; }
p, li, label { font-size: 1rem; line-height: 1.6; margin-bottom: 10px; }
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  color: #353535;
  margin-bottom: 18px;
  font-weight: 500;
}

/* === COLOR PALETTE & UTILITY === */
:root {
  --brand-primary: #2E5A37;
  --brand-secondary: #F2A654;
  --brand-accent: #F7F6F1;
  --brand-fun-blue: #00C2FF;
  --brand-fun-pink: #FF5CA7;
  --brand-shadow: rgba(44, 108, 73, 0.11);
  --brand-shadow-strong: rgba(44, 108, 73, 0.21);
}

.bg-primary { background: var(--brand-primary); color: #fff; }
.bg-accent { background: var(--brand-accent); color: var(--brand-primary); }
.bg-secondary { background: var(--brand-secondary); color: #2E5A37; }
.color-secondary { color: var(--brand-secondary); }

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}


/* === HEADER & NAV === */
header {
  background: #FFF;
  box-shadow: 0 3px 16px var(--brand-shadow);
  position: sticky;
  top: 0;
  z-index: 1005;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 14px;
}
.logo-link {
  display: flex;
  align-items: center;
  height: 54px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  font-size: 1.12rem;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.21s, border-bottom 0.26s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--brand-secondary);
  border-bottom: 2px solid var(--brand-fun-pink);
}
.button.primary {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: 32px;
  padding: 0.72em 1.8em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 4px 18px var(--brand-shadow);
  transition: background 0.21s, color 0.21s, box-shadow 0.22s, transform 0.21s;
  border: none;
  outline: none;
  display: inline-block;
  cursor: pointer;
  margin-left: 16px;
  letter-spacing: 0.02em;
}
.button.primary:hover,
.button.primary:focus {
  background: var(--brand-fun-blue);
  color: #fff;
  box-shadow: 0 7px 24px var(--brand-shadow-strong);
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
}

/* === MOBILE MENU TOGGLE BUTTON === */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-fun-pink);
  color: #fff;
  border-radius: 50%;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 1.86rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 7px var(--brand-shadow);
  transition: background 0.21s, transform .18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--brand-fun-blue);
  transform: rotate(10deg) scale(1.12);
}

/* === MOBILE MENU OVERLAY === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1010;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.32,1.56,.42,.92);
  box-shadow: 8px 0 36px var(--brand-shadow-strong);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: var(--brand-fun-blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.4rem;
  z-index: 1020;
  transition: background 0.2s, transform .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--brand-fun-pink);
  transform: scale(1.15) rotate(4deg);
}
.mobile-nav {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.34rem;
  color: var(--brand-primary);
  font-weight: 800;
  padding: 12px 0;
  border-radius: 8px;
  transition: background 0.19s, color 0.18s, transform 0.22s;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #fff;
  background: var(--brand-secondary);
  transform: translateX(5px) scale(1.06) skew(-2deg);
}

/* === HERO SECTIONS === */
.hero {
  padding: 46px 0 18px 0;
  background: linear-gradient(90deg, #FFEEED 0%, #FFF7D8 100%);
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}
.hero h1 {
  color: var(--brand-primary);
  letter-spacing: 1.2px;
  font-size: 2.6rem;
  text-shadow: 1px 3px 10px var(--brand-shadow);
}
.hero .button.primary {
  margin-top: 12px;
}

/* === FEATURE GRID === */
.feature-grid, .tips-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.feature {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 2px 17px var(--brand-shadow);
  padding: 32px 18px 22px 18px;
  flex: 1 1 260px;
  min-width: 212px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.22s, transform 0.21s;
  position: relative;
  margin-bottom: 20px;
  border: 2.5px solid var(--brand-fun-blue);
}
.feature:hover,
.feature:focus-within {
  box-shadow: 0 8px 27px var(--brand-shadow-strong);
  border-color: var(--brand-secondary);
  transform: translateY(-6px) scale(1.028) rotate(-1.6deg);
}
.feature img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 9px;
}

/* === TIPS GRID === */
.tips-grid .tip {
  background: #fff9ed;
  border-radius: 15px;
  padding: 22px 14px;
  flex: 1 1 212px;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(245, 166, 84, 0.10);
  margin-bottom: 20px;
  border: 2px solid #FFE69F;
  transition: box-shadow 0.2s, border-color 0.19s, transform 0.18s;
}
.tips-grid .tip:hover,
.tips-grid .tip:focus-within {
  box-shadow: 0 8px 24px var(--brand-shadow-strong);
  border-color: var(--brand-fun-pink);
  transform: scale(1.04) rotate(0.7deg);
}
.tips-grid .tip img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
}

/* === CTA SECTIONS === */
.cta {
  background: linear-gradient(90deg, #F2A654 0%, #FF5CA7 100%);
  text-align: center;
  border-radius: 32px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 4px 32px var(--brand-shadow-strong);
}
.cta h2, 
.cta p {
  color: #fff;
  text-shadow: 1px 1px 16px var(--brand-shadow);
}
.cta .button.primary {
  background: #fff;
  color: var(--brand-fun-pink);
  margin-top: 15px;
  font-size: 1.15rem;
  font-weight: 900;
}
.cta .button.primary:hover {
  background: var(--brand-primary);
  color: #fff;
}

/* === TESTIMONIALS === */
.testimonials {
  background: #fff;
  border-radius: 26px;
  padding: 36px 10px 48px 10px;
  margin-bottom: 60px;
  box-shadow: 0 6px 44px var(--brand-shadow);
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fffefc;
  border-radius: 18px;
  padding: 20px 26px 16px 26px;
  box-shadow: 0 3px 16px var(--brand-shadow);
  flex: 1 1 340px;
  max-width: 390px;
  min-width: 250px;
  border: 2px solid #FF5CA7;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.21s, border-color 0.22s, transform 0.17s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 8px 32px var(--brand-shadow-strong);
  border-color: var(--brand-fun-blue);
  transform: translateY(-5px) scale(1.027) rotate(1deg);
}
.testimonial-card p {
  font-size: 1rem;
  color: #222;
  line-height: 1.7;
  margin: 0 0 10px 0;
  text-align: center;
}
.testimonial-user {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  font-size: 1.02rem;
  margin-bottom: 0;
}
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0px;
}
.stars img {
  width: 22px;
  height: 22px;
}

/* === RECIPE & ARTICLE LISTS === */
.recipe-list, .list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 14px;
}
.recipe-list article, .advice-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px var(--brand-shadow);
  padding: 18px 16px 12px 16px;
  min-width: 220px;
  max-width: 290px;
  flex: 1 1 225px;
  border-left: 5px solid var(--brand-secondary);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, border-color 0.15s, transform 0.15s;
}
.recipe-list article:hover,
.advice-item:hover {
  box-shadow: 0 7px 24px var(--brand-shadow-strong);
  border-color: var(--brand-fun-blue);
  transform: scale(1.025) rotate(-1deg);
}
.recipe-list article .origin {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-fun-pink);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
}
.advice-item h3, .recipe-list article h3 {
  margin-bottom: 6px;
}

/* === CATEGORY QUICK LINKS === */
.category-quick-links {
  margin-top: 19px;
  width: 100%;
}
.category-quick-links ul {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.category-quick-links a {
  background: var(--brand-fun-blue);
  color: #fff;
  border-radius: 10px;
  padding: 7px 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 700;
  box-shadow: 0 2px 7px var(--brand-shadow);
  transition: background .18s, transform .16s;
}
.category-quick-links a:hover {
  background: var(--brand-fun-pink);
  transform: scale(1.07) translateY(-2px) rotate(-3deg);
}

/* === USP (UNIQUE SELLING POINTS) === */
.usp-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.usp-list li {
  font-size: 1.05rem;
  color: var(--brand-primary);
  position: relative;
  padding-left: 32px;
}
.usp-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--brand-secondary);
  font-size: 1.16rem;
  font-weight: 700;
}

/* === ABOUT & INFORMATIVE SECTIONS === */
.text-section, .text-image-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* === FOOTER === */
footer {
  width: 100%;
  background: var(--brand-primary);
  color: #fff;
  padding: 40px 0 20px 0;
  box-shadow: 0 -3px 12px var(--brand-shadow);
  border-radius: 40px 40px 0 0;
  margin-top: 35px;
}
footer .container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
}
.footer-brand img {
  width: 45px;
  height: 45px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #FFF9DB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--brand-secondary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.99rem;
}
.footer-contact img {
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.16s;
}
.footer-contact a:hover {
  color: var(--brand-secondary);
}

/* === INPUTS & SEARCH === */
input[type="search"] {
  width: 100%;
  max-width: 350px;
  border-radius: 19px;
  border: 2px solid var(--brand-fun-blue);
  font-size: 1rem;
  padding: 12px 18px;
  box-shadow: 0 2px 8px var(--brand-shadow);
  margin-top: 14px;
  margin-bottom: 6px;
  outline: none;
  transition: border-color 0.12s, box-shadow .16s;
  background: #fff;
}
input[type="search"]:focus {
  border-color: var(--brand-fun-pink);
  box-shadow: 0 3px 16px var(--brand-shadow-strong);
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fff;
  border-top: 4px solid var(--brand-secondary);
  box-shadow: 0 -4px 32px var(--brand-shadow);
  z-index: 1041;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 20px 19px 20px;
  gap: 16px;
  animation: cookieSlideIn 0.46s cubic-bezier(.36,1.39,.45,.96);
}
@keyframes cookieSlideIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-message {
  font-size: 1.01rem;
  color: var(--brand-primary);
  text-align: center;
  margin-bottom: 2px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 9px 22px;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  margin: 0 3px;
  transition: background 0.15s, color 0.13s, transform 0.14s;
}
.cookie-banner .cookie-accept {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cookie-banner .cookie-accept:hover {
  background: var(--brand-fun-blue);
  color: #fff;
}
.cookie-banner .cookie-reject {
  background: #F6F6F6;
  color: var(--brand-fun-pink);
}
.cookie-banner .cookie-reject:hover {
  background: var(--brand-fun-pink);
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #FFF9DB;
  color: var(--brand-primary);
}
.cookie-banner .cookie-settings:hover {
  background: var(--brand-fun-blue);
  color: #fff;
}

/* === COOKIE SETTINGS MODAL === */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(48,43,43,0.41);
  align-items: center; justify-content: center;
  animation: fadeIn 0.35s;
}
.cookie-modal-overlay.show {
  display: flex;
}
@keyframes fadeIn {
  from{ opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px 22px 28px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 12px 64px var(--brand-shadow-strong);
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--brand-primary);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPopIn 0.24s cubic-bezier(.38,1.51,.53,1);
  position: relative;
}
@keyframes modalPopIn {
  from{ transform: scale(0.94); opacity:0; } to { transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.46rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-fun-pink);
  margin-bottom: 8px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 7px;
}
.cookie-modal-category label {
  font-size: 1.07rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: var(--brand-secondary);
  width: 22px;
  height: 22px;
  margin-right: 2px;
}
.cookie-modal-category.essential label {
  color: var(--brand-secondary);
  font-weight: 900;
}
.cookie-modal-buttons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal .close-cookie-settings {
  position: absolute;
  right: 16px; top: 14px;
  background: var(--brand-fun-blue);
  color: #fff;
  border: none;
  font-weight: bold;
  font-size: 1.4rem;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, transform 0.18s;
}
.cookie-modal .close-cookie-settings:hover {
  background: var(--brand-fun-pink);
  transform: scale(1.11) rotate(5deg);
}

/* === THANK YOU PAGE === */
.thank-you .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border-radius: 24px;
  padding: 50px 20px 50px 20px;
  box-shadow: 0 6px 24px var(--brand-shadow);
}
.thank-you h1 {
  color: var(--brand-fun-blue);
}

/* === UTILITY: ANIMATION, MICRO-INTERACTIONS === */
a, button, .feature, .tip, .advice-item, .category-quick-links a, .testimonial-card, .button.primary, .mobile-menu, .mobile-menu-toggle, .mobile-menu-close {
  transition: all 0.17s cubic-bezier(.4,1.2,.2,1.03);
}

.feature, .tip, .advice-item, .testimonial-card, .recipe-list article, .button.primary {
  will-change: transform box-shadow;
}

/* === FOCUS VISIBLE STATES (A11Y) === */
:focus-visible {
  outline: 2px dashed var(--brand-fun-pink);
  outline-offset: 2px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1100px) {
  .container {
    max-width: 950px;
  }
  .footer-brand img { width: 38px; height: 38px; }
}
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
  }
  .feature-grid, .tips-grid, .feature-list, .recipe-list, .testimonial-list, .list {
    gap: 18px;
  }
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 7px;
  }
  header .container {
    gap: 6px;
    min-height: 52px;
  }
  .logo-link img { height: 35px; }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .button.primary {
    margin-left: 6px;
    font-size: 1rem;
    padding: 0.6em 1.2em;
  }
  .feature-grid, .tips-grid, .feature-list, .recipe-list, .testimonial-list, .list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card,
  .feature, .tip, .advice-item, .recipe-list article {
    min-width: 0;
    max-width: 100vw;
    width: 100%;
  }
  .footer-nav {
    gap: 12px;
  }
  
  .hero {
    padding: 26px 0 9px 0;
  }
  .cta {
    padding: 31px 7px;
  }
  .cta h2 { font-size: 1.46rem !important; }
  .thank-you .content-wrapper {
    padding: 25px 5px 30px 5px;
  }
  .testimonial-card {
    padding: 16px 10px 14px 10px;
  }
  .section {
    margin-bottom: 36px;
    padding: 22px 5px;
  }
  .footer-contact {
    font-size: 0.97rem;
  }
  .cookie-modal {
    min-width: 90vw;
    padding: 18px 7px 14px 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 13px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.5rem !important;}
  h2 { font-size: 1.17rem !important;}
  .feature, .tip, .advice-item, .testimonial-card {
    padding: 14px 5px 12px 7px;
  }
}

/* === CRITICAL FLEXBOX SPACING & ALIGNMENT === */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* === OTHER STYLES === */
::-webkit-input-placeholder { color: #8a9a8a;  opacity: 1; }
::-moz-placeholder { color: #8a9a8a;  opacity: 1; }
:-ms-input-placeholder { color: #8a9a8a;  opacity: 1; }
::placeholder { color: #8a9a8a; opacity: 1; }

.text-section img {
  margin-right: 8px;
  vertical-align: middle;
  width: 22px;
  height: 22px;
}

.list { gap: 20px; }

/* Fix for space between cards and grid overlap */
.feature, .tip, .testimonial-card, .advice-item, .recipe-list article {
  margin-bottom: 20px;
}

/* == Hide cookie modal close X on banner == */
.close-cookie-settings {
  cursor: pointer;
}

/* === End CSS === */
