/* ------------------------------
   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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  height: 100%;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100%;
  overflow-x: hidden;
  background-color: #F6F6F3;
  color: #222927;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #26774D;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #15181f;
  outline: none;
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 1.6em;
}
li {
  margin-bottom: 0.5em;
}
hr {
  border: none;
  border-top: 1px solid #DCE3D7;
  margin: 32px 0;
}

/* ------------------------------
   FONT FACE
------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;0,900;1,700&family=Open+Sans:ital,wght@0,400;0,600;1,400&display=swap');

/* ------------------------------
   BRAND COLORS (with nature_organic palette extensions)
------------------------------ */
:root {
  --pf-primary: #15181f;
  --pf-secondary: #38A1DB;
  --pf-accent: #F7C84B;
  --pf-green: #26774D;
  --pf-earth: #B6996B;
  --pf-soft-green: #E7F3E8;
  --pf-soil: #8D6748;
  --pf-shell: #F6F6F3;
  --pf-leaf: #3C8551;
  --pf-bark: #423118;
  --shadow-xs: 0 1px 2px 0 rgba(44,56,32,0.08);
  --shadow-md: 0 4px 16px rgba(30,48,15,0.09);
  --text-dark: #222927;
  --text-light: #F6F6F3;
  --border-radius: 20px;
}

/* ---------------------------------------------------
   TYPOGRAPHY HIERARCHY
--------------------------------------------------- */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--pf-primary);
  margin-bottom: 24px;
  line-height: 1.12;
  letter-spacing: -0.5px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--pf-green);
  margin-bottom: 20px;
  line-height: 1.2;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--pf-bark);
  margin-bottom: 14px;
  line-height: 1.3;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  color: var(--pf-primary);
  font-weight: 600;
  margin-bottom: 12px;
}
p,
div,
small, span, label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
}
p {
  margin-bottom: 1.2em;
}
small {
  font-size: 0.875rem;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  background: var(--pf-soft-green);
  border-left: 6px solid var(--pf-green);
  color: var(--pf-bark);
  padding: 16px 24px;
  border-radius: 14px;
  margin-bottom: 12px;
  margin-top: 8px;
}
table {
  border-collapse: collapse;
  width: 100%;
  background: #fafaf6;
  border-radius: 10px;
  margin-bottom: 24px;
}
th, td {
  padding: 14px 12px;
  border-bottom: 1px solid #e1e7db;
}
th {
  background-color: var(--pf-soft-green);
  color: var(--pf-green);
  font-weight: 700;
}

/* ------------------------------------------
   LAYOUT CONTAINERS & SPACING (FLEXBOX ONLY!)
------------------------------------------ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* For hero or feature sections where we might want more space */
.hero .content-wrapper {
  padding: 32px 0 32px 0;
  align-items: flex-start;
}
.text-section {
  background: var(--pf-shell);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xs);
  padding: 36px 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius);
  padding: 24px 20px;
  min-width: 270px;
  flex: 1 1 270px;
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 10px 24px rgba(37,68,44,.11);
  transform: translateY(-4px) scale(1.025);
}
.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;
  margin-bottom: 32px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--pf-soft-green);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-xs);
  margin-bottom: 20px;
  max-width: 550px;
  flex: 1 1 300px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px rgba(44,56,32,0.12);
  transform: scale(1.016);
}
.service-cards,
.faq-list,
.options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-cards > div,
.options > ul,
.faq-list > div {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xs);
  padding: 22px 18px;
  min-width: 220px;
  flex: 1 1 220px;
}
.highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  list-style-type: none;
}
.highlights li {
  background: var(--pf-soft-green);
  color: var(--pf-green);
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}


/* ------------------------------
   HEADER + NAVIGATION
------------------------------ */
header {
  background: var(--pf-shell);
  border-bottom: 1px solid #e6e9e2;
  position: relative;
  z-index: 11;
  box-shadow: 0 1px 8px rgba(120,135,90,0.06);
}
header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 70px;
  justify-content: space-between;
  padding: 0 20px;
}
header nav > a img {
  height: 38px;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--pf-green);
  letter-spacing: 0.1px;
  padding: 4px 6px 4px 6px;
  border-radius: 8px;
  transition: background 0.15s, color 0.12s;
  text-decoration: none;
}
nav ul li a:hover, nav ul li a.active {
  background: var(--pf-soft-green);
  color: var(--pf-leaf);
}
header .btn-primary {
  margin-left: 18px;
  font-size: 1.06rem;
}

/* ------ Mobile burger menu ------ */
.mobile-menu-toggle {
  display: none;
  background: var(--pf-green);
  color: white;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 14px;
  cursor: pointer;
  z-index: 15;
  box-shadow: 0 6px 12px rgba(38,119,77,0.10);
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--pf-leaf);
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg,#E7F3E8,#F6F6F3 70%);
  box-shadow: 0 14px 42px 0 rgba(38,119,77,0.13);
  z-index: 50;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(.5,1,.6,1), opacity 0.24s;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--pf-leaf);
  align-self: flex-end;
  margin: 20px 24px 14px 0;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 50%;
  transition: background 0.12s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--pf-soft-green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 32px;
  width: calc(100vw - 64px);
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--pf-green);
  padding: 12px 10px;
  border-radius: 11px;
  transition: background 0.16s, color 0.13s;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--pf-soft-green);
  color: var(--pf-leaf);
}

/* Hide nav on mobile, show hamburger */
@media (max-width: 990px) {
  header nav ul,
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

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

/* Overlay for mobile menu */
.mobile-menu {
  transition: transform 0.30s cubic-bezier(.77,.23,.2,1.2), opacity 0.2s;
}

/* ----------------------
    BUTTONS & INTERACTIVES
---------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 32px;
  background: var(--pf-green);
  color: #fff;
  border: none;
  border-radius: 30px 22px 25px 28px / 22px 30px 32px 15px; /* organic shape */
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(38,119,77,0.10);
  transition: background 0.16s, box-shadow 0.22s, transform 0.12s;
  text-decoration: none;
  margin-top: 8px;
  margin-bottom: 8px;
}
.btn-primary:focus, .btn-primary:hover {
  background: var(--pf-leaf);
  color: #fff;
  transform: translateY(-2px) scale(1.03) skew(-2deg,1deg);
  box-shadow: 0 8px 20px rgba(60,133,81,0.17);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  background: var(--pf-earth);
  color: #fff;
  border: none;
  border-radius: 18px 22px 21px 30px / 20px 18px 24px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1px 7px rgba(182,153,107,0.08);
  transition: background 0.13s, color 0.13s;
}
.btn-secondary:focus, .btn-secondary:hover {
  background: var(--pf-soil);
  color: #fff;
}
.btn-accent {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  background: var(--pf-accent);
  color: var(--pf-bark);
  border: none;
  border-radius: 16px 18px 20px 17px / 18px 24px 19px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
}
.btn-accent:hover, .btn-accent:focus {
  background: #fff5ca;
  color: var(--pf-earth);
}
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}

/* Cookie banner buttons */
.cookie-btn-accept {
  background: var(--pf-green);
  color: #fff;
  border: none;
  border-radius: 16px 22px 15px 18px / 16px 22px 12px 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 10px 26px;
  margin-right: 10px;
  cursor: pointer;
  transition: background 0.13s, transform 0.13s;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: var(--pf-leaf);
  transform: scale(1.07);
}
.cookie-btn-settings {
  background: var(--pf-accent);
  color: var(--pf-bark);
  border: none;
  border-radius: 16px 18px 18px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 22px;
  margin-right: 10px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #fff5ca;
  color: var(--pf-bark);
}
.cookie-btn-reject {
  background: transparent;
  color: var(--pf-leaf);
  border: 2px solid var(--pf-leaf);
  border-radius: 18px 12px 10px 18px / 16px 10px 16px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.11s, color 0.13s;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: var(--pf-soft-green);
  color: var(--pf-bark);
}

/* -------------
   HERO SECTION
------------- */
.hero {
  background-color: var(--pf-soft-green);
  background-image: url('../assets/nature-bg.svg'), url('../assets/splines.svg');
  background-repeat: no-repeat;
  background-size: 250px auto, 160px auto;
  background-position: right 10vw top -30px, left 2vw bottom 0;
  min-height: 320px;
  border-radius: 0 0 60px 60px/0 0 36px 36px;
  box-shadow: 0 4px 48px 0 rgba(76,162,97,.07);
  margin-bottom: 60px;
  position: relative;
}
.hero .content-wrapper {
  padding: 60px 0 32px 0;
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-size: 2.25rem;
  color: var(--pf-leaf);
}
.hero p {
  color: var(--pf-bark);
  font-size: 1.15rem;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .hero {
    background-size: 120px auto, 90px auto;
    min-height: 210px;
    background-position: right top, left bottom;
    border-radius: 0 0 30px 24px/0 0 12px 13px;
  }
  .hero .content-wrapper {
    padding: 40px 0 18px 0;
  }
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.375rem; }
  h3, .h3 { font-size: 1.08rem; }
}

/* ------- Testimonials ---------- */
.testimonial-card blockquote {
  background: transparent;
  padding: 0;
  border-radius: 0;
  border-left: 6px solid var(--pf-leaf);
  color: var(--pf-primary);
  margin-right: 10px;
}
.testimonial-card > div {
  color: var(--pf-earth);
  font-size: 1rem;
  font-weight: 600;
}

/* -------- Text + image / FAQ sections --------- */
@media (max-width: 768px) {
  .text-image-section,
  .content-grid,
  .card-container,
  .service-cards,
  .faq-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
  }
  .card {
    min-width: 0;
    max-width: 100%;
  }
}

/* ----------- Footer ------------ */
footer {
  background: #21231f url('../assets/organic-leaves-footer.svg') left bottom/300px no-repeat;
  color: var(--text-light);
  padding: 55px 0 24px 0;
  border-top: 1px solid #eee9cc;
  box-shadow: 0 -5px 21px rgba(81,107,62,.06);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
footer a img {
  height: 34px;
  margin-bottom: 10px;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
}
footer ul li a {
  color: var(--pf-accent);
  font-size: 1rem;
  transition: color 0.13s;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
footer ul li a:hover,footer ul li a:focus {
  color: var(--pf-green);
}
footer p, footer small {
  color: #FDF0C6;
}
footer small {
  display: block;
  margin-top: 10px;
  color: #978f7b;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* _______________ Cookie Consent Banner _______________ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 2px solid var(--pf-leaf);
  box-shadow: 0 -4px 30px rgba(56,161,219,0.08);
  color: var(--pf-primary);
  z-index: 1029;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 24px 20px;
  font-size: 1.06rem;
}
.cookie-banner .cookie-banner-message {
  flex: 1 1 320px;
  max-width: 600px;
  font-size: 1.03rem;
}
.cookie-banner .button-group {
  gap: 8px;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 10px;
    gap: 18px;
    font-size: 1rem;
  }
}

/* ----------- Cookie Modal Overlay ----------- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: rgba(33,35,31,0.38);
  z-index: 1031;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px 30px 22px 28px/34px 30px 26px 18px;
  box-shadow: 0 8px 40px rgba(38,119,77,0.13);
  max-width: 420px;
  padding: 36px 32px 28px 32px;
  position: relative;
  color: var(--pf-primary);
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--pf-soft-green);
  border: none;
  font-size: 1.6rem;
  color: var(--pf-green);
  border-radius: 50%;
  padding: 4px 10px 4px 10px;
  cursor: pointer;
  transition: background 0.11s;
  z-index: 2;
}
.cookie-modal-close:focus,
.cookie-modal-close:hover {
  background: var(--pf-earth);
  color: #fff;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.02rem;
  margin-bottom: 18px;
  border-bottom: 1px dashed #E4ECE8;
  padding-bottom: 12px;
  gap: 16px;
}
.cookie-modal-category:last-child {
  border-bottom: none;
}
.cookie-modal-category label {
  font-weight: 600;
  color: var(--pf-green);
}
.cookie-toggle {
  appearance: none;
  outline: none;
  width: 46px;
  height: 22px;
  background: #E8EADF;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: linear-gradient(90deg, var(--pf-green) 60%, var(--pf-leaf) 100%);
}
.cookie-toggle:before {
  content: '';
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 2px;
  transition: left 0.19s;
  box-shadow: 0 1px 3px rgba(32,53,26,0.13);
}
.cookie-toggle:checked:before {
  left: 25px;
}
@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 26px 8px 18px 8px;
    max-width: 94vw;
  }
}

/* --------------
   FAQ List
--------------- */
.faq-list > div {
  margin-bottom: 20px;
  background: var(--pf-shell);
  box-shadow: var(--shadow-xs);
  border-radius: 12px;
  padding: 14px 18px 10px 18px;
}
.faq-list h3 {
  font-size: 1.06rem;
  color: var(--pf-bark);
  margin-bottom: 7px;
}
.faq-list p {
  font-size: 0.97rem;
}

/* ------------------------------
  RESPONSIVE DESIGN (MOBILE-FIRST)
------------------------------ */
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding: 0 12px;
  }
  section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .text-section {
    padding: 24px 10px;
    font-size: 1rem;
  }
}
@media (max-width: 660px) {
  section, .section {
    padding: 28px 0px 0px 0px;
    margin-bottom: 34px;
  }
  .content-wrapper, .text-section {
    gap: 13px;
  }
  .card,
  .service-cards > div,
  .faq-list > div {
    min-width: 0;
    max-width: 100%;
    padding: 14px 8px;
  }
}

/* ------ Ensure no overlapping ------ */
.card:not(:last-child),
.service-cards > div:not(:last-child) {
  margin-right: 0;
}
.card,
.service-cards > div {
  margin-bottom: 20px;
}

/* --------------
   Organic Shapes (decoration)
--------------- */
.organic-deco {
  background: url('../assets/organic-shape-light.svg') no-repeat center center;
  background-size: cover;
}

/* --------------
   Utility classes
------------- */
.flex-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.flex-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-12 { gap: 12px; }
.gap-24 { gap: 24px; }

/* --------------
   Selection colors
-------------- */
::selection {
  background: var(--pf-accent);
  color: var(--pf-primary);
}

/* --------------
   Focus rings
-------------- */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus, .btn-accent:focus {
  outline: 2px solid var(--pf-leaf);
  outline-offset: 2px;
}

/* --------------
   Animations
-------------- */
@keyframes cookieIn {
  from { transform: translateY(120px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner {
  animation: cookieIn 0.55s cubic-bezier(.53,1.5,.9,1.2);
}
@keyframes fadeInPop {
  from { transform: scale(0.93); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-content {
  animation: fadeInPop 0.33s cubic-bezier(.73,1.6,.8,1.2);
}

/* ------------------------------
   END OF NATURE ORGANIC THEME CSS
------------------------------ */