/* --- CSS RESET & NORMALIZATION --- */
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;
}
html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  background-color: #fff;
  color: #222;
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  min-height: 100vh;
  line-height: 1.7;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  background: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #222;
  outline-offset: 2px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: 1em;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}

/* --- BRAND FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
body, .text-section, .text-section p {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  color: #222;
}
h1, h2, h3, h4, h5, h6, .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 16px;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(22, 27, 34, 0.05);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(38, 41, 51, 0.08);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  min-width: 260px;
  flex: 1 1 280px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border-left: 4px solid #222;
  border-radius: 10px;
  box-shadow: 0 3px 18px 0 rgba(36,36,36, 0.07);
  margin-bottom: 20px;
  transition: box-shadow .18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px 0 rgba(60, 60, 60, .14);
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 8px 0;
  line-height: 1.4;
}
cite {
  font-size: 0.97rem;
  color: #4f4f4f;
  font-style: normal;
  letter-spacing: 0.5px;
}
.feature-item,
.features ul li,
.services-benefits ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f5f5f7;
  border-radius: 12px;
  padding: 20px 18px;
  margin-bottom: 20px;
}

.features ul, .services-benefits ul, .services-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;
  align-items: stretch;
}
.features ul li, .services-benefits ul li {
  flex: 1 1 200px;
}
.services-list ul li {
  flex: 1 1 260px;
  background: #fbfbfb;
  border-radius: 12px;
  padding: 24px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 12px 0 rgba(24, 24, 26, 0.06);
}

/* --- HERO SECTIONS --- */
.hero, .catalogue-hero, .services-hero, .blog-hero, .about-hero, .contact-hero, .policy-text, .thank-you {
  background: #f5f5f7;
  border-radius: 0 0 32px 32px;
  padding: 56px 0 50px 0;
  margin-bottom: 40px;
}
.hero .cta-btn, .catalogue-hero .cta-btn, .services-hero .cta-btn, .blog-hero .cta-btn, .about-hero .cta-btn, .contact-hero .cta-btn {
  margin-top: 20px;
}
.hero h1, .catalogue-hero h1, .services-hero h1, .blog-hero h1, .about-hero h1, .contact-hero h1 {
  color: #111;
  font-size: 2.3rem;
}
.subheadline {
  max-width: 520px;
  font-size: 1.04rem;
  color: #282828;
  margin: 14px 0 0 0;
  font-weight: 400;
}

/* --- CTA BUTTONS --- */
.cta-btn {
  background: #222;
  color: #fff;
  border-radius: 60px;
  padding: 14px 38px;
  display: inline-block;
  font-size: 1.11rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.23s;
  box-shadow: 0 2px 10px 0 rgba(50,50,50,0.05);
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: #222;
  box-shadow: 0 4px 24px 0 rgba(71,71,71,0.13);
  border: 1.5px solid #222;
  outline: none;
}

/* --- MAIN NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 1px solid #ededed;
  position: relative;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px 14px 20px;
}
.main-nav > a img {
  height: 40px;
  display: block;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 0 28px;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #111;
  border-radius: 4px;
  padding: 7px 16px;
  transition: background 0.16s, color 0.16s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #efefef;
  color: #000;
}
.main-nav .cta-btn {
  margin-left: 32px;
  font-size: 1rem;
  padding: 10px 32px;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #222;
  position: absolute;
  right: 24px;
  top: 16px;
  z-index: 120;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background 0.17s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #ededed;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 15, 20, 0.97);
  color: #fff;
  z-index: 160;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.46,.01,.32,1.07);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 28px 0 0;
  background: none;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  transition: background 0.13s;
}
.mobile-menu-close:focus,
.mobile-menu-close:active {
  background: #222;
  color: #fff;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 35px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 14px 0;
  border-radius: 4px;
  transition: background 0.16s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff;
  color: #111;
}

@media (max-width: 1050px) {
  .main-nav ul {
    gap: 8px;
    margin-left: 12px;
  }
  .main-nav .cta-btn {
    padding: 8px 22px;
    margin-left: 12px;
    font-size: .97rem;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* --- SITE SECTIONS --- */
.features, .services-preview, .catalogue-preview, .services-benefits, .services-list, .articles-list {
  margin-bottom: 60px;
  padding: 40px 0;
}
.services-preview ul, .catalogue-preview ul, .catalogue-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.services-preview ul li, .catalogue-preview ul li, .catalogue-categories ul li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(60,60,60,.06);
  padding: 18px 20px;
  flex: 1 1 220px;
  color: #222;
}
.services-preview ul li strong, .catalogue-preview ul li strong, .catalogue-categories ul li strong {
  color: #111;
  font-weight: 700;
}

/* --- FILTER CONTROLS & SORT OPTIONS --- */
.category-navigation, .filter-options, .filter-by-category {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.category-navigation a, .filter-options a, .filter-by-category a {
  color: #222;
  background: #ededed;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 18px;
  transition: background 0.17s, color 0.17s;
}
.category-navigation a:hover, .filter-options a:hover, .filter-by-category a:hover,
.category-navigation a:focus, .filter-options a:focus, .filter-by-category a:focus {
  background: #222;
  color: #fff;
}
.sort-options {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.sort-options label {
  color: #3e3e3e;
  font-weight: 600;
}
.sort-options select {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f5f5f7;
  border: 1px solid #bbb;
  border-radius: 4px;
  padding: 6px 16px;
  font-size: 1rem;
  color: #111;
}

/* --- ARTICLE PREVIEW CARD --- */
.article-preview-card {
  background: #f8f8fa;
  border-radius: 10px;
  box-shadow: 0 1px 8px 0 rgba(40,40,40,0.05);
  margin-bottom: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 250px;
  transition: box-shadow .17s;
}
.article-preview-card:hover {
  box-shadow: 0 4px 18px 0 rgba(56,56,56,0.09);
}

/* --- FAQ --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fbfbfb;
  border-left: 4px solid #111;
  border-radius: 8px;
  padding: 20px 22px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px 0 rgba(30,30,30,0.05);
}
.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  color: #202020;
}
.faq-item p {
  font-size: .98rem;
  color: #353535;
}

/* --- LOCAL MONOCHROME ACCENTS --- */
.text-section a {
  color: #222;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.15s;
}
.text-section a:hover, .text-section a:focus {
  color: #304C6D;
}
.text-section p {
  margin-bottom: 10px;
}

.brand-story {
  font-size: 1.08rem;
  color: #2c2c2c;
  margin-bottom: 8px;
}
.mission-statement {
  font-size: 1rem;
  color: #404040;
}

/* --- FOOTER --- */
footer {
  background: #18191b;
  color: #fff;
  padding: 54px 0 0 0;
  border-radius: 36px 36px 0 0;
  margin-top: 60px;
}
footer .container {
  padding-bottom: 32px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 38px;
  margin-bottom: 18px;
}
.footer-nav, .footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a, .footer-links a {
  color: #c8c8c8;
  font-size: 0.98rem;
  padding: 5px 0;
  border-radius: 4px;
  transition: color 0.14s, background 0.14s;
}
.footer-nav a:hover, .footer-links a:hover, .footer-nav a:focus, .footer-links a:focus {
  color: #fff;
  background: #1b222f;
}
.footer-contact {
  color: #bbb;
  font-size: .97rem;
  flex-basis: 35%;
}
.footer-contact strong {
  color: #fff;
  font-weight: 600;
}

/* --- MONOCHROME SOPHISTICATION & SHADOWS --- */
.section, .card, .article-preview-card, .testimonial-card, .faq-item, .services-list ul li, .features ul li, .services-benefits ul li, .policy-text {
  box-shadow: 0 2.5px 14px 0 rgba(40,41,49,0.05);
}

/* --- SPACING AND WHITE SPACE --- */
.section, .card-container, .card, .content-grid, .text-image-section, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}
.card-container, .content-grid, .features ul, .services-benefits ul, .services-list ul {
  gap: 20px;
}

/* --- FORM ELEMENTS --- */
input[type='search'] {
  background: #fff;
  border: 1.5px solid #222;
  border-radius: 32px;
  padding: 11px 44px 11px 18px;
  font-size: 1rem;
  min-width: 260px;
  color: #111;
  transition: border-color .17s, box-shadow .16s;
  margin-bottom: 12px;
}
input[type='search']:focus {
  border-color: #304C6D;
  outline: none;
  box-shadow: 0 2px 12px 0 rgba(50,76,109,0.08);
}

/* --- SERVICE PRICES --- */
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #222;
  letter-spacing: .5px;
  background: #ededed;
  border-radius: 32px;
  padding: 7px 20px;
  font-size: .99rem;
  margin: 10px 0 0;
  display: inline-block;
}

/* --- POLICY TEXT --- */
.policy-text .text-section {
  background: #fff;
  border-radius: 10px;
  padding: 28px 22px;
  font-size: 1.01rem;
  color: #232323;
  box-shadow: 0 2px 12px 0 rgba(30,32,38,0.06);
}
.policy-text ul {
  padding-left: 20px;
  margin: 18px 0;
}
.policy-text ul li {
  list-style: disc;
  margin-bottom: 8px;
}
.policy-text h2 {
  font-size: 1.24rem;
  margin: 18px 0 10px;
  color: #191919;
}

/* --- THANK YOU SECTION --- */
.thank-you .text-section {
  background: #fff;
  border-radius: 10px;
  padding: 34px 24px;
  box-shadow: 0 2px 12px 0 rgba(36,36,36,.06);
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #232324;
  color: #fff;
  z-index: 180;
  box-shadow: 0 -2px 18px 0 rgba(44,47,56,0.23);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 18px 24px;
  gap: 24px;
  font-size: 1rem;
  min-height: 64px;
  animation: cookieSlideIn 0.6s;
  will-change: transform;
}
@keyframes cookieSlideIn {
  from { transform: translateY(120px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 350px;
  max-width: 700px;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
  background: #fff;
  color: #222;
  border-radius: 28px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .98rem;
  font-weight: 600;
  padding: 9px 26px;
  margin-right: 2px;
  transition: background 0.13s, color 0.13s;
}
.cookie-btn-accept {
  background: #222;
  color: #fff;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #ffffff;
  color: #111;
  border: 1.2px solid #111;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #f5f5f7;
  color: #111;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #222;
  color: #fff;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18,18,18,.88);
  z-index: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.25s;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-overlay[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #1b1b1b;
  border-radius: 16px;
  box-shadow: 0 8px 40px 0 rgba(30,32,38,0.21);
  padding: 36px 30px 24px 30px;
  min-width: 290px;
  max-width: 96vw;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalFadeIn 0.36s;
}
@keyframes modalFadeIn {
  from { transform: translateY(36px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 800;
  color: #232324;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-modal-category label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #232324;
  font-weight: 600;
}
.cookie-category-switch {
  width: 46px;
  height: 26px;
  border-radius: 20px;
  background: #f3f3f3;
  position: relative;
  margin-left: 8px;
  transition: background 0.2s;
  display: inline-block;
}
.cookie-category-switch input {
  display: none;
}
.cookie-category-switch .slider {
  position: absolute;
  top: 2px;
  left: 2px;
  height: 22px;
  width: 22px;
  background: #222;
  border-radius: 50%;
  transition: left 0.21s, background 0.2s;
}
.cookie-category-switch input:checked + .slider {
  left: 22px;
  background: #304C6D;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-actions button {
  padding: 9px 24px;
  font-size: .98rem;
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: #ededed;
  color: #222;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal-actions button.accept {
  background: #222;
  color: #fff;
}
.cookie-modal-actions button.accept:hover, .cookie-modal-actions button.accept:focus {
  background: #fff;
  color: #222;
  border: 1.1px solid #222;
}
.cookie-modal-actions button.reject:hover, .cookie-modal-actions button.reject:focus {
  background: #f5f5f7;
  color: #111;
}
.cookie-modal-actions button.settings:hover, .cookie-modal-actions button.settings:focus {
  background: #222;
  color: #fff;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1050px) {
  .container {
    max-width: 900px;
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    gap: 20px;
  }
  .features ul, .services-benefits ul, .services-list ul {
    gap: 12px;
  }
  .features ul li, .services-benefits ul li, .services-list ul li {
    min-width: 190px;
    padding: 18px 14px;
  }
  .footer-contact {
    flex-basis: 100%;
  }
}
@media (max-width: 768px) {
  .section, .hero, .catalogue-hero, .services-hero, .blog-hero, .about-hero, .contact-hero, .policy-text, .thank-you {
    padding: 30px 0 20px 0;
    border-radius: 0 0 16px 16px;
    margin-bottom: 24px;
  }
  .features ul, .services-benefits ul, .services-list ul, .card-container, .content-grid, .services-preview ul, .catalogue-preview ul, .catalogue-categories ul {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .main-nav {
    padding: 14px 11px;
  }
  h1 {
    font-size: 1.66rem;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 1.22rem;
    margin-bottom: 14px;
  }
  .footer-logo img {
    height: 28px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .mobile-menu {
    min-height: 100vh;
    padding-top: 24px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 5px;
  }
  .main-nav {
    padding: 8px 2px 8px 2px;
  }
  .mobile-menu-toggle {
    right: 6px;
    top: 9px;
    width: 38px;
    height: 38px;
    font-size: 1.7rem;
  }
  .mobile-menu-close {
    margin: 14px 12px 0 0;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }
  .mobile-nav {
    padding: 24px 15px;
    gap: 17px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: .93rem;
    padding: 10px 6px;
  }
  .cookie-banner__actions {
    flex-wrap: wrap;
    gap: 6px;
  }
  .cookie-modal {
    padding: 24px 8px 10px 8px;
    min-width: 200px;
    max-width: 96vw;
  }
}

/* --- MICRO-INTERACTIONS --- */
.card, .testimonial-card, .feature-item, .services-list ul li, .article-preview-card {
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:hover, .article-preview-card:hover, .services-list ul li:hover, .feature-item:hover {
  box-shadow: 0 6px 24px 0 rgba(32,32,32,0.13);
  transform: translateY(-3px) scale(1.012);
}

/* --- SELECTION & FOCUS --- */
::selection {
  background: #222;
  color: #fff;
}

/* --- ACCENT COLOR UTILITY --- */
.accent {
  color: #304C6D;
}

/* --- MONOCHROME PALETTE OVERRIDES FOR AESTHETICS --- */
h1, h2, h3, .main-nav ul li a, .cta-btn {
  color: #18191b;
}
section {
  background: #fafbfc;
}

/* --- MISC --- */
hr {
  border: none;
  border-top: 1px solid #efefef;
  margin: 32px 0;
}

/* --- OVERLAY/Z-INDEX SAFETY --- */
.mobile-menu, .cookie-banner, .cookie-modal-overlay {
  z-index: 9999;
}

/* --- END CSS --- */
