/* =====================
   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;
}
html {
  line-height: 1.15;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #F5F5F2;
}
body {
  min-height: 100vh;
  color: #1D3B47;
  background: #F5F5F2; /* Brand muted background */
  font-family: "Roboto", serif, Arial, sans-serif;
  letter-spacing: 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}
*,*::before,*::after {
  box-sizing: inherit;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #1D3B47;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B45713;
  text-decoration: underline;
}
ul,ol {
  margin-left: 1.5em;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* Typography hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', "Georgia", serif;
  font-weight: 600;
  color: #1D3B47;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {font-size: 2.5rem; margin-bottom: 24px;}
h2 {font-size: 2rem; margin-bottom: 20px;}
h3 {font-size: 1.25rem; margin-bottom: 16px;}
h4 {font-size: 1.125rem; margin-bottom: 12px;}
h5, h6 {font-size: 1rem; margin-bottom: 8px;}
p, blockquote {
  margin-bottom: 18px;
  font-size: 1rem;
}
blockquote {
  font-family: 'Georgia', serif;
  font-style: italic;
  color: #1D3B47;
  border-left: 4px solid #E47219;
  padding-left: 18px;
  margin-bottom: 18px;
}
strong, b {
  font-weight: 600;
}

/* ========================
   GLOBAL LAYOUT & SPACING
   ======================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(29,59,71, 0.06);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 10px;
    margin-bottom: 36px;
  }
}

/* ===================
   HEADER & NAVIGATION
   =================== */
header {
  background: #fff;
  box-shadow: 0 4px 12px rgba(29,59,71,0.03);
  position: sticky;
  z-index: 30;
  top: 0;
  transition: box-shadow .2s;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}
.logo-link {
  min-width: 145px;
  display: flex;
  align-items: center;
  height: 64px;
  padding-right: 10px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-grow: 1;
  justify-content: flex-end;
}
.main-nav a {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  color: #1D3B47;
  padding: 0 8px;
  font-weight: 500;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.main-nav a:hover {
  background: #F5F5F2;
}
.cta-primary {
  background: #B45713;
  color: #fff !important;
  padding: 12px 28px;
  font-family: 'Montserrat', serif;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: none;
  transition: background 0.16s, box-shadow 0.16s, color 0.16s;
  box-shadow: 0 2px 10px rgba(29,59,71,0.07);
  display: inline-block;
  margin-left: 4px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #E47219;
  color: #fff;
  box-shadow: 0 4px 16px rgba(180, 87, 19, 0.14);
  outline: none;
}

.mobile-menu-toggle {
  display: none;
}

/* ==================
   MOBILE NAVIGATION
   ================== */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    background: none;
    font-size: 2.2rem;
    color: #1D3B47;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 6px 12px;
    margin-left: auto;
    border-radius: 6px;
    transition: background .15s;
  }
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    background: #F5F5F2;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.65,.05,.36,1);
  z-index: 9999;
  box-shadow: 0 6px 40px rgba(29,59,71,0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 22px 0 0;
  background: none;
  font-size: 2rem;
  color: #1D3B47;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background .13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F5F5F2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 42px 32px 24px 32px;
  font-family: "Montserrat", serif;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #1D3B47;
  padding: 14px 0;
  border-radius: 0;
  font-weight: 500;
  transition: color 0.15s;
}
.mobile-nav a:hover {
  color: #B45713;
}

@media (max-width: 520px) {
  .mobile-nav { padding: 36px 14px 16px 14px; }
}

/* Hide mobile menu on desktop */
@media (min-width:1025px) {
  .mobile-menu, .mobile-menu.open {
    display: none !important;
  }
  .mobile-menu-toggle{
    display: none !important;
  }
}

/* ================
   HERO SECTIONS
   ================ */
.hero, .contact-hero, .thank-you-section {
  background: linear-gradient(120deg, #F5F5F2 88%, #B45713 180%);
  padding: 64px 0;
  border-radius: 0 0 32px 32px;
  position: relative;
}
.hero h1, .contact-hero h1, .thank-you-section h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  color: #1D3B47;
  font-family: 'Montserrat', serif;
  letter-spacing: 0.02em;
}
.hero-sub {
  color: #1D3B47;
  opacity: 0.88;
  font-size: 1.25rem;
  max-width: 640px;
  margin-bottom: 32px;
}
.hero .cta-primary, .hero a.cta-primary, .contact-hero .cta-primary, .thank-you-section .cta-primary {
  margin-top: 8px;
  min-width: 180px;
}
@media (max-width: 768px) {
  .hero, .contact-hero, .thank-you-section {
    padding: 32px 0 12px 0;
    border-radius: 0 0 18px 18px;
  }
  .hero h1, .contact-hero h1, .thank-you-section h1 {
    font-size: 2rem;
  }
  .hero-sub {
    font-size: 1.05rem;
  }
}

/* ===========
   FEATURE LISTS
   =========== */
.features, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-grid {
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.feature-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(29,59,71,0.08);
  padding: 22px 18px;
  min-width: 240px;
  max-width: 300px;
  flex: 1 1 225px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.13s, transform 0.16s;
  margin-bottom: 20px;
}
.feature-item img {
  height: 44px;
  width: 44px;
  margin-bottom: 6px;
  filter: grayscale(30%);
}
.feature-item h3 {
  margin: 0 0 2px 0;
  font-size: 1.1rem;
  color: #B45713;
}
.feature-item p {
  color: #1D3B47;
  font-size: 0.99rem;
}
.feature-item:hover {
  box-shadow: 0 4px 24px rgba(180, 87, 19, 0.13);
  transform: translateY(-2px) scale(1.03);
}

/* ================
   SERVICE CARDS
   ================ */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
  justify-content: flex-start;
}
.service-card {
  flex: 1 1 230px;
  max-width: 295px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(29,59,71,0.07);
  padding: 26px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.18s;
}
.service-card img {
  height: 42px;
  width: 42px;
  margin-bottom: 8px;
}
.service-card h3 {
  color: #1D3B47;
}
.service-card p {
  color: #3D4F56;
  font-size: 0.98rem;
}
.service-card .service-price {
  margin-top: auto;
  font-weight: 700;
  color: #B45713;
  font-size: 1rem;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(29,59,71,0.13);
  transform: scale(1.025) translateY(-3px);
}

@media (max-width: 900px) {
  .service-cards {
    flex-wrap: wrap;
    gap: 16px;
  }
  .service-card {
    max-width: 100%;
    flex: 1 1 245px;
  }
}
@media (max-width: 640px) {
  .service-cards{
    flex-direction: column;
    gap: 12px;
  }
  .service-card {
    max-width:100%;
    width: 100%;
  }
}

/* ===============
   TEAM SECTION
   =============== */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.team-member {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(29,59,71,0.07);
  padding: 20px 16px;
  flex: 1 1 230px;
  min-width: 180px;
  transition: box-shadow 0.14s, transform 0.14s;
  margin-bottom: 20px;
}
.team-member h3 { color: #B45713; }
.team-member:hover {
  box-shadow: 0 4px 22px rgba(29,59,71,0.14);
  transform: scale(1.025);
}
@media (max-width: 900px) {
  .team-list{ gap: 14px; }
  .team-member{ min-width: 140px;}
}
@media (max-width:600px){
  .team-list{
    flex-direction: column;
    gap: 8px;
  }
}

/* ================
   TESTIMONIALS/REVIEWS
   ================ */
.testimonials {
  padding: 0 0 44px 0;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 22px rgba(29,59,71,0.10);
  padding: 24px 24px 18px 24px;
  min-width: 230px;
  flex: 1 1 235px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.14s;
}
.testimonial-card p,
.testimonial-card .testimonial-author {
  color: #1D3B47;
}
.testimonial-card .stars {
  color: #E47219;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
.testimonial-card:hover {
  box-shadow: 0 6px 26px rgba(29,59,71,0.14);
  transform: scale(1.02) translateY(-1px);
}
@media (max-width: 900px){
  .testimonial-slider{ gap: 12px;}
}
@media (max-width: 600px){
  .testimonial-slider{ flex-direction: column; gap: 16px; }
  .testimonial-card{ width:100%; min-width: unset; flex: 1 1 100%;}
}

/* ===============
   CARDS/PROJECTS
   =============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { 
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(29,59,71,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 22px 18px;
}

.project-highlight {
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(29,59,71,0.06);
  background: #fff;
  padding: 24px 20px;
  margin-bottom: 20px;
}
.before-after-desc {
  margin: 14px 0 0 0;
  font-size: 0.98rem;
  color: #1D3B47;
  line-height: 1.5;
}

/* ============
   LAYOUT FLEXBOX COMPONENTS
   ============ */
.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) {
  .content-grid { flex-direction: column; gap: 16px; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* =============
   TABLES
   ============= */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  background: #fff;
  font-size: 1rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(29,59,71,0.07);
}
th, td {
  border: 1px solid #F5F5F2;
  padding: 12px 16px;
  text-align: left;
  color: #1D3B47;
}
th {
  background: #F5F5F2;
  font-family: 'Montserrat', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1D3B47;
}

/* ====================
   CALL TO ACTION SECTIONS
   ==================== */
.cta, .cta-final {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 22px rgba(29,59,71,0.05);
  padding: 34px 0;
  margin: 32px 0;
  text-align: center;
}
.cta h2, .cta-final h2 {
  margin-bottom: 16px;
  color: #1D3B47;
  font-size: 1.5rem;
}
.cta .cta-primary, .cta-final .cta-primary {
  margin-top: 12px;
}
@media (max-width: 600px){
  .cta, .cta-final { padding: 17px 0; margin: 20px 0;}
}

/* ===================
   LEGAL / POLICY SECTION
   =================== */
.legal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(29,59,71,0.06);
  margin: 32px 0;
  padding: 30px 20px;
}
.legal ol {
  margin-left: 1em;
  margin-bottom: 24px;
  padding-left: 24px;
}
.legal li {
  color: #22353e;
  margin-bottom: 14px;
  font-size: 1rem;
}

/* ===================
   MISCELLANEOUS SECTIONS
   =================== */
.why-us .guarantee-box {
  background: #1D3B47;
  color: #fff;
  border-radius: 10px;
  font-family: 'Montserrat',serif;
  padding: 14px 18px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 1.09rem;
  letter-spacing: 0.03em;
  text-align: center;
}
.categories {
  margin-bottom: 18px;
  font-family: 'Montserrat',serif;
  font-size: 1rem;
  color: #B45713;
}
.featured-tips {
  background: #F5F5F2;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.98rem;
  color: #1D3B47;
}
.featured-tips h4 { margin-bottom: 8px; color: #B45713;}
.privacy-notice {
  background: #F5F5F2;
  padding: 12px 16px;
  border-radius: 10px;
  margin-top: 10px;
  font-size: 0.95rem;
}
.map-placeholder {
  background: #F5F5F2;
  border-radius: 10px;
  padding: 22px 16px;
  margin-top: 14px;
  color: #555;
  font-style: italic;
  font-size: 0.98rem;
}

/* ========================
   FOOTER
   ======================== */
footer {
  background: #F5F5F2;
  margin-top: 56px;
  border-top: 2px solid #ECECEC;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 24px 20px;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.footer-brand img {
  height: 48px;
  width: auto;
}
.footer-info {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.98rem;
  color: #1D3B47;
}
.footer-info a {
  color: #B45713;
  text-decoration: underline;
  margin: 0 4px;
}
.footer-nav {
  display: flex;
  gap: 18px;
}
.footer-nav a {
  color: #1D3B47;
  font-size: 0.95rem;
  transition: color 0.13s;
}
.footer-nav a:hover {
  color: #B45713;
}
@media (max-width: 800px){
  footer .container{
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 22px 10px;
  }
  .footer-nav{
    gap:10px;
    margin-top: 6px;
  }
}

/* ===========================
   COOKIE CONSENT BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 10000;
  background: #1D3B47;
  color: #fff;
  padding: 24px 18px 24px 22px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 -2px 32px rgba(29,59,71,0.13);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  transition: transform 0.26s cubic-bezier(.67,.03,.32,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner__text {
  font-size: 1rem;
  letter-spacing:0.01em;
  margin-bottom: 8px;
  max-width: 550px;
}
.cookie-banner__buttons {
  display: flex;
  gap: 16px;
}
.cookie-btn, .cookie-btn-settings {
  font-family: 'Montserrat',serif;
  font-size: 1rem;
  border: none;
  padding: 10px 26px;
  border-radius: 999px;
  cursor: pointer;
  margin: 0;
  transition: background .17s, color .17s;
}
.cookie-btn {
  background: #B45713;
  color: #fff;
  font-weight: 600;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #E47219;
}
.cookie-btn-settings {
  background: #fff;
  color: #1D3B47;
  font-weight: 600;
  border: 1px solid #B45713;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #F5F5F2;
  color: #B45713;
}
@media (max-width: 600px){
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 18px 6px; gap: 14px; }
  .cookie-banner__buttons { gap: 10px; }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 20000;
  left: 0; right: 0; top: 0; bottom:0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20,26,30,0.29);
  animation: fade-in 0.18s;
  pointer-events: auto;
}
@keyframes fade-in {
  from{ opacity:0; }
  to  { opacity:1; }
}
.cookie-modal.hide { display: none;}
.cookie-modal__window {
  background: #fff;
  color: #1D3B47;
  border-radius: 24px;
  box-shadow: 0 6px 44px rgba(29,59,71,0.16);
  max-width: 460px;
  width: 93vw;
  padding: 38px 28px 30px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slide-modal .25s;
}
@keyframes slide-modal {
  from{ transform: translateY(30px); opacity:.7; }
  to  { transform:translateY(0);} 
}
.cookie-modal__close {
  position: absolute; top: 16px; right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #1D3B47;
  cursor: pointer;
}
.cookie-modal__title {
  font-family:'Montserrat',serif;
  font-size:1.2rem;
  color:#B45713;
  margin-bottom: 10px;
}
.cookie-modal__section {
  margin-bottom: 10px;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 7px;
}
.cookie-modal label {
  font-size: 1rem;
  font-family: 'Montserrat',serif;
}
.cookie-switch {
  width: 44px;
  height: 24px;
  position: relative;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  background: #1D3B47;
  border-radius:22px;
  top: 0; left: 0;
  right: 0; bottom: 0;
  transition: background 0.2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #B45713;
}
.cookie-slider:before {
  position: absolute;
  content: '';
  left: 3px;
  top: 2.5px;
  width: 19px; height: 19px;
  border-radius:50%;
  background: #fff;
  box-shadow:0 2px 8px rgba(29,59,71,0.08);
  transition: transform 0.22s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}

@media(max-width:480px){
  .cookie-modal__window{padding:22px 5vw 18px 5vw;}
}

/* =====================
   FORM AND CONTACT PAGE
   ===================== */
.contact-form-section form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
input[type="text"], input[type="email"], input[type="tel"], textarea {
  background: #F5F5F2;
  border: 1px solid #E3E2DE;
  border-radius: 9px;
  padding: 13px 14px;
  font-size: 1rem;
  font-family: 'Roboto',serif;
  color: #1D3B47;
  transition: border .16s, box-shadow .17s;
}
input:focus, textarea:focus {
  border: 1.5px solid #B45713;
  outline: none;
  box-shadow: 0 4px 16px rgba(180, 87, 19, 0.09);
}
button[type="submit"] {
  background: #B45713;
  color: #fff;
  font-family: 'Montserrat',serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  padding: 13px 36px;
  box-shadow: 0 2px 8px rgba(180, 87, 19, 0.07);
  cursor: pointer;
  transition: background .17s;
}
button[type="submit"]:hover {
  background: #E47219;
}

/* ================
   RESPONSIVE SCALING
   ================ */
@media (min-width: 1400px) {
  body, html { font-size: 18px; }
  h1{ font-size: 2.8rem;}
  h2{ font-size: 2.2rem;}
}
@media (max-width: 1100px) {
  .container { padding: 0 7px; }
}
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem;}
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.19rem;}
  .content-wrapper{gap: 12px;}
}

/* ================
   MISC/UTILITY
   ================ */
.text-section { margin-bottom: 20px;}
.text-section strong{color:#B45713;}
.section.about-short{margin-bottom:52px;}

::-webkit-scrollbar {
  width: 10px;
  background: #F5F5F2;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb {
  background: #E3E2DE;
  border-radius: 12px;
}

/* ================
   PRINT STYLING
   ================ */
@media print {
  * { box-shadow: none !important; color-adjust: exact !important; }
  header,footer,nav,.mobile-menu,.cookie-banner,.cookie-modal{display:none!important;}
  .container{max-width:100%!important;}
}

