/* 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: #FBFAFD;
  color: #2D3453;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* BASE TYPOGRAPHY */
:root {
  --primary: #163D61;
  --secondary: #FFFFFF;
  --accent: #CC5500;
  --accent-light: #FDE6D0;
  --pastel-rose: #F7E5E2;
  --pastel-blue: #DBEAFE;
  --pastel-mint: #D2FADB;
  --pastel-yellow: #FFF9DB;
  --pastel-lavender: #ECE3FC;
  --pastel-grey: #E7E9EC;
  --header-shadow: 0 4px 32px rgba(73, 69, 101, 0.07);
  --card-shadow: 0 2px 12px rgba(82,99,150, 0.08);
  --transition: 0.22s cubic-bezier(0.34, 1.3, 0.64, 1);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow-xl: 0 12px 44px rgba(82,99,150, 0.10);
}

body {
  font-size: 16px;
  background: linear-gradient(135deg, #F7E5E2 0%, #FDE6D0 100%);
  min-height: 100vh;
}
main {
  flex: 1 0 auto;
  width: 100%;
  margin-bottom: 60px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.012em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.subheadline {
  color: var(--primary);
  font-size: 1.28rem;
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: 0.015em;
  line-height: 1.6;
}
.text-section p,
p, li {
  color: #48486b;
  font-size: 1.08rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 1em;
  line-height: 1.72;
  letter-spacing: 0.002em;
}
.text-section ul,
section ul {
  padding-left: 24px;
}
ul li {
  margin-bottom: 0.75em;
  list-style: disc;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1050px;
  padding-left: 18px;
  padding-right: 18px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 992px) {
  .content-wrapper {
    flex-direction: row;
    gap: 32px;
    justify-content: space-between;
  }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER / NAVIGATION */
header {
  background: rgba(253, 230, 208, 0.98);
  box-shadow: var(--header-shadow);
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 14px;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 18px;
}
.main-nav a {
  color: var(--primary);
  padding: 6px 10px;
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: background 0.16s, color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent-light);
  color: var(--accent);
}
.btn-accent {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: var(--radius-md);
  padding: 11px 28px;
  box-shadow: 0 2px 24px rgba(210, 90, 0, 0.08);
  margin-left: 16px;
  letter-spacing: 0.01em;
  transition: background var(--transition), color 0.19s, box-shadow 0.16s;
  outline: none;
  border: none;
  cursor: pointer;
}
.btn-accent:hover, .btn-accent:focus {
  background: #FF7000;
  color: var(--primary);
  box-shadow: 0 4px 32px rgba(210, 90, 0, 0.12);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: transparent;
  color: var(--accent);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.14s;
  outline: none;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--accent-light);
  color: var(--primary);
}
/* See below for mobile menu itself */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(248, 249, 253, 0.98);
  z-index: 99;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.32s var(--transition);
  box-shadow: var(--shadow-xl);
  pointer-events: none;
  opacity: 0;
  /* Will be .is-open when open */
}
.mobile-menu.is-open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  color: var(--primary);
  margin: 18px 24px 12px 0;
  background: transparent;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent-light);
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 18px 30px;
  margin-top: 0;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.35rem;
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  border-radius: var(--radius-md);
  padding: 12px 22px;
  transition: background 0.22s, color 0.19s;
  background: transparent;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent-light);
  color: var(--accent);
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .btn-accent {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION */
.hero {
  position: relative;
  padding: 70px 0 50px 0;
  background: linear-gradient(122deg, #FFF9DB 10%, #DBEAFE 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 2px 24px rgba(27, 80, 157, 0.12);
  min-height: 320px;
  margin-bottom: 45px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.2rem;
}
@media (min-width: 700px) {
  .hero .container {
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    gap: 48px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
}

/* SECTION LAYOUT UTILITIES */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--pastel-lavender);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  padding: 24px 22px;
  flex: 1 1 280px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}
.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;
    gap: 18px;
    align-items: flex-start;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--pastel-blue);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  padding: 26px 22px 20px 22px;
  flex: 1 1 220px;
  min-width: 0;
  transition: box-shadow 0.19s, background 0.17s;
}
.feature-item img {
  width: 40px;
  height: 40px;
}
.feature-item h3 {
  margin-bottom: 3px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 34px rgba(61,130,246,0.14);
  background: var(--pastel-mint);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 992px) {
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 640px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item {
    width: 100%;
  }
}

.service-list li {
  font-size: 1.1rem;
  padding: 12px 0 10px 0;
  border-bottom: 1px solid #F6EAFE;
  color: #304159;
}
.service-list li:last-child {
  border-bottom: none;
}

.cta, .cta section {
  background: var(--pastel-mint);
  border-radius: var(--radius-md);
  padding: 36px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--card-shadow);
  margin-bottom: 38px;
}
.cta h2 {
  margin-bottom: 14px;
  color: var(--primary);
}

/* TESTIMONIALS */
.testimonials {
  margin-bottom: 48px;
}
.testimonials .content-wrapper {
  flex-direction: column;
  gap: 30px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background: var(--pastel-rose);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  min-height: 96px;
  position: relative;
  color: #203040;
  margin-bottom: 12px;
  font-size: 1.08rem;
  flex: 1 1 260px;
  transition: box-shadow 0.14s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 32px rgba(245,68,85,0.12);
  background: var(--pastel-yellow);
  color: var(--primary);
}
.testimonial-meta {
  font-size: 0.98rem;
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  color: #8a7268;
  margin-left: auto;
  font-style: italic;
  letter-spacing: 0.001em;
}

/* PRICING TABLES */
.pricing-table {
  width: 100%;
  margin: 24px 0 36px 0;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: var(--card-shadow);
  background: var(--pastel-lavender);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.pricing-table th,
.pricing-table td {
  padding: 19px 16px;
  text-align: left;
  font-size: 1.02rem;
  letter-spacing: 0.003em;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--primary);
}
.pricing-table th {
  background: var(--accent-light);
  color: var(--primary);
  font-weight: 600;
}
.pricing-table tr:nth-child(even) td {
  background: #F3F6FA;
}
.price-breakdown {
  background: var(--pastel-mint);
  border-radius: var(--radius-sm);
  padding: 22px 14px 18px 14px;
  font-size: 1.02rem;
  box-shadow: var(--card-shadow);
  margin-top: 20px;
}

/* FAQ LISTS */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.faq-item {
  background: var(--pastel-lavender);
  padding: 20px 20px 18px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--card-shadow);
  color: var(--primary);
  margin-bottom: 8px;
  transition: box-shadow 0.13s, background 0.14s;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 4px 18px rgba(80,76,143,0.10);
  background: var(--pastel-blue);
}
.faq-item h2, .faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 9px;
}
.faq-item p {
  color: #48486b;
  font-size: 1.04rem;
  margin-bottom: 0.15em;
}
.faq-item a {
  color: var(--accent);
  border-bottom: 1px dotted var(--accent);
  padding-bottom: 1px;
  transition: color 0.18s, border-bottom-color 0.13s;
}
.faq-item a:hover, .faq-item a:focus {
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
}

/* CONTACT DETAILS & MAP */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
  font-size: 1.1rem;
}
.contact-details img,
.contact-details svg {
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  margin-right: 7px;
}
.address-display {
  font-size: 1.13rem;
  font-weight: 500;
  margin: 8px 0 14px 0;
  color: var(--primary);
}
.google-maps-placeholder {
  background: #e2e8f9;
  border-radius: var(--radius-sm);
  padding: 20px 15px;
  color: #384b60;
  margin: 10px 0 0 0;
  font-size: 1rem;
  text-align: center;
  min-width: 220px;
}

/* THANK YOU SECTION */
.thank-you .container {
  text-align: center;
  padding: 60px 20px 90px 20px;
}
.thank-you h1 {
  color: var(--accent);
  font-size: 2.3rem;
}
.thank-you .text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* LEGAL TEXT AND POLICY */
.legal .container {
  padding: 34px 10px 90px 10px;
}
.legal h1 {
  font-size: 2.1rem;
  margin-bottom: 17px;
}
.legal .text-section h2 {
  font-size: 1.18rem;
  margin-top: 20px;
  margin-bottom: 7px;
}
.legal .text-section ul {
  padding-left: 26px;
  margin-bottom: 13px;
}
.legal .text-section li {
  margin-bottom: 0.4em;
  font-size: 1.03rem;
}

/* FOOTER */
footer {
  background: linear-gradient(98deg, #DBEAFE 5%, #FDE6D0 100%);
  padding: 32px 0 14px 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -2px 44px rgba(94,118,130,0.04);
  font-size: 0.99rem;
  position: relative;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-logo img {
  height: 38px;
  display: block;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: #496085;
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  border-radius: var(--radius-md);
  padding: 8px 13px;
  transition: background 0.16s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--pastel-lavender);
  color: var(--accent);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: #37547B;
  text-align: center;
}
.footer-contact img {
  height: 1em;
  margin: 0 5px 0 8px;
  opacity: 0.8;
  vertical-align: middle;
}
.footer-contact div {
  margin-top: 4px;
  display: block;
  width: 100%;
  color: #497bb2;
}
@media (min-width: 700px) {
  footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 26px;
  }
  .footer-logo {
    flex: 0 0 auto;
  }
  .footer-contact {
    justify-content: flex-start;
  }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
a, .btn-accent, .main-nav a, .footer-nav a, .feature-item, .testimonial-card, .faq-item {
  transition: box-shadow 0.17s, background 0.19s, color 0.15s, border 0.2s, border-radius 0.18s;
}

/* FORM ELEMENTS (minimal style for forms if exists) */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid #C5CDEE;
  border-radius: var(--radius-sm);
  background: #F9F7FC;
  margin-bottom: 18px;
  color: var(--primary);
  outline: none;
  transition: border-color 0.16s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1.5px var(--accent-light);
}

/* RESPONSIVE TABLES */
@media (max-width: 700px) {
  .pricing-table, .pricing-table thead, .pricing-table tbody, .pricing-table tr, .pricing-table td, .pricing-table th {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .pricing-table tr {
    margin-bottom: 12px;
  }
  .pricing-table td, .pricing-table th {
    padding: 12px 10px;
  }
  .pricing-table th {
    position: relative;
    z-index: 1;
    background: var(--pastel-blue);
  }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: rgba(255, 249, 219, 0.97);
  border-top: 1px solid #f6e3c0;
  box-shadow: 0 -2px 24px rgba(150,120,12,0.09);
  z-index: 200;
  padding: 20px 10px 23px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  font-size: 1.07rem;
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.33s var(--transition), transform 0.29s var(--transition);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner__desc {
  max-width: 670px;
  color: #304159;
  margin-bottom: 4px;
  text-align: center;
}
.cookie-banner__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
  box-shadow: 0 1px 12px rgba(204,85,0,0.09);
  cursor: pointer;
  margin: 0 6px 0 0;
  transition: background 0.16s, color 0.15s, box-shadow 0.14s;
}
.cookie-btn.settings {
  background: var(--primary);
}
.cookie-btn.reject {
  background: #CBDDFB;
  color: var(--primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FF7000;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #CC5500;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #CFBCA6;
  color: var(--primary);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 300;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,41,69,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--transition);
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #FCFAF4;
  border-radius: var(--radius-md);
  padding: 32px 18px 22px 18px;
  min-width: 96vw;
  max-width: 420px;
  box-shadow: 0 5px 40px rgba(133,81,20,0.18);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-modal__title {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.29rem;
  font-weight: 600;
  color: var(--primary);
}
.cookie-modal__close {
  font-size: 2.1rem;
  color: var(--accent);
  background: transparent;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  background: var(--accent-light);
  color: var(--primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--pastel-blue);
  border-radius: var(--radius-sm);
  padding: 15px 16px;
}
.cookie-category__label {
  flex: 1 1 auto;
  font-size: 1.05rem;
  color: var(--primary);
}
.cookie-category__toggle {
  margin-left: auto;
  font-size: 1.18rem;
}
.cookie-category input[type="checkbox"] {
  width: 25px;
  height: 25px;
  accent-color: var(--accent);
  outline: none;
}
.cookie-category.essential {
  background: #DBEAFE;
  color: #29547f;
}
.cookie-category.essential .cookie-category__toggle {
  font-size: 0.93rem;
  color: var(--primary);
  font-style: italic;
}

.cookie-modal .cookie-btn {
  margin: 0 0 0 0;
  width: 100%;
  padding: 12px 0;
  font-size: 1.06rem;
}

@media (max-width: 600px) {
  .section, .cta, .faq-item, .feature-item, .testimonial-card, .card {
    padding: 20px 8px;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .feature-grid, .content-wrapper {
    gap: 11px;
  }
  .footer-nav {
    gap: 8px;
  }
}

/* General Utility Classes */
.d-none { display: none!important; }
.text-center { text-align: center; }
.font-display { font-family: 'Roboto', Arial, sans-serif; }
.font-accent { color: var(--accent); }

/* For overlays/modal layering */
[aria-modal="true"], .cookie-modal-overlay, .mobile-menu {
  z-index: 999 !important;
}

/* SCROLLBAR (soft pastel/hidden on webkit) */
::-webkit-scrollbar {
  width: 11px;
  background: var(--pastel-grey);
}
::-webkit-scrollbar-thumb {
  background: var(--pastel-rose);
  border-radius: 100px;
}

/* Ensure min height and responsiveness for html/body */
html, body {
  min-height: 100%;
  width: 100%;
}

/* Accessibility: focus shadow/highlight */
a:focus, button:focus, .btn-accent:focus, .cookie-btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Prevent content touch overlap with mobile menu or banner */
@media (max-width: 992px) {
  body.menu-open {
    overflow: hidden;
  }
}
