/* CSS RESET & BASELINE 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7F9FB;
  color: #1B263B;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:active, a:focus {
  outline: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
  box-shadow: none;
}

/***************************************
 *   COLOR & TYPOGRAPHY VARIABLES     *
 *************************************/
:root {
  --primary: #1B263B;
  --secondary: #B2C6D6;
  --accent: #FFB63D;
  --neutral-bg: #F7F9FB;
  --card-bg: #ffffff;
  --footer-bg: #E9ECEF;
  --border: #E5E7EB;
  --shadow: 0 2px 10px rgba(27,38,59,0.07);
  --radius: 16px;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Source Sans Pro', Arial, Helvetica, sans-serif;
}

/***************************************
 *   LAYOUT & CONTAINER STYLES        *
 *************************************/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
/gap: 0;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/***************************************
 *   HEADER & NAVIGATION              *
 *************************************/
header {
  background: var(--neutral-bg);
  box-shadow: 0 2px 8px rgba(27,38,59,0.04);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
header img {
  height: 42px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 8px;
  padding: 4px 12px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}

.cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  border-radius: 32px;
  padding: 12px 32px;
  box-shadow: 0 3px 16px rgba(27,38,59,0.05);
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 6px 24px rgba(27,38,59,0.07);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 28px;
  color: var(--primary);
  margin-left: 12px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.16s;
  z-index: 32;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
}

/***** Mobile Nav Overlay *****/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(27,38,59,0.90);
  backdrop-filter: blur(1px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.5, 1, 0.6, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 32px;
  background: none;
  border: none;
  color: #fff;
  padding: 24px 24px 0 0;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 42px 0 0 0;
  padding: 0 32px 24px 32px;
  width: 100vw;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 11px 0;
  border-radius: 10px;
  width: 100%;
  transition: background 0.17s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

/***** Hide nav on mobile *****/
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}

/***************************************
 *   HERO SECTIONS                     *
 *************************************/
.hero {
  background: linear-gradient(90deg, #F7F9FB 60%, #E5ECF3 100%);
  min-height: 330px;
  display: flex;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.01em;
}
.hero p {
  font-size: 1.13rem;
  line-height: 1.6;
  color: #435066;
  max-width: 640px;
}
.hero .cta.primary {
  margin-top: 10px;
}

/***************************************
 *   FEATURES SECTION & LISTS         *
 *************************************/
.features {
  background: none;
}
.features .content-wrapper {
  gap: 24px;
}
.features h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.feature-grid {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}
.feature-grid li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 27px;
  font-size: 1.04rem;
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.feature-grid img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: grayscale(25%);
}

/***************************************
 *   ABOUT / SERVICES / POLICY PAGES  *
 *************************************/
.about .text-section, .services .text-section, .policy .text-section {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1.12rem;
  color: #475061;
}
.about .text-section ul, .features .content-wrapper ul, .services .text-section ul, .policy .text-section ul {
  padding-left: 0;
  margin-left: 0;
  gap: 10px;
}
.about .text-section li, .features ul li, .services .text-section li, .policy .text-section li {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}
.about .text-section ul li:before, .features .content-wrapper ul li:before, .services .text-section ul li:before, .policy .text-section ul li:before {
  display: none;
}

/***************************************
 *   SERVICES LIST                    *
 *************************************/
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 5px;
}
.service-list li {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 32px 22px 32px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.18s, border 0.17s, transform 0.15s;
}
.service-list li:hover, .service-list li:focus-within {
  box-shadow: 0 8px 20px rgba(27,38,59,0.13);
  border: 1.5px solid var(--secondary);
  transform: translateY(-1.5px) scale(1.012);
}
.service-list h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
}
.service-list p {
  color: #49546B;
  font-size: 1rem;
}
.price {
  font-family: var(--font-display);
  color: var(--accent);
  font-weight: 600;
  margin-left: 6px;
  font-size: 1.09em;
}

/***************************************
 *   TESTIMONIALS CARDS               *
 *************************************/
.testimonials {
  background: none;
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonials h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(27,38,59,0.06);
  padding: 20px 30px;
  margin-bottom: 20px;
  min-width: 200px;
  max-width: 660px;
  color: #1B263B;
  font-family: var(--font-body);
}
.testimonial-card blockquote {
  font-size: 1.06rem;
  font-style: italic;
  color: #28364d;
  font-weight: 500;
  margin: 0 0 10px 0;
}
.testimonial-card p {
  margin-top: 0;
  font-size: 0.98rem;
  color: #556080;
}.testimonial-card strong { font-weight: 700; color: var(--primary); }

/***************************************
 *   NEWS ARTICLES GRID               *
 *************************************/
.news-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.news-grid article {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  flex: 1 1 280px;
  min-width: 240px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, border 0.16s, transform 0.16s;
}
.news-grid article:hover {
  box-shadow: 0 8px 22px rgba(27,38,59,0.12);
  border: 1.5px solid var(--secondary);
  transform: translateY(-2px) scale(1.012);
}
.news-grid h3 {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--primary);
}
.news-grid p {
  color: #506076;
  font-size: 0.98rem;
  font-family: var(--font-body);
}

/***************************************
 *   CTA BANNER/SECTIONS              *
 *************************************/
.cta .content-wrapper {
  align-items: center;
}
.cta .cta.primary {
  font-size: 1.15rem;
  padding: 16px 40px;
  margin-top: 14px;
  margin-bottom: 0;
}

/***************************************
 *   FOOTER                           *
 *************************************/
footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 36px 0;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
footer img {
  height: 36px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
}
.footer-nav a {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 6px;
  padding: 3px 10px;
  transition: background 0.17s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}
footer p {
  font-size: 0.98rem;
  color: #4A5766;
  flex-basis: 100%;
  padding-top: 10px;
  letter-spacing: 0.01em;
}

/***************************************
 *   POLICY / LEGAL PAGES             *
 *************************************/
.policy {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 32px 16px 40px 16px;
}
.policy h1 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.policy h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
.policy h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 19px;
  color: var(--primary);
}

/***************************************
 *   CONTACT PAGE                     *
 *************************************/
.contact-details .text-section ul {
  padding-left: 3px;
  margin-bottom: 4px;
  gap: 11px;
}
.contact-details .text-section li {
  font-size: 1.05rem;
  margin-bottom: 5px;
  color: #395166;
  font-family: var(--font-body);
}
.contact-details .text-section p {
  margin-top: 6px;
  color: #465167;
}

/***************************************
 *   UTILITIES, FLEX WRAPPERS         *
 *************************************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--card-bg);
  padding: 20px 24px;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***************************************
 *   RESPONSIVE DESIGN – MOBILE FIRST *
 *************************************/
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  header .container,footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
  }
  .hero {
    min-height: 0;
    padding-top: 24px;
    padding-bottom: 24px;
    margin-bottom: 30px;
  }
  .hero .content-wrapper {
    gap: 14px;
  }
  .feature-grid, .service-list {
    gap: 14px;
  }
  .news-grid {
    flex-direction: column;
    gap: 20px;
  }
  .section {
    margin-bottom: 32px;
    padding: 22px 7px;
    gap: 14px;
  }
  .testimonial-card {
    padding: 15px 11px;
    gap: 14px;
    max-width: 95vw;
  }
  .service-list li, .news-grid article {
    padding: 16px 10px;
  }
  .footer-nav, .main-nav {
    gap: 14px;
    flex-direction: column;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .content-grid {
    gap: 14px;
    flex-direction: column;
  }
}

/***************************************
 *   HOVER, FOCUS, TRANSITIONS        *
 *************************************/
.content-wrapper a:not(.cta), .footer-nav a, .main-nav a, .mobile-nav a {
  transition: color 0.19s, background 0.18s, box-shadow 0.15s;
}
.service-list li, .news-grid article, .testimonial-card {
  transition: box-shadow 0.18s, border 0.17s, transform 0.17s;
}
.cta.primary {
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}

/***************************************
 *   MICRO-INTERACTIONS & ANIMATIONS  *
 *************************************/
.cta.primary:active {
  box-shadow: 0 1px 4px rgba(27,38,59,0.16);
  transform: scale(0.98);
}
.service-list li:active, .news-grid article:active {
  transform: scale(0.98);
}
.news-grid article:focus-within {
  border: 1.5px solid var(--accent);
}

/***************************************
 *   COOKIE CONSENT BANNER            *
 *************************************/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 20px rgba(27,38,59,0.10);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 22px 32px;
  z-index: 200;
  font-family: var(--font-body);
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.5,1,0.6,1), opacity 0.25s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner__text {
  color: #425060;
  flex: 1;
  margin-right: 20px;
  font-size: 1rem;
  min-width: 110px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner__accept, .cookie-banner__reject, .cookie-banner__settings {
  padding: 10px 21px;
  border-radius: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 1px 4px rgba(27,38,59,0.05);
  transition: background 0.13s, color 0.15s;
}
.cookie-banner__accept {
  background: var(--primary);
  color: #fff;
}
.cookie-banner__accept:hover, .cookie-banner__accept:focus {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner__reject {
  background: #dfeaf5;
  color: var(--primary);
}
.cookie-banner__reject:hover, .cookie-banner__reject:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-banner__settings {
  background: #FFF5E1;
  color: var(--accent);
}
.cookie-banner__settings:hover, .cookie-banner__settings:focus {
  background: var(--accent);
  color: var(--primary);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 8px;
  }
  .cookie-banner__text {
    margin-right: 0;
  }
  .cookie-banner__actions {
    justify-content: flex-start;
    gap: 10px;
  }
}

/****************************
 * COOKIE SETTINGS MODAL    *
 ***************************/
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 500;
  background: rgba(27,38,59,0.43);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.28s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__content {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 32px rgba(27,38,59,0.13);
  padding: 38px 30px 24px 30px;
  min-width: 280px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  right: 20px;
  top: 18px;
  background: none;
  font-size: 24px;
  color: var(--primary);
  border: none;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: var(--accent);
}
.cookie-modal__title {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--primary);
}
.cookie-modal__category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #f4f8fa;
  padding: 13px 10px;
  border-radius: 13px;
  margin-bottom: 8px;
}
.cookie-modal__category-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #35425c;
  font-weight: 500;
}
.cookie-modal__toggle {
  appearance: none;
  width: 37px;
  height: 20px;
  background: #d7dce2;
  border-radius: 25px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.13s;
  margin-left: 14px;
}
.cookie-modal__toggle:checked {
  background: var(--accent);
}
.cookie-modal__toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2.5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.17s;
}
.cookie-modal__toggle:checked:before {
  transform: translateX(17px);
}
.cookie-modal__category-desc {
  font-size: 0.97rem;
  color: #607899;
  margin-top: 2px;
  margin-left: 2px;
}
.cookie-modal__footer {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 8px;
}
.cookie-modal__accept, .cookie-modal__save {
  padding: 10px 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.15s;
}
.cookie-modal__accept:hover, .cookie-modal__accept:focus,
.cookie-modal__save:hover, .cookie-modal__save:focus {
  background: var(--accent);
  color: var(--primary);
}
.cookie-modal__cancel {
  padding: 10px 22px;
  background: #dfeaf5;
  color: var(--primary);
  border-radius: 24px;
  font-family: var(--font-display);
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal__cancel:hover, .cookie-modal__cancel:focus {
  background: var(--primary);
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-modal__content {
    max-width: 99vw;
    min-width: 0;
    padding: 20px 7px 16px 7px;
  }
}

/***************************************
 *   TYPOGRAPHY HIERARCHY              *
 *************************************/
h1 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 9px;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.19rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 7px;
}
h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 600;
}
p, li {
  font-family: var(--font-body);
  font-size: 1.03rem;
  color: #222d3d;
}
strong {
  color: var(--primary);
  font-weight: 700;
}

/***************************************
 *   FOCUS STYLES                     *
 *************************************/
a:focus, button:focus, .cta:focus, .cookie-banner__accept:focus, .cookie-banner__reject:focus, .cookie-banner__settings:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--accent);
  z-index: 2;
}

/***************************************
 *   SCROLLBAR STYLES                 *
 *************************************/
::-webkit-scrollbar {
  background: #f2f5fa;
  width: 9px;
  border-radius: 0 9px 9px 0;
}
::-webkit-scrollbar-thumb {
  background: #D7DFEA;
  border-radius: 9px;
}

/***************************************
 *   PRINT STYLES                     *
 *************************************/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff !important; }
  .section, .container { box-shadow: none !important; border: none !important; }
}
