/* =====================================================
   1. 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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F6F8FA;
  color: #1A2930;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 0; /* enough for cookie banner */
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #1A2930;
  background: transparent;
  transition: color 0.2s;
}
a:focus, a:hover {
  outline: none;
  color: #45B39D;
}
img {
  max-width: 100%;
  display: block;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
button {
  cursor: pointer;
  background: transparent;
  border: none;
}

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

/* =====================================================
   2. ROOT VARIABLES FOR BRAND COLORS
====================================================== */
:root {
  --color-primary: #1A2930;
  --color-secondary: #45B39D;
  --color-accent: #F6F8FA;
  --color-white: #fff;
  --color-light: #F6F8FA;
  --color-dark: #1A2930;
  --color-mid: #445761;
  --color-border: #E3E9ED;
  --shadow-card: 0 4px 12px rgba(26,41,48,0.08), 0 1.5px 3px rgba(26,41,48,0.03);
  --shadow-hover: 0 6px 20px rgba(26,41,48,0.14);
  --transition-speed: 0.2s;
  --radius-main: 12px;
  --radius-btn: 24px;
  --header-height: 76px;
}

/* =====================================================
   3. TYPOGRAPHY
====================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-dark);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
h1 {
  font-size: 2.375rem; /* 38px */
  letter-spacing: -1px;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.625rem; /* 26px */
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem; /* 20px */
  font-weight: 600;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.125rem;
  font-weight: 500;
}
p, li, label, span, input, textarea, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-mid);
  line-height: 1.65;
  font-weight: 400;
}
p {
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--color-secondary);
  margin-bottom: 22px;
}
strong {
  color: var(--color-dark);
  font-weight: 600;
}

/* =====================================================
   4. GENERAL LAYOUT & CONTAINERS
====================================================== */
.container {
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.text-section {
  padding: 0 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Utility Classes for Flex Layouts */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-main);
  margin-bottom: 20px;
  padding: 28px 24px;
  position: relative;
  transition: box-shadow var(--transition-speed);
}
.card:hover {
  box-shadow: var(--shadow-hover);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-main);
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition-speed), border-color var(--transition-speed);
  flex-direction: column;
}
.testimonial-card p {
  color: var(--color-dark);
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card span {
  color: var(--color-mid);
  font-size: 0.975rem;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--color-secondary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature Grid (on homepage) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
  margin-bottom: 12px;
}
.feature {
  flex: 1 1 215px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--color-white);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  padding: 25px 20px;
  min-width: 220px;
  gap: 12px;
  transition: box-shadow var(--transition-speed);
}
.feature img {
  width: 36px;
  height: 36px;
  margin-bottom: 7px;
}
.feature h3 {
  margin-bottom: 6px;
  color: var(--color-primary);
}
.feature:hover {
  box-shadow: var(--shadow-hover);
}

/* Cookie Consent Classes for later - so they don't leak in visuals elsewhere */

/* =====================================================
   5. HEADER & NAVIGATION
====================================================== */
header {
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(26,41,48,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  min-height: var(--header-height);
  padding: 0 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  padding: 6px 2px;
  transition: color var(--transition-speed);
  border-radius: 4px;
  letter-spacing: 0.01em;
}
.main-nav a.img {
  padding: 0;
}
.main-nav a.cta-btn {
  background: var(--color-secondary);
  color: #fff;
  padding: 9px 22px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  margin-left: 12px;
  transition: background var(--transition-speed), box-shadow var(--transition-speed);
  box-shadow: 0 2px 12px rgba(69,179,157,0.10);
}
.main-nav a.cta-btn:hover,
.main-nav a.cta-btn:focus {
  background: #32A58C;
  box-shadow: 0 4px 18px rgba(69,179,157,0.16);
}
.main-nav a:focus,
.main-nav a:hover:not(.cta-btn) {
  color: var(--color-secondary);
  background: var(--color-accent);
}
.main-nav img {
  height: 38px;
  padding-right: 10px;
}

/* ----------------------------------
   Hamburger Button (Mobile)
----------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  border-radius: 50%;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-primary);
  box-shadow: 0 1px 3px rgba(26,41,48,0.04);
  border: none;
  transition: background var(--transition-speed);
  z-index: 201;
  margin-left: auto;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-secondary);
  color: #fff;
}

/* ----------------------------------
   Mobile Menu Overlay
----------------------------------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: var(--color-white);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  min-width: 0;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.26s cubic-bezier(.55 ,.11, .19, .97);
  box-shadow: 0 8px 24px rgba(26,41,48,0.10);
  padding: 35px 28px 15px 28px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-bottom: 18px;
  background: var(--color-accent);
  color: var(--color-primary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-speed);
  border: none;
  z-index: 202;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  color: var(--color-primary);
  font-weight: 500;
  padding: 13px 0 7px 0;
  border-radius: 8px;
  transition: color var(--transition-speed), background var(--transition-speed);
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
}

/* Hide main nav on mobile */
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Show main nav on desktop, hide burger */
@media (min-width: 981px) {
  .main-nav {
    display: flex;
  }
  .mobile-menu,
  .mobile-menu-toggle {
    display: none;
  }
}

/* =====================================================
   6. FOOTER
====================================================== */
footer {
  width: 100%;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 30px 0 28px 0;
  margin-top: 60px;
}
footer .container {
  padding: 0 18px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 0;
}
footer nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-mid);
  font-weight: 500;
  padding: 2px 0;
  opacity: 0.76;
  transition: color var(--transition-speed), opacity var(--transition-speed);
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-secondary);
  opacity: 1;
}
.brand-contact {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 15px;
  font-size: 0.98rem;
  color: var(--color-mid);
  opacity: 0.82;
}
.brand-contact img {
  height: 38px;
  width: auto;
  margin-bottom: 0;
}

@media (max-width: 730px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .brand-contact {
    align-items: flex-start;
  }
}

/* =====================================================
   7. BUTTONS & CTA
====================================================== */
.cta-btn {
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 13px 36px;
  margin-top: 5px;
  box-shadow: 0 1.5px 12px rgba(69,179,157,0.11);
  letter-spacing: 0.01em;
  transition: background var(--transition-speed), box-shadow var(--transition-speed), transform 0.09s;
  display: inline-block;
  outline: none;
  min-width: 156px;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #32A58C;
  box-shadow: 0 4px 24px rgba(69,179,157,0.15);
  transform: translateY(-2px) scale(1.025);
}
.mini-cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  color: var(--color-secondary);
  background: none;
  border: 1px solid var(--color-secondary);
  border-radius: var(--radius-btn);
  padding: 7px 18px;
  margin-top: 8px;
  transition: color var(--transition-speed), border-color var(--transition-speed), background var(--transition-speed);
  display: inline-block;
}
.mini-cta:hover, .mini-cta:focus {
  background: var(--color-secondary);
  color: #fff;
  border-color: #32A58C;
}
button[type="submit"] {
  background: var(--color-secondary);
  color: #fff;
  border-radius: var(--radius-btn);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 11px 28px;
  transition: background var(--transition-speed), box-shadow var(--transition-speed), transform 0.1s;
  box-shadow: 0 1px 8px rgba(69,179,157,0.09);
  border: none;
  margin-top: 7px;
}
button[type="submit"]:hover, button[type="submit"]:focus {
  background: #32A58C;
  box-shadow: 0 4px 22px rgba(69,179,157,0.16);
  transform: translateY(-2px) scale(1.01);
}

/* =====================================================
   8. FORMS & INPUTS
====================================================== */
form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 15px;
}
label {
  margin-bottom: 5px;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
}
input[type="email"],
input[type="text"],
input[type="password"],
textarea {
  background: var(--color-accent);
  color: var(--color-dark);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-main);
  padding: 13px 16px;
  font-size: 1.07rem;
  margin-bottom: 6px;
  margin-top: 5px;
  transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
  box-shadow: none;
}
input[type="email"]:focus,
input[type="text"]:focus,
textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 1px 6px rgba(69,179,157,0.08);
  outline: none;
}
@media (max-width: 540px) {
  input[type="email"], input[type="text"], textarea {
    font-size: 1rem;
    padding: 12px;
  }
}

/* Form notes */
form span {
  color: var(--color-mid);
  font-size: 0.96rem;
  margin-top: 2px;
  opacity: 0.85;
}
form a {
  color: var(--color-secondary);
  text-decoration: underline;
  font-size: 0.96rem;
}
form a:focus, form a:hover {
  color: #32A58C;
}

/* =====================================================
   9. LISTS, OL, UL STYLES
====================================================== */
ul, ol {
  margin-bottom: 14px;
  padding-left: 1.3em;
}
ul li,
ol li {
  margin-bottom: 7px;
  color: var(--color-mid);
}
ul li::marker, ol li::marker {
  color: var(--color-secondary);
  font-size: 1.1em;
}

/* For text sections and legal pages */
.text-section ul, .text-section ol {
  margin-bottom: 10px;
  padding-left: 1.1em;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 5px;
  font-size: 0.98rem;
}

/* =====================================================
   10. RESPONSIVE DESIGN
====================================================== */
@media (max-width: 980px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .feature-grid {
    gap: 17px;
  }
  .feature {
    min-width: 165px;
    padding: 18px 10px;
  }
  .content-wrapper, .text-section {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .content-grid, .feature-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 38px;
  }
  h1 {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.18rem;
    margin-bottom: 10px;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 10px 18px;
    min-width: 110px;
  }
}
@media (max-width: 540px) {
  .container {
    max-width: 99vw;
    padding: 0 4px;
  }
  .card {
    padding: 17px 8px;
  }
  .feature {
    padding: 13px 7px;
    min-width: 115px;
    font-size: 0.98rem;
  }
}
@media (max-width: 420px) {
  .testimonial-card {
    padding: 14px 4px;
  }
}

/* =====================================================
   11. MICROINTERACTIONS & ANIMATIONS
====================================================== */
.card, .feature, .cta-btn, .mini-cta, .testimonial-card, .main-nav a, .mobile-nav a {
  transition: box-shadow var(--transition-speed), color var(--transition-speed), background var(--transition-speed), border-color var(--transition-speed), transform var(--transition-speed);
}

/* Fade in for mobile menu, testimonials, and cookie banner */
.fade-in {
  animation: fadeInEntry 0.35s cubic-bezier(.23,.79,.36,1) both;
}
@keyframes fadeInEntry {
  0% { opacity:0; transform:translateY(16px); }
  100% { opacity:1; transform:translateY(0); }
}

/* =====================================================
   12. COOKIE CONSENT BANNER & MODAL
====================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  border-top: 1.5px solid var(--color-border);
  box-shadow: 0 -2px 26px rgba(26,41,48,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 16px 14px 16px;
  gap: 12px;
  z-index: 3000;
  font-size: 1rem;
  opacity: 1;
  transition: bottom 0.26s, opacity 0.23s;
  width: 100vw;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  bottom: -300px;
}
.cookie-banner p {
  color: var(--color-mid);
  text-align: center;
  margin-bottom: 7px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 9px 20px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--color-border);
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 600;
  box-shadow: none;
  transition: background var(--transition-speed), color var(--transition-speed), border-color var(--transition-speed);
}
.cookie-banner button.cookie-accept {
  background: var(--color-secondary);
  border: none;
  color: #fff;
}
.cookie-banner button.cookie-accept:hover, .cookie-banner button.cookie-accept:focus {
  background: #32A58C;
}
.cookie-banner button.cookie-reject {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
}
.cookie-banner button.cookie-reject:hover, .cookie-banner button.cookie-reject:focus {
  background: var(--color-white);
  border-color: var(--color-secondary);
}
.cookie-banner button.cookie-settings {
  background: none;
  border: 1.5px solid var(--color-secondary);
  color: var(--color-secondary);
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: var(--color-accent);
  border-color: #32A58C;
  color: #32A58C;
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 3200;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(26,41,48,0.25);
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: var(--color-white);
  border-radius: var(--radius-main);
  box-shadow: 0 14px 48px rgba(26,41,48,0.14);
  min-width: 320px;
  max-width: 98vw;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  animation: fadeInEntry 0.29s ease;
}
.cookie-modal h3 {
  margin-bottom: 7px;
  color: var(--color-secondary);
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
}
.cookie-modal-category label {
  font-size: 1.02rem;
  margin-bottom: 0;
  color: var(--color-primary);
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: var(--color-secondary);
  width: 18px;
  height: 18px;
}
.cookie-modal-category input[disabled] {
  filter: grayscale(1);
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--color-accent);
  border-radius: 50%;
  border: none;
  font-size: 1.2rem;
  color: var(--color-secondary);
  padding: 7px 11px;
  transition: background var(--transition-speed);
}
.cookie-modal .cookie-modal-close:hover {
  background: var(--color-secondary);
  color: #fff;
}

@media (max-width: 540px) {
  .cookie-modal {
    padding: 20px 10px 14px 14px;
    min-width: 0;
    max-width: 98vw;
  }
}

/* =====================================================
   13. FEEDBACK MESSAGES AND THANK YOU PAGES
====================================================== */
.text-section {
  margin-top: 12px;
  margin-bottom: 18px;
  padding: 0 0;
}
.text-section h1,
.text-section h2,
.text-section h3 {
  margin-top: 6px;
  margin-bottom: 13px;
}
.text-section p {
  margin-bottom: 10px;
}

/* =====================================================
   14. SPACING ENFORCEMENT (critical)
====================================================== */
section + section, .container + .container, .testimonial-card + .testimonial-card, .feature + .feature,
.card + .card, .card-container > *, .feature-grid > *, .content-grid > *, .text-image-section > * {
  margin-top: 0;
}

/* Enforce spacing between cards and sections (20px or more) */
.card,
.feature,
.testimonial-card,
.section, section {
  margin-bottom: 20px;
}
.feature-grid, .content-grid, .card-container, .text-image-section {
  gap: 20px;
}
@media (max-width:768px){
  .section, section { padding: 25px 4px; margin-bottom:28px; }
  .card, .feature, .testimonial-card { margin-bottom:15px; }
}

/* Prevent overlapping: force min margin for all key blocks */
.main-nav a + a,
footer nav a + a,
footer .brand-contact > * + * {
  margin-left: 20px;
}
@media (max-width:768px){
  .main-nav a + a,
  footer nav a + a,
  footer .brand-contact > * + * {
    margin-left: 10px;
  }
}

/* =====================================================
   15. MISCELLANEOUS
====================================================== */
::-webkit-input-placeholder { color: #B7C7CF; opacity: 1; }
::-moz-placeholder { color: #B7C7CF; opacity: 1; }
:-ms-input-placeholder { color: #B7C7CF; opacity: 1; }
::placeholder { color: #B7C7CF; opacity: 1; }

hr {
  border: none;
  border-top: 1.5px solid var(--color-border);
  margin: 30px 0 26px 0;
}

/* Remove tap highlight on mobile */
html {
  -webkit-tap-highlight-color: rgba(26,41,48,0.03);
}

/* Remove scrollbars for overlays */
body.menu-open, body.cookie-modal-open {
  overflow: hidden;
}


/* END OF CSS */
