/* =============================================================
   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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #F6F3ED;
  color: #2D3B29;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #1C3144;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #5BB05B;
}
ul, ol {
  margin-left: 24px;
}

/* =============================================================
   BRAND VARIABLES (for fallback colors)
   ============================================================= */
:root {
  --brand-primary: #1C3144;
  --brand-secondary: #5BB05B;
  --brand-accent: #F6F3ED;
  --brand-dark: #233A20;
  --brand-earth: #9E8B6F;
  --brand-brown: #78624B;
  --brand-green: #5BB05B;
  --brand-beige: #FAF7F1;
  --brand-light: #fff;
  --shadow-card: 0 4px 16px rgba(44, 50, 24, 0.08);
  --radius-section: 40px;
}
footer p {
  color: white
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #233A20;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 18px;
}
h3 {
  font-size: 1.375rem; /* 22px */
}
h4 {
  font-size: 1.125rem; /* 18px */
}
h5, h6 {
  font-size: 1rem;
  font-weight: 600;
}
p, li {
  font-size: 1rem;
  color: #2D3B29;
  margin-bottom: 12px;
}
strong, b {
  color: #1C3144;
  font-weight: 700;
}
blockquote {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #E7E3DB;
  border-left: 7px solid #5BB05B;
  border-radius: 0 18px 18px 0;
  padding: 16px 30px 16px 22px;
  font-style: italic;
  color: #233A20;
  margin: 0 0 16px 0;
  font-size: 1.15rem;
}

/* Lists */
ul, ol {
  margin-bottom: 18px;
}
li {
  margin-bottom: 8px;
}

/* =============================================================
   MAIN LAYOUT CONTAINERS
   ============================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Flex helpers */
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* For TWO column section: .text-image-section */
.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;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-section);
  background: var(--brand-beige);
  box-shadow: 0 2px 8px rgba(44, 50, 24, 0.03);
}
@media (max-width: 480px) {
  .section {
    margin-bottom: 32px;
    padding: 24px 10px;
    border-radius: 20px;
  }
}

/* GAPs and flex for cards and grids */
.card-container, .recipe-cards, .recipe-listings, .blog-listings, .blog-preview, .team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 28px 20px 24px 20px;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 360px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(27,55,50,0.11);
  transform: translateY(-2px) scale(1.025);
}

.card h3 {
  margin-bottom: 8px;
}

/* Pagination */
.pagination {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 32px 0 8px 0;
}
.pagination span {
  background: #5BB05B;
  color: #fff;
  border-radius: 8px;
  padding: 5px 14px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
}
.pagination a {
  background: #F3EFEC;
  color: #233A20;
  border-radius: 6px;
  padding: 5px 10px;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}
.pagination a:hover {
  background: #E2DEDB;
  color: #5BB05B;
}

/* =============================================================
   HEADER & NAVIGATION
   ============================================================= */
header {
  background: #fff;
  box-shadow: 0 0 14px rgba(27, 49, 68, 0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  padding-top: 10px;
  padding-bottom: 10px;
}
nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #1C3144;
  font-size: 1.08rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  font-weight: 600;
}
nav a:hover, nav a:focus {
  background: #E4F1E0;
  color: #5BB05B;
}
.button-primary, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 24px;
  font-weight: 600;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
  margin-left: 16px;
}
.button-primary {
  background-color: #5BB05B;
  color: #fff;
  box-shadow: 0 3px 9px rgba(91,176,91,0.10);
}
.button-primary:hover, .button-primary:focus {
  background-color: #457C45;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
}
.button-secondary {
  background: #F6F3ED;
  color: #1C3144;
  border: 2px solid #5BB05B;
}
.button-secondary:hover, .button-secondary:focus {
  background: #E4F1E0;
  color: #457C45;
  border-color: #457C45;
}
.link-more {
  display: inline-block;
  font-size: 0.97rem;
  color: #5BB05B;
  margin-top: 10px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.18s, text-decoration 0.18s;
  text-decoration: underline dotted;
}
.link-more:hover {
  color: #41733F;
  text-decoration: underline;
}

/* Mobile Burger Button */
.mobile-menu-toggle {
  display: none;
  background: #5BB05B;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 150;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #41733F;
  outline: none;
}

@media (max-width: 1024px) {
  nav {
    gap: 10px;
  }
  .button-primary {
    margin-left: 5px;
    padding: 11px 19px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .button-primary {
    display: none;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(28,49,68, 0.96);
  box-shadow: 0 4px 24px rgba(28,49,68,0.25);
  z-index: 500;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.56,.21,.46,1.04);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.0rem;
  border: none;
  margin: 26px 20px 0 0;
  cursor: pointer;
  align-self: flex-end;
  z-index: 505;
  transition: color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #5BB05B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: 100vw;
  margin-top: 52px;
}
.mobile-nav a {
  color: #fff;
  background: none;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
  font-weight: 600;
  padding: 16px 25px;
  border-radius: 15px;
  width: 80vw;
  max-width: 330px;
  text-align: center;
  transition: background 0.15s, color 0.15s;
  margin: 0 auto;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #376438;
  color: #5BB05B;
}

@media (min-width: 901px) {
  .mobile-menu,.mobile-menu-toggle {
    display: none !important;
  }
}

/* =============================================================
   HERO SECTION & ORGANIC / NATURE VISUALS
   ============================================================= */
.hero-section {
  display: flex;
  align-items: center;
  min-height: 340px;
  padding: 46px 0 34px 0;
  background: linear-gradient(170deg, #F6F3ED 60%, #E4F1E0 100%);
  position: relative;
  border-radius: 0 0 48px 48px;
  box-shadow: 0 2px 10px rgba(44, 50, 24, 0.03);
}
.hero-section .container {
  z-index: 2;
}
.hero-section h1 {
  color: #1C3144;
  font-size: 2.7rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 14px;
}
.hero-section p {
  font-size: 1.18rem;
  color: #233A20;
  margin-bottom: 22px;
}
@media (max-width: 660px) {
  .hero-section {
    min-height: 180px;
    padding: 24px 0 8px 0;
    border-radius: 0 0 28px 28px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}


/* Feature grid/rows */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px 40px 23px 30px;
  box-shadow: var(--shadow-card);
  border-left: 7px solid #5BB05B;
  padding: 26px 22px;
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 210px;
  transition: transform 0.14s, box-shadow 0.14s;
}
.feature-item img {
  width: 44px;
  height: 44px;
}
.feature-item h3 {
  margin-bottom: 0;
  font-size: 1.18rem;
}
.feature-item p {
  font-size: 0.96rem;
}
.feature-item:hover {
  box-shadow: 0 10px 21px rgba(91,176,91,0.13);
  transform: translateY(-2px) scale(1.025);
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* =============================================================
   CARDS, BLOGS, LISTINGS & CARD-GROUPS
   ============================================================= */
.recipe-cards, .blog-preview, .blog-listings, .recipe-listings, .team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 12px 0 24px 0;
}
.card, .blog-card, .blog-item {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  position: relative;
  margin-bottom: 20px;
  padding: 24px 20px 16px 20px;
  flex: 1 1 270px;
  min-width: 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.blog-card,.blog-item {
  max-width: 370px;
  min-width: 220px;
}
.card:hover, .blog-card:hover, .blog-item:hover {
  box-shadow: 0 10px 26px rgba(44, 90, 55, 0.10);
  transform: translateY(-2px) scale(1.03);
}
@media (max-width: 750px) {
  .recipe-cards, .blog-listings, .blog-preview, .recipe-listings, .team-bios {
    flex-direction: column;
    gap: 18px;
  }
}

/* Team bios */
.team-bios > div {
  background: #FAF7F1;
  padding: 22px 15px;
  border-radius: 22px;
  box-shadow: 0 2px 8px rgba(91,176,91,0.06);
  min-width: 220px; max-width: 340px;
  flex: 1 1 210px;
}
.team-bios h3 {
  font-size: 1.15rem;
  color: #1C3144;
}

/* Team Timeline */
.team-timeline h4 {
  margin-bottom: 6px;
}
.team-timeline ul {
  margin-left: 18px;
}

/* Filters & Categories */
.filters {
  border-radius: 18px;
  background: #EFF5ED;
  padding: 18px 16px 10px 16px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(37,56,27,0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.filter-row span {
  font-weight: 600;
  color: #233A20;
  margin-right: 8px;
  font-family: 'Montserrat',sans-serif;
}
.filter-row button {
  background: #FAF7F1;
  border: 1.7px solid #5BB05B;
  color: #5BB05B;
  border-radius: 18px;
  padding: 7px 18px;
  font-family: inherit;
  font-size: 0.98rem;
  cursor: pointer;
  margin-bottom: 7px;
  transition: background 0.14s, color 0.14s, border 0.14s;
}
.filter-row button:hover, .filter-row button:focus {
  color: #fff;
  background: #5BB05B;
  border-color: #41733F;
}

/* Blog categories */
.categories {
  margin-top: 16px;
  color: #5BB05B;
  font-weight: 600;
}
.categories span {
  padding: 2px 11px;
  background: #EFF5ED;
  border-radius: 10px;
  margin-right: 5px;
  font-size: 0.98rem;
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 30px 22px 36px 18px;
  box-shadow: var(--shadow-card);
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 450px;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow 0.14s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px rgba(76,128,86,0.09);
  transform: scale(1.03);
}
.testimonial-card blockquote {
  margin: 0 0 9px 0;
  font-size: 1.07rem;
  background: #E9F3EA;
  border-left: 6px solid #5BB05B;
  color: #233A20;
  border-radius: 0 18px 18px 0;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #1C3144;
  font-weight: 500;
}
.testimonial-meta img {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #E6EAE4;
  padding: 2px;
}

@media (max-width: 900px) {
  .testimonials {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 100%;
  }
}

/* =============================================================
   CTA SECTION
   ============================================================= */
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #E9F7ED;
  border-radius: 32px 40px 35px 32px;
  box-shadow: var(--shadow-card);
  padding: 38px 20px 36px 20px;
  gap: 14px;
  margin-top: 12px;
  margin-bottom: 8px;
}
.cta h2 {
  color: #233A20;
  font-size: 2.1rem;
  margin-bottom: 12px;
}

/* =============================================================
   INPUTS & FORMS
   ============================================================= */
input[type="text"], input[type="email"], input[type="search"] {
  padding: 12px 17px;
  border-radius: 11px;
  border: 1.5px solid #C8D1C2;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 10px;
  width: 100%;
  transition: border 0.15s, background 0.13s;
  outline: none;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="search"]:focus {
  border-color: #5BB05B;
  background: #F3FEF2;
}

/* =============================================================
   CONTACT DETAILS
   ============================================================= */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.contact-details > div {
  background: #EFF5ED;
  border-radius: 14px;
  padding: 13px 18px;
  flex: 1 1 120px;
  min-width: 160px;
  max-width: 280px;
  font-size: 1rem;
}
.contact-details img {
  width: 19px; height: 19px; margin-right: 7px; vertical-align: middle;
}
.address-map {
  background: #FAF7F1;
  border-radius: 12px;
  padding: 12px 22px 8px 22px;
  margin-bottom: 18px;
  box-shadow: 0 1px 3px rgba(44, 50, 24, 0.03);
}
.opening-hours li {
  display: flex; align-items: center; gap: 9px;
}
ul.opening-hours {
  margin-left: 0; margin-bottom: 0;
}
.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.social-links a img {
  width: 32px;
  height: 32px;
  transition: transform 0.14s, filter 0.14s;
  border-radius: 8px;
  background: #EFF5ED;
  padding: 3px;
}
.social-links a:hover img {
  filter: brightness(0.7) saturate(1.5);
  transform: scale(1.11) rotate(-8deg);
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: #233A20;
  color: #fff;
  padding-top: 38px;
  padding-bottom: 30px;
  position: relative;
  border-radius: 46px 46px 0 0;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
.brand-footer {
  flex: 2 1 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.brand-footer img {
  width: 88px; height: auto;
  margin-bottom: 4px;
}
.brand-footer p {
  color: #FFF;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.footer-menu, .legal-menu {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-menu a, .legal-menu a {
  color: #EAEAEA;
  font-size: 1.04rem;
  transition: color 0.14s;
  font-family: 'Montserrat',sans-serif;
}
.footer-menu a:hover, .legal-menu a:hover {
  color: #5BB05B;
}
.contact-footer {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #E8ECC9;
  font-size: 0.97rem;
  margin-top: 6px;
}
.contact-footer img {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 3px;
}
.footer-socials {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 12px;
}
.footer-socials a img {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 7px;
  padding: 2px;
  filter: grayscale(30%) contrast(1.2);
  transition: filter 0.16s, transform 0.12s;
}
.footer-socials a:hover img {
  filter: grayscale(0%) contrast(1.4) brightness(1.2);
  transform: scale(1.10) rotate(-9deg);
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 26px;
    align-items: stretch;
  }
}


/* =============================================================
   COOKIE CONSENT BANNER & COOKIE MODAL
   ============================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fffbe9;
  color: #233A20;
  box-shadow: 0 -4px 26px rgba(44, 50, 24, 0.06);
  border-top: 2px solid #9E8B6F;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 20px 6vw 20px 6vw;
  z-index: 9999;
  font-size: 1rem;
  transition: transform 0.35s cubic-bezier(.72,.18,.49,1.06), opacity 0.28s;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner button {
  margin-left: 12px;
  margin-right: 4px;
  padding: 10px 22px;
  border-radius: 20px;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-banner .accept-btn {
  background: #5BB05B;
  color: #fff;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: #41733F;
}
.cookie-banner .reject-btn {
  background: #E7E3DB;
  color: #1C3144;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: #CFC7B7;
  color: #8B6C3B;
}
.cookie-banner .settings-btn {
  background: #e1ede0;
  color: #2D3B29;
  border: 1.2px solid #9E8B6F;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #E9F3EA;
  color: #1C3144;
}
@media (max-width: 660px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    font-size: 0.99rem;
    padding: 20px 14px 13px 14px;
  }
  .cookie-banner button {
    margin-left: 0;
    margin-right: 0;
    margin-top: 7px;
  }
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(44, 50, 24, 0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 1;
  transition: opacity 0.23s;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px 26px 28px;
  box-shadow: 0 8px 56px rgba(44, 50, 24, 0.15);
  min-width: 295px;
  max-width: 92vw;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.cookie-modal-content h2 {
  margin-top: 0;
  font-size: 1.34rem;
  color: #5BB05B;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
}
.cookie-modal input[type="checkbox"][disabled] {
  accent-color: #CFC7B7;
  cursor: not-allowed;
}
.cookie-modal label {
  font-size: 1.07rem;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 4px;
}
.cookie-modal .accept-btn, .cookie-modal .reject-btn {
  padding: 8px 18px;
  font-size: 1rem;
  border-radius: 20px;
}
@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 19px 5vw 18px 5vw;
    min-width: 0; max-width: 97vw;
  }
  .cookie-modal-content h2 { font-size: 1.07rem; }
}

/* =============================================================
   RESPONSIVE ADJUSTMENTS & UTILITIES
   ============================================================= */
@media (max-width: 1190px) {
  .container {
    max-width: 100vw;
  }
}
@media (max-width: 800px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.48rem; }
  h3 { font-size: 1.1rem; }
  .footer-content { padding: 0 3px; }
}
@media (max-width: 600px) {
  .card, .blog-card, .blog-item {
    min-width: 90vw;
    max-width: 100vw;
    padding: 17px 7vw 18px 7vw;
  }
  .feature-item, .team-bios > div {
    min-width: 88vw; max-width: 100vw;
  }
  .footer-content, .content-wrapper {
    padding-left: 0; padding-right: 0;
  }
}

/* Hide scrollbars in overlays */
.mobile-menu, .cookie-modal {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar, .cookie-modal::-webkit-scrollbar {
  display: none;
}

/* Transition classes for JavaScript toggle */
.mobile-menu, .cookie-banner, .cookie-modal {
  will-change: transform, opacity;
}

/* =============================================================
   THANK YOU PAGE SECTION
   ============================================================= */
.thank-you-section {
  padding: 64px 0;
  min-height: 440px;
  background: linear-gradient(170deg, #E9F3EA 80%, #F6F3ED 100%);
  border-radius: 0 0 48px 48px;
  text-align: center;
}
.thank-you-section h1 {
  color: #5BB05B;
  margin-bottom: 14px;
  font-size: 2.4rem;
}
.thank-you-section p {
  font-size: 1.15rem;
  color: #233A20;
  margin-bottom: 14px;
}

/* =============================================================
   ORGANIC BUTTON SHAPES & MICRO-INTERACTIONS
   ============================================================= */
.button-primary, .button-secondary, .filter-row button, .cookie-banner button, .cookie-modal .modal-actions button {
  box-shadow: 0 2px 6px rgba(91,176,91,0.10);
  border-radius: 50px 27px 34px 22px / 34px 50px 21px 31px;
  position: relative;
  overflow: hidden;
}
.button-primary:active, .button-secondary:active, .filter-row button:active {
  transform: scale(0.97);
}

/* =============================================================
   UTILITY CLASSES
   ============================================================= */
.d-none { display: none !important; }
.text-center { text-align: center; }
.align-center { align-items: center; justify-content: center; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 30px; }

/* End of CSS */
