/* 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, 
main, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: #181818;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #22495E;
  outline-offset: 2px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
ul, ol {
  padding-left: 1.6em;
  margin-bottom: 1em;
}
strong {
  font-weight: 700;
}

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


/* ======= COLOR PALETTE (monochrome_sophisticated) ======= */
:root {
  --ss-primary: #181818;
  --ss-primary-dark: #111;
  --ss-secondary: #fff;
  --ss-gray-1: #f5f5f5;
  --ss-gray-2: #ededed;
  --ss-gray-3: #d1d1d1;
  --ss-gray-4: #888;
  --ss-accent: #22495E; /* Brand blue gray, subtle accent only */
  --ss-brand-accent: #35775E; /* Deep green accent only for subtle CTA */
  --ss-shadow: 0 2px 24px rgba(0,0,0,0.14), 0 1.5px 4px rgba(0,0,0,0.09);
  --container-max: 1240px;
}

/* =========== LAYOUT STRUCTURE =========== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

main {
  min-height: 60vh;
}

section {
  background: var(--ss-secondary);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.section {
  /* keeps mandated spacing for possible .section custom classes*/
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section, .section {
    margin-bottom: 34px;
    padding: 28px 8px;
    border-radius: 9px;
  }
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* =========== TYPOGRAPHY =========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--ss-primary);
  letter-spacing: -0.01em;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 14px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1.15;
}
h3 {
  font-size: 1.32rem;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.19;
}
h4 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.60rem;
  }
  h2 {
    font-size: 1.20rem;
  }
  h3 {
    font-size: 1.03rem;
  }
}
p, li {
  color: #222;
  font-size: 1rem;
}
.subheadline {
  color: var(--ss-gray-4);
  font-size: 1.22rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-bottom: 16px;
}
.thank-you-message {
  font-size: 1.14rem;
  color: var(--ss-primary-dark);
  margin-bottom: 16px;
}
blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  color: #222;
  border-left: 3px solid var(--ss-accent);
  padding-left: 16px;
  margin-bottom: 6px;
  font-style: italic;
  background: var(--ss-gray-1);
  border-radius: 8px 0 0 8px;
}

ul {
  list-style: disc inside;
  margin-bottom: 10px;
}
ul li + li {
  margin-top: 7px;
}

/* =========== HEADER NAVIGATION =========== */
header {
  background: var(--ss-secondary);
  box-shadow: 0 3px 16px 0 rgba(0,0,0,0.05);
  position: relative;
  z-index: 10;
}
header .container {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}
header img {
  max-height: 45px;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #181818;
  text-decoration: none;
  padding: 4px 7px;
  border-radius: 3px;
  transition: background 0.18s, color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--ss-gray-1);
  color: var(--ss-accent);
}
.cta-btn {
  background: var(--ss-primary);
  color: var(--ss-secondary);
  padding: 10px 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.0375rem;
  border: none;
  border-radius: 28px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.065);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-left: 15px;
  transition: background 0.2s, color 0.18s, transform 0.13s;
  letter-spacing: 0.04em;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--ss-brand-accent);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.mobile-menu-toggle {
  background: transparent;
  border: none;
  color: var(--ss-primary);
  font-size: 2rem;
  padding: 7px 11px;
  border-radius: 5px;
  cursor: pointer;
  display: none;
  margin-left: 17px;
  transition: background 0.17s, color 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--ss-gray-2);
  color: var(--ss-accent);
}

/* Mobile Navigation Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,24,24,0.98);
  color: #fff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.91,.07,.33,1.05);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  margin: 22px 24px 16px 0;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 2;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--ss-gray-3);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding: 18px 36px;
  margin-top: 8px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.23rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  text-decoration: none;
  padding: 7px 0;
  border-radius: 4px;
  transition: color 0.17s, background 0.13s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(255,255,255,0.09);
  color: var(--ss-accent);
}

@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (max-width: 768px) {
  header .container { flex-wrap: wrap; padding-top: 10px; padding-bottom: 10px; }
  .cta-btn { font-size: 0.96rem; padding: 9px 18px; margin-left: 6px; }
  header img { max-height: 38px; }
}

/* =========== HERO & MAJOR BLOCKS =========== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  gap: 25px;
  padding-top: 30px;
  padding-bottom: 30px;
}

/* =========== FLEXBOX CONTAINER STYLES =========== */
.card-container, .card-grid, .feature-grid, .articles-preview, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 20px;
}
.articles-preview {
  gap: 20px;
}
@media (max-width: 900px) {
  .card-container, .feature-grid, .workshop-list {
    flex-direction: column;
    gap: 20px;
  }
  .articles-preview { flex-direction: column; }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 20px; }
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* =========== CARDS =========== */
.card, .testimonial-card, .workshop-card, .services-list > li, .feature-grid > li, .articles-preview > article {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover, .testimonial-card:hover, .workshop-card:hover, .services-list > li:hover, .feature-grid > li:hover, .articles-preview > article:hover {
  box-shadow: 0 6px 28px 0 rgba(0,0,0,0.13);
  transform: translateY(-4px) scale(1.0125);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* Article Preview Cards */
.articles-preview > article {
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 340px;
  background: var(--ss-gray-1);
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.06);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  border: 1px solid #ededed;
}
.articles-preview > article a {
  margin-top: 10px;
  color: var(--ss-accent);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.15s;
}
.articles-preview > article a:hover {
  color: var(--ss-brand-accent);
}

/* Feature Grid */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > li {
  flex: 1 1 220px;
  min-width: 200px;
  background: var(--ss-gray-1);
  border-radius: 13px;
  box-shadow: 0 1.5px 8px rgba(40,40,40,0.07);
  padding: 19px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  border: 1px solid #ececec;
}
.feature-grid > li img {
  width: 38px;
  height: 38px;
  margin-bottom: 9px;
  opacity: 0.96;
}

/* Services List */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.services-list > li {
  flex: 1 1 210px;
  min-width: 180px;
  background: var(--ss-gray-2);
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 rgba(0,0,0,0.05);
  border: 1px solid #e3e3e3;
  padding: 18px 15px 17px 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 20px;
}
.services-list > li img {
  width: 33px; height: 33px; opacity: 0.98;
}
@media (max-width: 900px) {
  .services-list, .feature-grid { flex-direction: column; gap: 18px; }
  .services-list > li, .feature-grid > li {
    min-width: 0;
    width: 100%;
    max-width: 99%;
  }
  .articles-preview > article {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* Workshop Card(s) */
.workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.workshop-card {
  flex: 1 1 240px;
  background: var(--ss-gray-2);
  border-radius: 14px;
  box-shadow: 0 1.5px 8px rgba(40,40,40,0.07);
  border: 1px solid #ececec;
  padding: 22px 16px;
}

/* =========== TESTIMONIAL CARDS =========== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 28px;
  background: linear-gradient(90deg, #fff 78%, #ebebeb 100%);
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
  margin-bottom: 20px;
  border-left: 5px solid var(--ss-accent);
  position: relative;
  max-width: 710px;
}
.testimonial-card blockquote {
  background: none;
  border-left: none;
  padding-left: 0;
  margin-bottom: 2px;
  color: #232323;
}
.testimonial-card span {
  color: var(--ss-gray-4);
  font-size: 0.99rem;
  display: block;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 17px 12px;
  }
  .testimonial-card { max-width: 100%; }
}

/***************** FOOTER *****************/
footer {
  background: var(--ss-primary);
  color: var(--ss-secondary);
  padding: 38px 0 22px 0;
  margin-top: 60px;
  border-radius: 28px 28px 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-bottom: 7px;
}
.footer-menu a {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 1.01rem;
  padding: 2px 6px;
  transition: color 0.19s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--ss-accent);
}
.footer-contact {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 0.975rem;
  color: #ececec;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-contact a {
  color: var(--ss-accent);
  text-decoration: underline;
  transition: color 0.14s;
}
.footer-contact a:hover {
  color: var(--ss-secondary);
}
@media (max-width: 780px) {
  footer {
    border-radius: 14px 14px 0 0;
    padding: 22px 0 11px 0;
  }
  .footer-menu {
    gap: 18px;
  }
}

/*************** SCHEDULE & PRICE BOX **************/
.price-box, .schedule-box {
  background: var(--ss-gray-1);
  border: 1px solid var(--ss-gray-3);
  border-radius: 8px;
  padding: 18px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  margin: 17px 0 0 0;
  color: var(--ss-primary-dark);
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
}
.schedule-box {
  margin-top: 20px;
}

/**************** CONTACT INFO SHORT + THANK YOU NOTE **************/
.contact-info-short {
  margin-top: 15px;
  font-size: 1rem;
}
.thank-you-note {
  background: var(--ss-gray-1);
  border-radius: 8px;
  padding: 18px 14px;
  font-size: 1rem;
  color: #292929;
  margin-top: 14px;
  margin-bottom: 11px;
}

/************** FLEX ALIGNMENTS FOR SECTIONED CONTENT **************/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
}

/************** UTILITIES **************/
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 2px !important; }
.mt-6 { margin-top: 6px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-24 { margin-bottom: 24px !important; }
.gap-8 { gap: 8px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }

/* ========== COOKIE CONSENT BANNER & MODAL ========== */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-top: 2.5px solid var(--ss-accent);
  box-shadow: 0 -4px 28px rgba(35,35,35,0.10);
  padding: 27px 20px 18px 20px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  gap: 18px;
  transition: transform 0.31s cubic-bezier(0.58,0.09,0.21,1.01), opacity 0.24s;
}
#cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
#cookie-banner .cookie-text {
  color: #1a1a1a;
  flex: 1 1 0;
  margin-right: 32px;
}
#cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  background: var(--ss-accent);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 19px;
  cursor: pointer;
  outline: none;
  transition: background 0.17s, color 0.14s, box-shadow 0.13s;
  box-shadow: 0 1px 5px rgba(34,73,94,0.075);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--ss-brand-accent);
}
.cookie-btn.cookie-btn-secondary {
  background: #fff;
  color: var(--ss-primary);
  border: 1px solid var(--ss-accent);
  box-shadow: none;
}
.cookie-btn.cookie-btn-secondary:hover {
  background: #eeeeee;
  color: var(--ss-accent);
}
.cookie-btn.cookie-btn-settings {
  background: var(--ss-secondary);
  color: var(--ss-accent);
  border: 1.5px solid #d9d9d9;
  font-weight: 600;
  box-shadow: none;
}
.cookie-btn.cookie-btn-settings:hover {
  background: #f5f5f5;
  color: var(--ss-brand-accent);
}

@media (max-width: 700px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 8px 14px 8px;
  }
  #cookie-banner .cookie-text {
    margin-right: 0;
  }
}

#cookie-modal-overlay {
  position: fixed;
  z-index: 20000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(25,25,25,0.85);
  display: none;
  align-items: center;
  justify-content: center;
}
#cookie-modal-overlay.open {
  display: flex;
}
#cookie-modal {
  background: #fff;
  max-width: 420px;
  width: 93vw;
  border-radius: 14px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.18);
  padding: 32px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: cookieModalIn 0.35s cubic-bezier(.82,.21,.3,1.02);
}
@keyframes cookieModalIn {
  from { transform: translateY(60px) scale(0.90); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
#cookie-modal h2 {
  font-size: 1.27rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--ss-accent);
  margin-bottom: 6px;
}
#cookie-modal .cookie-category {
  padding: 9px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #1a1a1a;
}
#cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
#cookie-modal .cookie-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ccc;
  border-radius: 10px;
  transition: background 0.15s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--ss-accent);
}
.cookie-slider:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.14s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
}
#cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
#cookie-modal .cookie-close {
  position: absolute;
  top: 18px; right: 19px;
  background: none;
  border: none;
  color: #333;
  font-size: 1.42rem;
  cursor: pointer;
  transition: color 0.15s;
}
#cookie-modal .cookie-close:hover {
  color: var(--ss-accent);
}

/******** Forms (Generic) for possible contact integrations ********/
input, textarea {
  background: #fff;
  border: 1px solid var(--ss-gray-3);
  padding: 11px;
  border-radius: 7px;
  font-size: 1rem;
  margin-bottom: 15px;
  outline: none;
  transition: border 0.15s;
}
input:focus, textarea:focus {
  border-color: var(--ss-accent);
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.03rem;
  font-weight: 500;
  color: var(--ss-primary);
}

/************* VISUAL EFFECTS **************/
.card, .testimonial-card, .workshop-card, .articles-preview > article, .services-list > li, .feature-grid > li {
  transition: box-shadow 0.19s, transform 0.13s, background 0.092s;
}
.card:active, .testimonial-card:active, .workshop-card:active, .articles-preview > article:active, .services-list > li:active, .feature-grid > li:active {
  transform: scale(0.97);
}

/************* TABLE for potential Cookie table or FAQ *************/
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  border-radius: 7px;
  margin-bottom: 16px;
}
th, td {
  border: 1px solid var(--ss-gray-3);
  padding: 10px 12px;
  text-align: left;
  font-size: 1rem;
}
th {
  background: var(--ss-gray-1);
}

/*********** Hide visually *****************/
.sr-only {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important; width: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
}

/*********** Misc fixes ***********/
::-webkit-input-placeholder { color: #969696; }
::-moz-placeholder { color: #969696; }
:-ms-input-placeholder { color: #969696; }
::placeholder { color: #969696; }

/* Scrollbar styling */
body::-webkit-scrollbar {
  width: 10px;
  background: #efefef;
}
body::-webkit-scrollbar-thumb {
  background: #c3c3c3;
  border-radius: 6px;
}

/********** Print Styling (Minimal) **********/
@media print {
  header, footer, #cookie-banner, #cookie-modal-overlay, .mobile-menu { display: none !important; }
  main { padding: 0 !important; }
  section, .section { box-shadow: none; background: #fff; border-radius: 0; }
}
