/* --- CSS RESET AND 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 {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  line-height: 1.6;
  color: #1C2833;
  background: #FAFBFC;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}

/* --- TYPOGRAPHY & HEADINGS --- */
@font-face {
  font-family: 'Montserrat';
  font-weight: 700;
  font-style: normal;
  src: local('Montserrat Bold'), local('Montserrat-Bold'),
    url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap'); /* fallback */
}
@font-face {
  font-family: 'Open Sans';
  font-weight: 400;
  font-style: normal;
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
    url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #1C2833;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
p, li, strong {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
p, li {
  font-size: 1rem;
  color: #1C2833;
}
strong {
  font-weight: bold;
}
.subheadline {
  color: #4F868A;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

/* --- CONTAINER & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 4px 22px 0 rgba(44,62,80,0.09);
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 24px 8px;
    border-radius: 12px;
  }
  .container {
    padding: 0 6px;
  }
  .content-wrapper {
    gap: 22px;
  }
}

/* --- HEADER & NAVIGATION --- */
header {
  box-shadow: 0 2px 16px rgba(44,62,80, 0.06);
  background: #FFF;
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #1C2833;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 1px;
  display: inline-block;
}
header nav a:hover, header nav a:focus {
  background: #4F868A;
  color: #FFF;
}
header img {
  height: 46px;
}
.cta-button {
  background: #4F868A;
  color: #FFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 1px;
  padding: 13px 30px;
  border-radius: 24px;
  margin-left: 22px;
  box-shadow: 0 2px 8px rgba(79,134,138,0.16);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  border: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: #1C2833;
  color: #FFF;
  box-shadow: 0 4px 16px rgba(28,40,51,0.12);
  transform: translateY(-2px) scale(1.025);
}

/* --- Mobile Burger Menu --- */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 1040px) {
  header nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    font-size: 2.1rem;
    background: #4F868A;
    color: #FFF;
    border-radius: 18px;
    padding: 10px 16px;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 21;
    box-shadow: 0 2px 12px rgba(79,134,138,0.11);
    transition: background 0.18s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #1C2833;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 340px;
  height: 100vh;
  background: #FFF;
  box-shadow: -4px 0 36px rgba(44,62,80,0.22);
  transform: translateX(110%);
  transition: transform 0.36s cubic-bezier(.74,.05,.39,.97);
  z-index: 1200;
  padding: 0 0 20px 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  margin: 18px 18px 0 0;
  background: #4F868A;
  color: #FFF;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(79,134,138,0.12);
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #1C2833;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  padding-left: 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.11rem;
  letter-spacing: 1px;
  padding: 12px 4px;
  border-radius: 6px;
  color: #1C2833;
  transition: background 0.18s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #4F868A;
  color: #FFF;
}
@media (max-width: 600px) {
  .mobile-menu {
    width: 100vw;
    max-width: 100vw;
  }
  .mobile-nav {
    padding-left: 11vw;
  }
}

/* --- MAIN SECTIONS & HERO --- */
main {
  background: #FAFBFC;
  min-height: 80vh;
  z-index: 1;
}

/* --- FEATURE/ICON GRID --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 12px;
  margin-bottom: 16px;
}
.feature-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #EAECEE;
  border-radius: 10px;
  padding: 18px 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  color: #1C2833;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 350px;
  box-shadow: 0 1px 8px rgba(44,62,80,0.06);
  margin-bottom: 0;
}
.feature-grid img {
  width: 36px;
  height: 36px;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 14px;
  }
  .feature-grid li {
    padding: 16px 10px;
    min-width: 140px;
    font-size: 1rem;
  }
}
@media (max-width: 700px) {
  .feature-grid {
    flex-direction: column;
    gap: 10px;
  }
  .feature-grid li {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    font-size: .97rem;
  }
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: row;
  margin-bottom: 12px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #EAECEE;
  border-radius: 8px;
  padding: 14px 16px;
  color: #1C2833;
  font-weight: 700;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  flex: 1 1 180px;
}
@media (max-width: 900px) {
  .feature-list {
    gap: 10px;
  }
}
@media (max-width: 700px) {
  .feature-list {
    flex-direction: column;
    gap: 8px;
  }
  .feature-list li {
    width: 100%;
    min-width: 0;
  }
}

/* --- SERVICES GRID --- */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-card {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 3px 22px rgba(79,134,138,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 30px;
  min-width: 220px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.16s;
  position: relative;
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 6px 32px rgba(79,134,138,0.17);
  transform: translateY(-2px) scale(1.02);
  z-index: 1;
}
.service-card h3 {
  font-size: 1.22rem;
  color: #4F868A;
  margin-bottom: 12px;
}
.service-card p {
  color: #1C2833;
  font-size: 1rem;
  margin-bottom: 18px;
}
.service-price {
  margin-top: 8px;
  font-weight: bold;
  color: #1C2833;
  background: #EAECEE;
  border-radius: 7px;
  padding: 5px 14px;
  font-size: .99rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.5px;
}
@media (max-width: 900px) {
  .services-grid {
    gap: 14px;
  }
  .service-card {
    padding: 16px 15px;
  }
}
@media (max-width: 700px) {
  .services-grid {
    flex-direction: column;
    gap: 14px;
  }
  .service-card {
    width: 100%;
    min-width: 0;
    margin-bottom: 12px;
    padding: 15px 8px;
  }
}

/* --- PROCESS STEPS (ordered list) --- */
.process-steps {
  margin-bottom: 18px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: stepno;
}
.process-steps li {
  position: relative;
  padding-left: 38px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.process-steps li strong {
  color: #4F868A;
}
.process-steps li:before {
  content: counter(stepno);
  counter-increment: stepno;
  background: #4F868A;
  color: #FFF;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: bold;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 3px;
  box-shadow: 0 0 5px rgba(79,134,138,0.10);
}

/* --- TIPS LIST (INSPIRATIONS page) --- */
.tips-list {
  margin-top: 8px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tips-list li {
  padding-left: 14px;
  position: relative;
  font-size: 1rem;
}
.tips-list li:before {
  content: '\2022';
  color: #4F868A;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #EAECEE;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(76,114,130,0.09);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  min-height: 82px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.12s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 22px rgba(44,62,80,0.12);
  transform: scale(1.015) translateY(-1px);
  z-index: 1;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #1C2833;
  font-weight: 600;
  line-height: 1.35;
}
.testimonial-card strong {
  color: #4F868A;
  font-size: .98rem;
  font-weight: 700;
  margin-left: 8px;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 8px;
    min-height: 56px;
  }
}

/* --- CONTACT INFO --- */
.contact-info {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.contact-info span, .contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1C2833;
  font-weight: 600;
  font-size: 1.01rem;
  background: #EAECEE;
  border-radius: 7px;
  padding: 6px 16px;
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .contact-info {
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
  }
  .contact-info span, .contact-info p {
    width: 100%;
    font-size: .98rem;
    padding: 6px 8px;
  }
}

/* --- FOOTER --- */
footer {
  background: #1C2833;
  color: #FFF;
  padding: 0 0 0 0;
  font-size: 1rem;
  width: 100%;
}
.footer-top, .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 30px;
  padding-bottom: 22px;
  flex-wrap: wrap;
}
.footer-top nav, .footer-bottom nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
}
.footer-top nav a, .footer-bottom nav a {
  color: #EAECEE;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: .97rem;
  transition: color 0.13s;
}
.footer-top nav a:hover, .footer-bottom nav a:hover, .footer-top nav a:focus, .footer-bottom nav a:focus {
  color: #4F868A;
}
.footer-bottom {
  border-top: 1px solid #4F868A;
  padding-top: 16px;
  padding-bottom: 14px;
  font-size: .92rem;
  color: #EAECEE;
  flex-wrap: wrap;
}
.footer-contact {
  color: #EAECEE;
  font-size: .94rem;
  margin-left: 24px;
  font-weight: 500;
}
@media (max-width: 900px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-contact {
    margin-left: 0;
  }
}

footer img {
  height: 38px;
  margin-bottom: 8px;
}

/* --- CARD CONTAINER & CARDS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(44,62,80,0.10);
  overflow: hidden;
  transition: box-shadow 0.13s, transform 0.12s;
  display: flex;
  flex-direction: column;
  padding: 22px 16px;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 20px rgba(44,62,80,0.16);
  transform: scale(1.012);
  z-index: 1;
}

/* --- TEXT-IMAGE SECTION --- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 700px) {
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- BUTTONS --- */
button, .button, .cta-button {
  cursor: pointer;
  transition: background 0.17s, color 0.15s, box-shadow 0.2s, transform 0.15s;
}
.button-secondary {
  background: #EAECEE;
  color: #4F868A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 18px;
  padding: 11px 26px;
  margin-left: 18px;
  border: 2px solid #4F868A;
}
.button-secondary:hover, .button-secondary:focus {
  background: #4F868A;
  color: #FFF;
}

/* --- FORMS (if any in future) --- */
input, textarea, select {
  border-radius: 8px;
  background: #EAECEE;
  border: 1.5px solid #4F868A;
  padding: 11px 16px;
  font-size: 1rem;
  margin-bottom: 12px;
}
input:focus, textarea:focus, select:focus {
  border-color: #1C2833;
  outline: none;
  box-shadow: 0 0 0 2px #4F868A44;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #1C2833;
  color: #FFF;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 18px 12vw 18px 12vw;
  box-shadow: 0 -2px 22px rgba(28,40,51,0.17);
  transition: transform 0.38s cubic-bezier(.78,.01,.38,.91);
  font-size: 1rem;
  flex-wrap: wrap;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner-content {
  flex: 1 1 200px;
  min-width: 170px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .button, .cookie-banner .cta-button {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 18px;
  padding: 9px 26px;
  border: none;
  min-width: 125px;
  margin-bottom: 0;
}
.cookie-accept {
  background: #4F868A;
  color: #FFF;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #2A627E;
}
.cookie-reject {
  background: #EAECEE;
  color: #1C2833;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #BCC5CC;
  color: #1C2833;
}
.cookie-settings {
  background: #fff;
  border: 2px solid #4F868A;
  color: #4F868A;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #4F868A;
  color: #FFF;
}
@media (max-width: 900px) {
  .cookie-banner {
    padding: 14px 3vw 14px 3vw;
    flex-direction: column;
    gap: 14px;
  }
  .cookie-banner-buttons {
    width: 100%;
    gap: 9px;
  }
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28,40,51,0.54);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.show {
  display: flex;
  animation: fadeInCookieModal 0.32s;
}
@keyframes fadeInCookieModal {
  from {opacity: 0;} to {opacity: 1;}
}
.cookie-modal {
  background: #FFF;
  color: #1C2833;
  border-radius: 18px;
  padding: 36px 36px 24px 36px;
  box-shadow: 0 2px 44px rgba(44,62,80,0.27);
  max-width: 400px;
  min-width: 260px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1rem;
  z-index: 6;
  position: relative;
  transform: translateY(-18px);
  animation: popInCookieModal 0.38s cubic-bezier(.71,.03,.37,.93);
}
@keyframes popInCookieModal {
  from {transform: translateY(40px) scale(.92);opacity:0;}
  to {transform:translateY(-18px) scale(1);opacity:1;}
}
.cookie-modal h3 {
  color: #4F868A;
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 7px 0 7px 0;
  border-bottom: 1px solid #EAECEE;
}
.cookie-modal-category:last-child {
  border-bottom: none;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #BCC5CC;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-toggle:checked {
  background: #4F868A;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #FFF;
  border-radius: 50%;
  transition: left 0.21s;
  box-shadow: 0 1px 2px rgba(44,62,80,0.09);
}
.cookie-toggle:checked:before {
  left: 20px;
}
.cookie-modal-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 17px;
  background: #4F868A;
  color: #FFF;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #1C2833;
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 15px 6vw 10px 6vw;
    min-width: 0;
    max-width: 100vw;
    border-radius: 10px;
  }
}

/* --- VISUAL EFFECTS, SHAPES & MODERN TONE --- */
hr {
  border: none;
  border-top: 2px solid #EAECEE;
  margin: 28px 0;
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.cta-button, .button, .service-card, .testimonial-card, .card, .feature-grid li, .feature-list li {
  will-change: transform, box-shadow;
}
input, textarea, select, .cookie-toggle {
  transition: border 0.18s, box-shadow 0.18s;
}

/* --- GENERAL SPACING FOR ALL CARDS/SECTIONS --- */
.section + .section, .content-wrapper > * + * {
  margin-top: 32px;
}
.card + .card, .service-card + .service-card, .testimonial-card + .testimonial-card {
  margin-top: 20px;
}

/* --- ACCESSIBILITY & FOCUS --- */
a:focus, button:focus, .cta-button:focus, .button:focus {
  outline: 2px dashed #4F868A;
  outline-offset: 2px;
}

/* --- UTILITIES --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mt-3 { margin-top: 18px; }
.mb-3 { margin-bottom: 18px; }

/* --- CUSTOM SCROLLBAR FOR BRAND --- */
::-webkit-scrollbar { width: 12px; background: #EAECEE; }
::-webkit-scrollbar-thumb { background: #4F868A; border-radius: 6px; }

/* --- PRINT STYLES (for privacy/cookie pages) --- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
}

/* END OF CSS */