/* ==================== 
   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, input, menu, nav, output, ruby, section, summary, textarea, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
body {
  line-height: 1.5;
  background: #F6F9F1;
}
:root {
  --color-primary: #256927;
  --color-secondary: #184A90;
  --color-accent: #F6F9F1;
  --color-bg-dark: #f4e5cb;
  --color-bg-light: #f9f5ec;
  --color-brown: #b7986d;
  --color-wine: #9e4757;
  --color-retro-yellow: #ffe094;
  --color-retro-orange: #ffb46f;
  --color-retro-green: #49a678;
  --color-retro-blue: #5272a3;
  --color-heading: #1e2420;
  --color-text: #39332e;
  --font-display: 'Montserrat', 'Futura', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Open Sans', 'Georgia', serif;
}
html {
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  text-decoration: none;
  color: var(--color-secondary);
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--color-wine);
  text-decoration: underline;
}

/* ===============
   TYPOGRAPHY
   =============== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-heading);
  line-height: 1.13;
  font-weight: 700;
  text-shadow: 1px 1px 0 var(--color-retro-yellow), 2px 2px 0 rgba(40,24,9,0.07);
  letter-spacing: 0.5px;
}
h1 { font-size: 2.4rem; margin-bottom: 20px; }
h2 { font-size: 1.8rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 14px; }
h4 { font-size: 1.15rem; margin-bottom: 10px; }

body, p, ul, li, ol {
  font-family: var(--font-body);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
}
p {
  margin-bottom: 16px;
}

strong {
  font-weight: 700;
  color: var(--color-primary);
}

ul, ol {
  margin-bottom: 20px;
  margin-left: 22px;
}
li {
  margin-bottom: 8px;
}

/* ===============
   GENERAL LAYOUT
   =============== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-light);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(49,38,28,0.10), 0 2px 7px 0 rgba(255,224,148,0.10);
  border: 2px dashed var(--color-retro-yellow);
}

/* ================================
   HEADER, NAV & BRANDING
   ================================ */
header {
  background: var(--color-retro-yellow);
  border-bottom: 3px solid var(--color-brown);
  box-shadow: 0 3px 18px -8px var(--color-brown);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
}
.logo img {
  height: 48px;
  width: auto;
  filter: sepia(0.6) contrast(1.1);
}
nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
nav a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-secondary);
  position: relative;
  padding: 2px 4px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
nav a:hover, nav a:focus {
  background: var(--color-retro-orange);
  color: var(--color-primary);
}
.btn-primary {
  padding: 9px 22px;
  background: var(--color-primary);
  color: #fff !important;
  font-weight: bold;
  border-radius: 28px;
  border: 2px solid var(--color-secondary);
  font-family: var(--font-display);
  box-shadow: 0 2px 2px rgba(34,56,42,0.10);
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-left: 8px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-retro-blue);
  color: #fff ;
  box-shadow: 0 4px 14px -3px var(--color-retro-green);
}
.btn-secondary {
  padding: 8px 20px;
  background: var(--color-retro-orange);
  color: var(--color-primary) !important;
  border: 2px solid var(--color-primary);
  border-radius: 18px;
  font-family: var(--font-display);
  box-shadow: 0 1px 6px 0 rgba(155, 142, 86, 0.13);
  font-weight: 700;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  margin-top: 10px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-primary);
  color: #fff !important;
}
.btn-link {
  font-family: var(--font-display);
  color: var(--color-retro-blue);
  border-bottom: 2.5px solid var(--color-retro-blue);
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color 0.18s, border-bottom 0.24s;
  background: none;
  padding: 2px 0;
  margin-top: 10px;
  border-radius: 0;
  display: inline-block;
}
.btn-link:hover, .btn-link:focus {
  color: var(--color-wine);
  border-bottom: 2.5px solid var(--color-wine);
}
/* Hamburger Menu */
.mobile-menu-toggle {
  background: var(--color-retro-yellow);
  border: 2px solid var(--color-primary);
  color: var(--color-secondary);
  font-size: 2rem;
  padding: 4px 12px;
  border-radius: 12px;
  cursor: pointer;
  display: none;
  z-index: 31;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-retro-orange);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: var(--color-retro-yellow);
  box-shadow: 0 4px 24px var(--color-brown);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 41;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 32px;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--color-wine);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 5px;
  padding: 2px 10px;
  cursor: pointer;
  z-index: 50;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 54px;
  width: 100vw;
  padding-left: 34px;
}
.mobile-nav a {
  color: var(--color-secondary);
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 6px 0;
  border-radius: 7px;
  transition: background 0.2s, color 0.17s;
  margin-right: 16px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-retro-orange);
  color: var(--color-primary);
}

/* ===================================
   HERO & KEY SECTIONS
   =================================== */
.hero {
  background: var(--color-retro-green);
  background-image: repeating-linear-gradient(135deg, rgba(255,224,148,0.1) 0 6px, transparent 6px 20px);
  padding: 42px 0 46px 0;
  border-bottom: 4px solid var(--color-brown);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1, .hero h2 {
  color: var(--color-primary);
  font-size: 2.4rem;
  text-shadow: 2px 3px 0px #ffe09433;
  margin-bottom: 11px;
  letter-spacing: 1px;
}
.hero p {
  font-size: 1.13rem;
  color: var(--color-heading);
  margin-bottom: 28px;
  font-weight: 500;
  text-shadow: 0 1px 0 var(--color-retro-yellow);
}
.hero .btn-primary {
  font-size: 1.16rem;
  margin-top: 4px;
}

/* Features & Cards */
.features-grid, .services-grid, .article-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 14px;
}
.features-grid {
  margin-bottom: 10px;
}
.feature-item, .service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fffdfa;
  border: 2.5px solid var(--color-retro-blue);
  border-radius: 15px;
  box-shadow: 0 2px 8px 0 rgba(47,65,57,0.10);
  padding: 30px 22px 25px 22px;
  min-width: 200px;
  max-width: 325px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.21s, transform 0.21s;
}
.feature-item:hover, .service-item:hover {
  box-shadow: 0 12px 32px -7px var(--color-retro-green);
  transform: translateY(-2px) scale(1.036);
  background: var(--color-retro-yellow);
}
.feature-item img, .service-item img {
  height: 38px;
}
.feature-item h3, .service-item h3 {
  color: var(--color-secondary);
  margin-bottom: 7px;
  font-size: 1.18rem;
}
.feature-item p, .service-item p {
  color: var(--color-text);
  font-size: 1rem;
}

/* Cards and Grids */
.card-container, .services-grid, .article-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffdfa;
  border-radius: 13px;
  border: 2.5px dashed var(--color-retro-orange);
  box-shadow: 0 1.5px 10px rgba(119, 97, 5, 0.07);
  padding: 24px 20px 18px 20px;
  min-width: 260px;
  transition: box-shadow 0.16s, background 0.17s;
}
.card:hover {
  background: var(--color-bg-dark);
  box-shadow: 0 8px 20px rgba(119, 97, 5, 0.13);
}

.article-teasers article {
  flex: 1 1 270px;
  background: #fffdfa;
  border-radius: 12px;
  border: 2px solid var(--color-retro-blue);
  margin-bottom: 20px;
  box-shadow: 0 1px 7px 0 rgba(47,65,57,0.12);
  padding: 22px 17px 15px 17px;
  transition: box-shadow 0.18s, background 0.13s;
}
.article-teasers article:hover {
  background: var(--color-accent);
  box-shadow: 0 4px 18px var(--color-retro-orange);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 26px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fffdfa;
  padding: 20px 24px;
  border-radius: 15px;
  box-shadow: 0 2px 9px rgba(49,38,28,0.12);
  color: #1D1F24;
  margin-bottom: 22px;
  border: 2px solid var(--color-primary);
}
.testimonial-card strong {
  color: var(--color-secondary);
}

/* Statistic/number highlights */
.statistics, .sustainability-metrics {
  font-family: var(--font-display);
  background: var(--color-retro-yellow);
  color: var(--color-primary);
  border-radius: 9px;
  padding: 15px 25px 15px 15px;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 1.15rem;
  box-shadow: 0 2px 8px 0 rgba(47,65,57,0.09);
}
.partner_logos {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 14px;
  margin-bottom: 22px;
}
.partner_logos img {
  height: 40px;
  filter: grayscale(0.6) sepia(0.2);
}

.timeline ul {
  list-style: none;
  padding-left: 0;
  border-left: 4px dotted var(--color-retro-orange);
  margin-left: 12px;
}
.timeline ul li {
  margin-left: 14px;
  margin-bottom: 13px;
  padding-left: 9px;
  position: relative;
}
.timeline ul li:before {
  content: '';
  position: absolute;
  left: -20px;
  top: 4px;
  width: 10px;
  height: 10px;
  background: var(--color-retro-blue);
  border: 2px solid var(--color-retro-yellow);
  border-radius: 50%;
}
.core-values, .vision-mission {
  margin-bottom: 18px;
}
.core-values ul {
  list-style-type: square;
  color: var(--color-retro-blue);
  margin-left: 18px;
}
.vision-mission p {
  font-style: italic;
  color: var(--color-primary);
}

/**** Misc flex containers *****/
.step-list ol {
  margin: 0 0 20px 18px;
}
.process-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}
.process-icons img {
  height: 38px;
}
.benefits-list ul {
  margin-left: 18px;
  list-style-type: disc;
  color: var(--color-retro-green);
}

/* Highlighted Project (Retro Card) */
.highlighted-project {
  background: var(--color-retro-orange);
  color: var(--color-primary);
  border-radius: 12px;
  padding: 23px 20px 17px 23px;
  font-family: var(--font-display);
  margin-top: 9px;
  font-size: 1.03rem;
  box-shadow: 0 2px 12px -5px var(--color-retro-yellow);
}

/******  FAQ, Contact, Map blocks ******/
.contact-details, .company-info {
  background: var(--color-bg-dark);
  color: var(--color-primary);
  border: 2px solid var(--color-wine);
  border-radius: 9px;
  padding: 20px 18px 14px 18px;
  margin-bottom: 14px;
  font-size: 1.1rem;
  font-family: var(--font-display);
}
.map-location {
  margin: 16px 0 18px 0;
}
.map-location img {
  height: 64px;
  width: auto;
  border-radius: 8px;
  border: 2px solid var(--color-primary);
}

/*******  Event highlight box ******/
.event-highlights {
  background: var(--color-retro-blue);
  color: #fff;
  border-radius: 12px;
  padding: 18px 18px 11px 18px;
  margin-bottom: 15px;
  font-weight: 600;
  box-shadow: 0 2px 8px -3px #3f3a64;
}

/*******  Newsletter/signup ******/
.newsletter-signup {
  background: var(--color-retro-green);
  color: var(--color-primary);
  border-radius: 7px;
  padding: 14px 18px 10px 18px;
  margin-bottom: 9px;
  font-family: var(--font-display);
}

/******* CTA Section ******/
.cta {
  background: var(--color-retro-orange);
  background-image: repeating-linear-gradient(120deg, #ffe09411 0 8px, transparent 8px 27px);
  border-top: 3.5px solid var(--color-retro-yellow);
  padding: 44px 0 44px 0;
  text-align: center;
}
.cta h2 {
  color: var(--color-primary);
  font-size: 2.05rem;
  text-shadow: 2px 2px 0 #ffe094ab;
  margin-bottom: 25px;
}
.cta .btn-primary {
  font-size: 1.22rem;
  margin-top: 7px;
}

/* ===============
   FOOTER
   =============== */
footer {
  background: var(--color-bg-dark);
  border-top: 3.5px solid var(--color-primary);
  padding-top: 32px;
  color: var(--color-primary);
  font-family: var(--font-display);
}
footer .container {
  display: flex;
  flex-direction: column;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 6px;
}
.footer-top > div, .footer-top nav {
  min-width: 220px;
}
.footer-top img {
  height: 45px;
  margin-bottom: 13px;
  filter: sepia(0.5) contrast(1.08);
}
.footer-top p {
  font-size: 1rem;
  color: var(--color-heading);
}
.footer-top nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-top nav a {
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 3px;
  font-family: var(--font-display);
}
.footer-top nav a:hover {
  color: var(--color-wine);
  text-decoration: underline;
}
footer strong {
  color: var(--color-primary);
}

/* ================
   COOKIE BANNER
   ================ */
#cookie-banner, .cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--color-retro-yellow);
  box-shadow: 0 -2px 16px rgba(184,128,44,0.23);
  padding: 24px 20px 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 90;
  border-top: 3px solid var(--color-retro-orange);
  animation: fadein-bounce 0.7s cubic-bezier(.7,1.5,.6,1);
}
.cookie-banner p {
  font-size: 1rem;
  color: var(--color-secondary);
  margin: 0;
}
.cookie-banner-buttons {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-banner .btn-cookie, .btn-cookie {
  background: var(--color-primary);
  color: #fff;
  border-radius: 18px;
  font-weight: bold;
  font-family: var(--font-display);
  border: 2px solid var(--color-secondary);
  padding: 9px 22px;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.btn-cookie.accept:hover, .btn-cookie.accept:focus {
  background: var(--color-retro-blue);
}
.btn-cookie.reject {
  background: var(--color-wine);
}
.btn-cookie.reject:hover, .btn-cookie.reject:focus {
  background: var(--color-primary);
}
.btn-cookie.settings {
  background: var(--color-secondary);
  color: #ffe094;
}
.btn-cookie.settings:hover, .btn-cookie.settings:focus {
  background: var(--color-retro-orange);
  color: var(--color-primary);
}

/* Cookie Settings Modal */
#cookie-modal, .cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(49,38,28,0.23);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadein-modal 0.3s;
}
.cookie-modal-content {
  background: #fffdfa;
  border-radius: 18px;
  box-shadow: 0 6px 38px -8px var(--color-retro-blue);
  max-width: 400px;
  width: 93vw;
  padding: 32px 26px 26px 28px;
  color: var(--color-heading);
  font-family: var(--font-display);
  position: relative;
}
.cookie-modal-content h3 {
  color: var(--color-primary);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-modal-content .toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.cookie-modal-content .toggle input[type="checkbox"] {
  accent-color: var(--color-primary);
  width: 28px; height: 22px;
  margin-right: 4px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 17px;
  background: var(--color-wine);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 1px 11px;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-primary);
}

/* ================
   ANIMATIONS
   ================ */
@keyframes fadein-bounce {
  0% { opacity:0; transform:translateY(58px) scale(0.97); }
  60%{ opacity:0.4; }
  80% { opacity:1; transform:translateY(-4px) scale(1.02); }
  100%{ opacity:1; transform:translateY(0) scale(1.0); }
}
@keyframes fadein-modal {
  0% { opacity:0; }
  90% { opacity:1; }
  100%{ opacity:1; }
}

/* ================
   RESPONSIVE DESIGN
   ================ */
@media (max-width: 1024px) {
  .container { max-width: 96vw; }
  .content-wrapper { max-width: 92vw; }
  .footer-top {
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .features-grid, .services-grid, .card-container, .content-grid, .article-teasers {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 10px; }
  .content-wrapper { padding-top: 0; padding-bottom: 0; }
  header .container { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .footer-top {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .features-grid, .services-grid, .card-container, .content-grid, .article-teasers {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .section {
    padding: 25px 8px;
    margin-bottom: 35px;
  }
  .testimonials {
    gap: 18px;
  }
  .cta {
    padding: 28px 0 34px 0;
  }
  .partner_logos {
    gap: 12px;
    flex-wrap: wrap;
  }
  .event-highlights {
    padding: 10px;
  }
  .newsletter-signup {
    padding: 10px;
  }
}
@media (max-width: 520px) {
  html { font-size: 13.5px; }
  .container, .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .footer-top img {
    height: 32px;
  }
  .contact-details, .company-info {
    font-size: 1rem;
    padding: 13px 7px;
  }
  .btn-primary, .btn-secondary, .btn-link {
    font-size: 1rem;
    padding: 6px 15px;
  }
  .hero h1, .hero h2 { font-size: 1.65rem; }
  .cta h2 { font-size: 1.16rem; }
}

/* Hide unwanted content if modal is open */
body.modal-open {
  overflow: hidden !important;
}


/* === DECORATIVE VINTAGE/RETRO === */
.section, .card, .feature-item, .service-item, .cta, .highlighted-project, .newsletter-signup, .event-highlights, .testimonial-card {
  background-image: repeating-linear-gradient(135deg, #ffe0942d 0 6px, transparent 6px 28px);
}
h1, h2, h3 {
  font-feature-settings: "ss01" on, "ss02" on;
  letter-spacing: 0.5px;
  /* mimics vintage print fonts */
}
.section {
  border-style: dashed !important;
  box-shadow: 0 2px 14px -4px var(--color-retro-orange), 0 1.5px 8px rgba(33,34,0,0.065);
}
/* === END VINTAGE === */

/* ===== ACCESSIBILITY & MICROINTERACTIONS ===== */
:focus-visible {
  outline: 2.5px solid var(--color-secondary);
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #beae8d; }
::-moz-placeholder { color: #beae8d; }
:-ms-input-placeholder { color: #beae8d; }
::placeholder { color: #beae8d; opacity:1; }

button, [role=button], .btn-primary, .btn-secondary, .btn-link, .btn-cookie {
  cursor: pointer;
  transition: box-shadow 0.18s, filter 0.20s, border-color 0.14s, background 0.13s;
}

/* Prevent content overlap due to spacing */
.section, .card, .feature-item, .testimonial-card, .service-item, .highlighted-project {
  margin-bottom: 24px;
}
.card-container > *, .content-grid > *, .article-teasers > *, .features-grid > *, .services-grid > *, .footer-top > * {
  margin-bottom: 20px;
}

/* Prevent user selection on icons/buttons */
.mobile-menu-toggle, .mobile-menu-close {
  user-select: none;
}

/* Hide cookie modal/banner by default */
#cookie-banner, .cookie-banner, #cookie-modal, .cookie-modal {
  display: none;
}
