/*---------------------------------------
  Vortex Circuit – NATURE ORGANIC CSS
  Brand: Modern, confident, natural
  Flexbox layouts only – Mobile first
---------------------------------------*/

/* 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,
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;
}
body {
  line-height: 1.6;
  color: #22325E; /* primary */
  background: #FAFAF6;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #42694D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7EB26D;
  outline: none;
}
ul, ol {
  padding-left: 24px;
}
strong {
  font-weight: 700;
}

/*------------------------------
  VARIABLES – CSS Custom Props
------------------------------*/
:root {
  --color-primary: #22325E;  /* deep blue */
  --color-secondary: #7EB26D; /* natural green */
  --color-accent: #F7F7FA;
  --color-earth1: #E8E3D8;
  --color-earth2: #B7A16B;
  --color-organic1: #D7EACB;
  --color-organic2: #B0C4B1;
  --color-dark: #22325E;
  --color-success: #7EB26D;
  --color-white: #FFF;
  --color-black: #191D17;
  --shadow-main: 0 4px 24px rgba(34, 50, 94, 0.08);
  --shadow-organic: 0 2px 8px rgba(126, 178, 109, 0.10);
  --radius-main: 20px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #22325E;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.20rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 14px;
  font-size: 1rem;
}

/* LEADING, VISUAL WEIGHT, SCALES */
.section h1, .section h2, .hero h1 {
  margin-bottom: 18px;
}
blockquote {
  font-style: italic;
  color: #42694D;
  border-left: 4px solid var(--color-secondary);
  margin: 14px 0 14px 0;
  padding: 10px 0 10px 12px;
  background: #E8E3D8;
  border-radius: 0 12px 12px 0;
}

/*----------------------------------
  LAYOUT CONTAINERS & SPACING RULES
----------------------------------*/
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}
.flex-between {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-organic);
}
@media (max-width: 900px) {
  .container { padding: 0 10px; }
}
@media (max-width: 768px) {
  .container { padding: 0 6px; }
  .section {
    margin-bottom: 40px;
    padding: 24px 8px;
  }
}

/*------------------------------
  ORGANIC SHAPES, TEXTURES
------------------------------*/
.section, .hero, .service-card, .testimonial-card, .card, .thankyou {
  border-radius: 28px 40px 20px 40px;
  box-shadow: 0 3px 16px rgba(126,178,109,0.05);
}
.hero {
  margin-bottom: 60px;
  padding: 56px 0 54px 0;
  background: linear-gradient(138deg, #E8E3D8 0%, #D7EACB 100%);
}

/*------------------------------
  HEADER & NAVBAR (DESKTOP)
------------------------------*/
header {
  padding: 0 0 0 0;
  background: #F7F7FA;
  box-shadow: 0 2px 12px rgba(126,178,109,0.04);
  position: sticky;
  top: 0;
  z-index: 30;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #22325E;
  padding: 10px 16px;
  border-radius: 12px;
  background: none;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #D7EACB;
  color: #42694D;
}
header .cta.primary {
  margin-left: 18px;
  display: inline-flex;
}

/*------------------------------
  MOBILE MENU
------------------------------*/
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #22325E;
  cursor: pointer;
  margin-left: 16px;
}
@media (max-width: 920px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
    z-index: 101;
    padding: 8px 14px;
    background: var(--color-secondary);
    border-radius: 10px;
    color: #FFF;
    border: none;
    box-shadow: 0 1px 4px rgba(34,50,94,0.07);
    transition: background 0.2s, color 0.2s;
  }
  .mobile-menu-toggle:active, .mobile-menu-toggle:focus {
    background: #42694D;
    color: #FFF;
    outline: none;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(215, 234, 203, 0.98);
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.62,.14,.29,.99);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 54px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 16px 56px rgba(34,50,94,0.14);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  z-index: 2001;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #42694D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 54px 32px 32px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: #22325E;
  background: none;
  padding: 12px 0;
  border-radius: 10px;
  width: 100%;
  font-weight: 500;
  transition: background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E8E3D8;
}
@media (max-width: 920px) {
  .mobile-menu { display: flex; }
}

/*------------------------------
  HERO SECTION
------------------------------*/
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
  max-width: 650px;
  margin: 0 auto;
}
.hero h1 {
  color: #22325E;
  font-size: 2.5rem;
}
.hero p {
  color: #39544A;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.hero .cta.primary {
  margin-top: 18px;
}
@media (max-width: 768px) {
  .hero .content-wrapper {text-align: left;}
  .hero h1 {font-size: 1.54rem;}
}

/*------------------------------
  FEATURE/GRID SECTION
------------------------------*/
.feature-grid, .team-members-grid, .service-cards, .service-list, .testimonial-list, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 12px;
}
.feature-grid li, .feature-item, .team-member, .service-card, .service, .testimonial-card {
  background: #F7F7FA;
  border-radius: 24px 28px 18px 28px;
  box-shadow: var(--shadow-organic);
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 275px;
  padding: 30px 18px 20px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid #E8E3D8;
}
.feature-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
}
.feature-grid h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: #22325E;
}
.feature-grid p {
  font-size: 0.97rem;
  color: #39544A;
}
@media (max-width: 900px) {
  .feature-grid, .service-cards, .team-members-grid, .service-list {
    gap: 16px;
  }
  .feature-grid li, .team-member, .service-card, .service {
    min-width: 140px;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .feature-grid, .team-members-grid, .service-cards, .service-list {
    flex-direction: column;
    gap: 18px;
  }
}

/* SERVICE CARDS / SERVICE-LIST */
.service-cards, .service-list {
  align-items: stretch;
  justify-content: flex-start;
}
.service-card, .service {
  background: #FFF;
  border: 1px solid #B0C4B1;
  border-radius: 24px 36px 14px 23px;
  box-shadow: var(--shadow-main);
  padding: 34px 22px 32px 22px;
  margin-bottom: 20px;
  min-width: 245px;
  max-width: 310px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.price {
  color: #7EB26D;
  font-weight: 700;
  font-size: 1.05rem;
}
.service-card .cta, .service .cta {
  align-self: flex-start;
  margin-top: 14px;
}
.service-card h3, .service h2 {
  font-size: 1.14rem;
  color: #22325E;
}
.service-card p, .service p {
  font-size: 0.98rem;
  color: #42694D;
}
@media (max-width: 640px) {
  .service-cards, .service-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .service-card, .service {
    max-width: 100%;
  }
}

/* TESTIMONIALS */
.testimonials,
.testimonial-list,
.testimonial-slider {
  margin-top: 16px;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #E8E3D8;
  padding: 24px 24px;
  border-radius: 20px 32px 28px 32px;
  box-shadow: 0 4px 24px rgba(34,50,94,0.05);
  border: 1px solid #B7A16B;
  margin-bottom: 20px;
  flex: 1 1 280px;
  min-width: 220px;
  color: #22325E;
  font-size: 1.04rem;
  font-style: italic;
  position: relative;
}
.testimonial-card p {
  color: #191D17;
  font-size: 1.03rem;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: #39544A;
  font-size: 0.95rem;
  margin-left: 10px;
  font-style: normal;
}
@media (max-width: 900px) {
  .testimonial-list, .testimonial-slider {
    gap: 12px;
  }
}
@media (max-width: 640px) {
  .testimonial-list, .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
}

/* TESTIMONIAL CARD MICRO-INTERACTION */
.testimonial-card {
  transition: box-shadow 0.18s, transform 0.22s;
  cursor: default;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(173,194,152,0.23);
  transform: scale(1.025);
  z-index: 1;
}

/* CTAs ------------------- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 18px;
  padding: 13px 30px;
  font-size: 1.08rem;
  color: #FFF;
  background: var(--color-secondary);
  box-shadow: 0 2px 8px rgba(34,50,94,0.08);
  border: none;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.19s, color 0.18s;
  margin: 0 8px 0 0;
  text-align: center;
  text-decoration: none;
}
.cta.primary {
  background: var(--color-primary);
  color: #FFF;
}
.cta:hover, .cta:focus {
  background: #42694D;
  color: #FFF;
  box-shadow: 0 6px 24px rgba(34,50,94,0.15);
  outline: none;
}
.cta:active {
  background: #39544A;
}

/*------------------------------
  TABLES (workshop-termine.html)
------------------------------*/
.dates-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFF;
  border-radius: 18px;
  margin-bottom: 26px;
  box-shadow: var(--shadow-organic);
  overflow: hidden;
}
.dates-table th, .dates-table td {
  padding: 16px 10px;
  border-bottom: 1px solid #E8E3D8;
  font-size: 1rem;
  text-align: left;
  color: #22325E;
}
.dates-table th {
  background: #D7EACB;
  color: #22325E;
  font-weight: 700;
}
.dates-table tr:last-child td {
  border-bottom: none;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #F7F7FA;
  border: 1px solid #B0C4B1;
  border-radius: 16px 22px 12px 18px;
  box-shadow: var(--shadow-main);
  padding: 20px 16px;
  margin-bottom: 10px;
  transition: box-shadow 0.18s, background 0.19s;
}
.faq-item h2 {
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #22325E;
  margin-bottom: 8px;
}
.faq-item p {
  color: #39544A;
  font-size: 0.98rem;
}
.faq-item:hover {
  box-shadow: 0 6px 26px rgba(173,194,152,0.19);
  background: #E8E3D8;
}

/*------------------------------
  GENERIC LISTS, SPECIAL SECTIONS
------------------------------*/
.core-values-list, .qualifications-list,
.success-highlights ul, .next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.core-values-list li {
  background: #D7EACB;
  border-radius: 10px 16px 8px 14px;
  padding: 8px 14px;
  color: #22325E;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}
.qualifications-list li {
  color: #39544A;
  font-size: 0.96rem;
}
.success-highlights ul li, .next-steps ul li {
  color: #39544A;
  padding-left: 1.1em;
  position: relative;
}
.success-highlights ul li:before, .next-steps ul li:before {
  content: '•';
  color: #7EB26D;
  position: absolute;
  left: 0;
  font-size: 1em;
}

/*------------------------------
  THANK YOU SECTION
------------------------------*/
.thankyou {
  background: linear-gradient(119deg, #E8E3D8 0%, #F7F7FA 100%);
  border-radius: 36px 20px 38px 24px;
  box-shadow: 0 6px 26px rgba(126,178,109,0.09);
  max-width: 640px;
  margin: 0 auto 70px auto;
  padding: 44px 32px;
  text-align: left;
}
.thankyou h1 {
  color: #22325E;
  margin-bottom: 22px;
}

/*----------------------
  FOOTER
----------------------*/
footer {
  background: #22325E;
  color: #FFF;
  margin-top: 48px;
  padding: 42px 0 34px 0;
  border-radius: 40px 0 0 0;
}
.footer-logo img {
  max-width: 118px;
  height: auto;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  color: #E8E3D8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #39544A;
  color: #FFF;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.94rem;
}
.footer-contact img {
  width: 20px;
  vertical-align: middle;
  margin-right: 5px;
}
.footer-contact a {
  color: #FFF;
  text-decoration: underline;
}
@media (max-width: 920px) {
  .footer-nav {gap: 8px;}
  footer .container {flex-direction: column; gap: 22px;}
  .footer-logo { margin-bottom: 18px; }
}

/*------------------------------
  CONTACT DETAILS PAGE BLOCK
------------------------------*/
.contact-details p, .contact-details a, .contact-details h2 {
  color: #22325E;
  font-size: 1rem;
}
.contact-details img {
  width: 22px;
  margin-right: 6px;
  vertical-align: middle;
}
.map-embed {
  margin: 18px 0 24px 0;
  background: #D7EACB;
  padding: 16px 14px;
  border-radius: 16px;
  color: #22325E;
  font-size: 0.99rem;
}

/*------------------------------
  SECTION WRAPPERS ALIGNMENT
------------------------------*/
.text-section, .workshop-overview, .legal-text, .contact-prompt {
  margin-bottom: 20px;
}
.text-section h2 {
  margin-bottom: 8px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.workshop-overview ul {
  margin: 12px 0 14px 10px;
}

/*--------------------------------------------
   FLEXBOX UTILITY CLASSES (CRITICAL CLASSES)
--------------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  background: #FFF;
  box-shadow: var(--shadow-main);
  padding: 22px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .content-grid { flex-direction: column; gap: 18px; }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*--------------------------
   RESPONSIVE BREAKPOINTS
--------------------------*/
@media (max-width: 720px) {
  .flex-between, .footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  header .container {gap: 10px;}
  .hero { padding: 38px 0; }
}
@media (max-width: 480px) {
  .section, .hero, .thankyou {
    padding: 12px 2px;
    border-radius: 14px;
  }
  .thankyou { padding: 18px 6px; }
  .hero h1, .section h1 {font-size: 1.08rem;}
  .footer-logo img {max-width: 80px;}
}

/*--------------------------
   BUTTONS (GENERAL)
--------------------------*/
button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 600;
  border-radius: 16px;
  border: none;
  background: var(--color-secondary);
  color: #FFF;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.16s;
}
button:focus, .btn:focus {
  outline: 2px dashed #42694D;
  outline-offset: 2px;
}
button:active, .btn:active {
  background: #42694D;
}

/*-----------------------------
   COOKIE CONSENT BANNER/MODAL
-----------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #E8E3D8;
  color: #22325E;
  box-shadow: 0 -2px 18px rgba(34,50,94,0.14);
  z-index: 5000;
  padding: 22px 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 1.01rem;
  transition: transform 0.35s cubic-bezier(.62,.14,.29,.99);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner button, .cookie-banner .cta {
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
}
.cookie-banner .accept-all {
  background: #7EB26D;
  color: #FFF;
}
.cookie-banner .reject-all {
  background: #B7A16B;
  color: #22325E;
}
.cookie-banner .cookie-settings {
  background: #F7F7FA;
  color: #22325E;
  border: 1px solid #B0C4B1;
}
.cookie-banner button:focus {
  outline: 2px dashed #42694D;
}
/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(32,59,37,0.25);
  z-index: 5010;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.cookie-modal {
  max-width: 420px;
  background: #FFF;
  border-radius: 22px;
  box-shadow: 0 12px 46px rgba(126,178,109,0.24);
  padding: 32px 24px 24px 24px;
  z-index: 5020;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: cookiepop 0.24s cubic-bezier(.62,.14,.29,.99);
}
@keyframes cookiepop {
  from { transform: scale(0.95) translateY(28px); opacity: 0.3; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
  color: #22325E;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #E8E3D8;
  font-size: 0.99rem;
}
.cookie-category-row:last-child {
  border-bottom: none;
}
.cookie-toggle {
  width: 46px;
  height: 24px;
  background: #B0C4B1;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.18s;
}
.cookie-toggle[data-checked="true"] {
  background: #7EB26D;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: #FFF;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-toggle[data-checked="true"] .cookie-toggle-slider {
  transform: translateX(22px);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .close-modal {
  background: #B7A16B;
  color: #22325E;
  padding: 8px 18px;
  border-radius: 9px;
  border: none;
}

/*----------------------------------
   MICRO-INTERACTIONS & ANIMATION
----------------------------------*/
a, button, .cta, .service-card, .testimonial-card, .faq-item {
  transition: box-shadow 0.16s, background 0.18s, color 0.15s, transform 0.17s;
}
button:active, .cta:active { transform: scale(0.98); }

/* Easily noticeable focus for accessibility */
a:focus, .cta:focus, button:focus, .main-nav a:focus, .mobile-nav a:focus, .footer-nav a:focus {
  outline: 2px solid #7EB26D;
  outline-offset: 2px;
}

/* Z-INDEX CORRECTNESS IN INTERACTIONS */
.mobile-menu,
.cookie-banner,
.cookie-modal-backdrop {
  z-index: 2000;
}

/*--------------------------------
 End: All sections comply with
    - Flexbox only layout
    - Nature Organic design
    - Brand requirements
--------------------------------*/
