/* ========================================
   CSS RESET & BASE STYLES
======================================== */
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;
  vertical-align: baseline;
  background: transparent;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-size: 16px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #181C20;
  color: #EEE; /* Near white for dark sections */
  min-height: 100vh;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: border-box;
}
a {
  color: #B0C4B1;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F5F5F2;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  color: #F5F5F2;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #B0C4B1;
}
h4, h5, h6 {
  font-size: 1.125rem;
  color: #B0C4B1;
}
p, li, blockquote, address, time {
  font-size: 1rem;
  line-height: 1.6;
  color: #F5F5F2;
  margin-bottom: 12px;
}
strong {
  color: #B0C4B1;
  font-weight: 700;
}
blockquote {
  font-style: italic;
  border-left: 4px solid #B0C4B1;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #24465B;
  background: #F5F5F2;
}

/* ========================================
   BRAND COLORS as CUSTOM PROPERTIES
======================================== */
:root {
  --brand-primary: #24465B;
  --brand-secondary: #B0C4B1;
  --brand-accent: #F5F5F2;
  --brand-dark: #181C20;
  --brand-metal: #6B798A;
  --brand-grey: #22252A;
  --brand-testimonial-bg: #F5F5F2;
  --brand-testimonial-text: #24465B;
  --shadow-card: 0 4px 24px 0 rgba(36, 70, 91, 0.10), 0 1.5px 3px 0 rgba(37,50,60,0.08);
  --radius-card: 10px;
  --gap-lg: 32px;
  --gap-md: 24px;
  --gap: 20px;
}

/* ========================================
   LAYOUT: CONTAINER & SECTIONS
======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
header {
  background: var(--brand-dark);
  box-shadow: 0 2px 8px 0 rgba(36,70,91,0.10);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
header img {
  max-height: 48px;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  gap: var(--gap);
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--brand-accent);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cta-button {
  font-family: 'Montserrat', sans-serif;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: 0 2px 10px 0 rgba(176,196,177,0.14);
  border: 2px solid var(--brand-metal);
  margin-left: 20px;
  cursor: pointer;
  display: inline-block;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
.cta-button:hover, .cta-button:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
  box-shadow: 0 4px 16px 0 rgba(176,196,177,0.22);
}
.mobile-menu-toggle {
  display: none;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  margin-left: 18px;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(36,70,91,0.16);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  z-index: 1500;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-metal);
  color: #fff;
}
/* Hide .mobile-menu by default */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(24,28,32,0.97);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px 28px 28px;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.6,.2,.4,1), opacity 0.25s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--brand-metal);
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.5rem;
  margin-bottom: 15px;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(36,70,91,0.19);
  cursor: pointer;
  transition: background 0.17s;
  z-index: 2200;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 12px 10px;
  border-radius: 10px;
  color: #fff;
  background: none;
  text-transform: uppercase;
  transition: background 0.18s, color 0.13s;
  width: 100%;
  display: inline-block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
  }
  .cta-button {
    margin-left: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  header img {
    max-height: 39px;
  }
}

/* ========================================
   HERO SECTIONS
======================================== */
.hero {
  background: linear-gradient(89deg, var(--brand-dark) 60%, var(--brand-primary) 100%);
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.hero .container {
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  max-width: 570px;
  gap: 18px;
  align-items: flex-start;
}
.hero h1 {
  color: var(--brand-secondary);
}
.hero p {
  color: var(--brand-accent);
  font-size: 1.225rem;
}
@media (max-width: 550px) {
  .hero h1 {
    font-size: 1.45rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* ========================================
   FEATURES & CARDS
======================================== */
.features {
  background: var(--brand-grey);
  border-top: 1px solid #37414A;
  border-bottom: 1px solid #313942;
  margin-bottom: 60px;
  padding: 40px 0;
}
.features .content-wrapper {
  gap: 24px;
}
.feature-grid,
.feature-list,
ul.features,
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
  margin-bottom: 0;
}
.feature-grid li, .feature-list li, .features ul li {
  background: var(--brand-dark);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 1 280px;
  max-width: 305px;
  min-width: 210px;
  border: 1.5px solid var(--brand-metal);
  transition: box-shadow 0.18s, border-color 0.16s, background 0.18s;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid li:hover, .feature-list li:hover {
  box-shadow: 0 6px 34px 0 rgba(36,70,91,0.25);
  border-color: var(--brand-secondary);
  background: #222d39;
}
.feature-grid img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: grayscale(30%) contrast(101%);
}

@media (max-width: 800px) {
  .feature-grid, .feature-list, ul.features, .features ul {
    gap: 18px;
  }
  .feature-grid li, .feature-list li {
    flex: 1 1 175px;
    min-width: 160px;
    max-width: 100%;
    padding: 21px 10px 15px 17px;
  }
  .features .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 570px) {
  .feature-grid, .feature-list, ul.features, .features ul {
    flex-direction: column;
    gap: 14px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-grey);
  border: 1.2px solid var(--brand-metal);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  padding: 26px 22px;
  transition: box-shadow 0.16s, border-color 0.15s;
}
.card:hover {
  box-shadow: 0 6px 30px 0 rgba(36,70,91,0.17) ;
  border-color: var(--brand-secondary);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* ========================================
   SERVICE LISTS/ITEMS
======================================== */
.service-list, .service-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  margin: 25px 0 30px 0;
}
.service-list li,
.service-item {
  background: var(--brand-dark);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1.25px solid var(--brand-metal);
  padding: 22px 18px 17px 18px;
  flex: 1 1 310px;
  min-width: 180px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, border-color 0.2s, background 0.16s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.service-list li:hover,
.service-item:hover {
  background: #232a33;
  box-shadow: 0 6px 36px 0 rgba(36,70,91,0.22);
  border-color: var(--brand-secondary);
}
.service-item strong {
  color: var(--brand-secondary);
}
.service-item h2 {
  font-size: 1.3rem;
  color: var(--brand-secondary);
  margin-bottom: 8px;
}
.features .service-item {
  background: var(--brand-dark);
}

@media (max-width: 700px) {
  .service-list, .service-item-list {
    flex-direction: column;
    gap: 10px;
  }
  .service-list li, .service-item {
    min-width: 0;
    width: 100%;
    padding: 16px 13px 12px 14px;
  }
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials {
  background: var(--brand-dark);
  padding: 56px 0 56px 0;
}
.testimonials .content-wrapper {
  gap: 30px;
  align-items: flex-start;
}
.testimonial-card {
  background: var(--brand-testimonial-bg);
  color: var(--brand-testimonial-text);
  border-radius: var(--radius-card);
  box-shadow: 0 3px 30px 0 rgba(36,70,91,0.17);
  border: 1px solid var(--brand-metal);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.18s;
  max-width: 530px;
}
.testimonial-card:hover {
  box-shadow: 0 7px 40px 0 rgba(36,70,91,0.24);
  border-color: var(--brand-secondary);
}
.testimonial-card blockquote {
  color: var(--brand-primary);
  background: none;
  border-left: 3px solid var(--brand-secondary);
  font-size: 1.12rem;
  margin-bottom: 3px;
}
.testimonial-card footer {
  color: var(--brand-metal);
  font-size: 1rem;
  font-style: normal;
  align-self: flex-end;
}

@media (max-width: 700px) {
  .testimonials {
    padding: 35px 0;
  }
  .testimonials .content-wrapper {
    gap: 18px;
  }
  .testimonial-card {
    padding: 13px 12px;
    gap: 12px;
    max-width: 100%;
  }
}

/* ========================================
   CONTACT DETAILS AND MAP
======================================== */
.contact .contact-details {
  background: var(--brand-grey);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1.2px solid var(--brand-metal);
  padding: 20px 24px 15px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.location-map {
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 11px 0 rgba(36,70,91,0.12);
}
.location-map img {
  display: block;
  width: 100%;
  max-width: 410px;
  margin: 0 auto;
}

/* ========================================
   LEGAL / POLICY / TEXT SECTIONS
======================================== */
.legal, .faqs, .about, .thank-you {
  background: var(--brand-grey);
  padding: 36px 0;
}
.legal h1, .faqs h1, .about h1, .thank-you h1 {
  color: var(--brand-secondary);
}
.text-section {
  background: none;
  color: inherit;
  padding: 8px 2px;
}
.text-section h2 {
  color: var(--brand-metal);
  margin-top: 28px;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
.text-section p, .text-section li {
  color: var(--brand-accent);
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.6;
}
.text-section ul {
  padding-left: 16px;
  margin-top: 10px;
}
.text-section ul li {
  list-style-type: disc;
  margin-bottom: 7px;
}

/* ========================================
   FOOTER
======================================== */
footer {
  background: var(--brand-primary);
  border-top: 2px solid var(--brand-metal);
  color: var(--brand-accent);
  padding: 32px 0;
}
footer .container {
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-direction: column;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 12px;
  filter: grayscale(15%) drop-shadow(1px 1px 5px #1c2226);
}
.footer-nav {
  display: flex;
  gap: 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96rem;
  color: var(--brand-secondary);
}
.footer-nav a {
  color: var(--brand-accent);
  text-decoration: underline;
  padding: 3px 4px;
  border-radius: 5px;
  transition: background 0.17s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.footer-credits {
  color: var(--brand-accent);
  font-size: 0.88rem;
  margin-top: 10px;
  text-align: center;
}

/* ========================================
   COOKIE CONSENT BANNER & MODAL
======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100vw;
  background: #21262A;
  color: #ECEDED;
  box-shadow: 0 -2px 18px 0 rgba(36,70,91,0.13), 0 -0.5px 3px 0 #1b2227;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding: 22px 16px 18px 16px;
  font-size: 1rem;
  transition: transform 0.34s;
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner__text {
  flex: 1 1 320px;
  max-width: 700px;
  color: #D4DEDA;
}
.cookie-banner__buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  padding: 10px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  border-radius: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border: 2px solid var(--brand-metal);
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.19s, color 0.17s, border 0.13s;
}
.cookie-btn.accept {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cookie-btn.reject {
  background: #F5B4B4;
  color: #231D1D;
  border-color: #C27979;
}
.cookie-btn.settings {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-metal);
  color: #fff;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 24px 8px 16px 8px;
    font-size: .97rem;
  }
  .cookie-banner__buttons {
    flex-direction: row;
    gap: 6px;
  }
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;left: 0;
  width:100vw;height:100vh;
  background: rgba(34,38,41,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3300;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__content {
  background: #21262A;
  color: #F5F5F2;
  border-radius: 14px;
  padding: 36px 22px 22px 22px;
  min-width: 320px;
  max-width: 97vw;
  box-shadow: 0 7px 36px 0 rgba(36,70,91,0.16);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 13px;right: 16px;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: 50%;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1.15rem;
  transition: background 0.17s;
  z-index: 3400;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: var(--brand-metal);
  color: #fff;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--brand-secondary);
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.cookie-category label {
  color: var(--brand-accent);
  font-size: 1rem;
}
.cookie-category .description {
  color: #BBBBB9;
  font-size: 0.98rem;
}
.cookie-category.essential label {
  color: #8ADF90;
  font-weight: 700;
}
.cookie-modal__actions {
  display: flex;
  gap: 16px;
}
@media (max-width: 490px) {
  .cookie-modal__content {
    min-width: unset;
    padding: 20px 6px 15px 10px;
    gap: 10px;
  }
}

/* ========================================
   FLEXBOX UTILITY CLASSES & REQUIRED PATTERNS
======================================== */
.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: center;
    gap: 16px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CRITICAL MARGINS AND SPACING BETWEEN COMPONENTS */
main section, .section, .content-wrapper, .card, .card-container, .feature-grid li, .service-list li, .service-item, .testimonial-card, .footer-logo, .footer-nav, .contact-details {
  margin-bottom: 20px;
}
main > section:last-child, .content-wrapper:last-child,
.card-container:last-child, .feature-grid li:last-child, .service-list li:last-child, .testimonial-card:last-child {
  margin-bottom: 0;
}

/* ========================================
   MICRO-INTERACTIONS & TRANSITIONS
======================================== */
a, .cta-button, .cookie-btn, .service-item, .feature-grid li, .testimonial-card, .main-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.13s, box-shadow 0.18s, border-color 0.13s;
}

/* ========================================
   RESPONSIVE LAYOUT
======================================== */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  .section, .features, .legal, .about, .thank-you { padding: 21px 4px; }
  .footer-logo img { height: 30px; }
}
@media(max-width:500px) {
  body { font-size: 15px; }
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.1rem; }
  p, li { font-size: .97rem; }
}

/* ========================================
   SCROLLBAR STYLES (MODERN FEEL)
======================================== */
::-webkit-scrollbar {
  width: 10px;
  background: var(--brand-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-metal);
  border-radius: 6px;
}

/* ========================================
   ADDITIONAL: ACCESSIBILITY & HOVER STATES
======================================== */
a:focus, button:focus, .cta-button:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}

/* Hide visually but accessible (for labels etc, not in initial HTML but best practice) */
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; border: 0; padding: 0; overflow: hidden; clip: rect(0,0,0,0); }

/* ========================================
   ENSURE OVERLAPPING IS PREVENTED
======================================== */
.card, .testimonial-card, .service-item, .feature-grid li, .container, .content-wrapper, .section {
  z-index: 1;
}
.mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 3300;
}

/* ========================================
   END OF STYLES
======================================== */
