/* ==== CSS RESET & BASE ==== */
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, menu, 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;
}
html {box-sizing: border-box;}
*, *:before, *:after { box-sizing: inherit;}
body {
  line-height: 1.5;
  background: #EBF4FE;
  color: #1c2329;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul, ol {
  margin-left: 24px;
}
li {margin-bottom: 8px;}
section, main, header, footer {width: 100%; display: block;}
a {color: #225378; text-decoration: none; transition: color .2s;}
a:hover, a:focus {color: #157048; text-decoration: underline;}
:focus {
  outline: 2px solid #1E7257;
  outline-offset: 2px;
}


/* ==== BRAND FONTS ==== */
h1, h2, h3, h4, .logo-link, .footer-brand span, .cta {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
}


/* ==== TYPOGRAPHY SCALE ==== */
h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #225378;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #225378;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1E5378;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 8px;
}
p, ul, ol, blockquote, .footer-brand span {
  font-size: 1rem;
  margin-bottom: 12px;
}
strong { font-weight: 600; }

/* Responsive headings */
@media (max-width: 768px) {
  h1 {font-size: 1.5rem;}
  h2 {font-size: 1.2rem;}
}


/* ==== LAYOUT CONTAINERS ==== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
}


/* ==== HEADER ==== */
header {
  background: #fff;
  border-bottom: 1px solid #D3E3F3;
  box-shadow: 0 2px 8px rgba(34,83,120,0.06);
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px; padding-bottom: 10px;
}
.logo-link img {
  height: 44px;
  margin-right: 16px;
  vertical-align: middle;
}

/* Main nav */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #225378;
  padding: 7px 14px;
  border-radius: 6px;
  transition: background 0.22s, color .22s, box-shadow .22s;
  font-weight: 500;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EBF4FE;
  color: #1E7257;
}
.main-nav .cta.primary {
  background: #225378;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(34,83,120,0.09);
  margin-left: 12px;
  transition: background .2s, color .2s, box-shadow .2s;
  padding: 8px 24px;
  border: none;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: #157048;
  color: #fff;
  box-shadow: 0 4px 16px rgba(21,112,72,0.16);
}

/* ==== MOBILE HEADER ==== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #225378;
  cursor: pointer;
  margin-left: 18px;
  z-index: 70;
}

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

@media (max-width: 600px) {
  .logo-link img { height: 38px; }
  header .container { padding: 8px 12px; }
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(34,83,120,0.96);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 22px 24px 0 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  align-self: flex-end;
  z-index: 1100;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFD700;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
  margin: 32px 32px 0 0;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 10px 0 10px 0;
  line-height: 1.2;
  border-bottom: 1px solid rgba(255,255,255,0.13);
  width: 180px;
  text-align: right;
  border-radius: 0;
  transition: background .22s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #157048;
  color: #fff;
}


/* ==== HERO / CTA SECTION ==== */
.hero, .cta, .thank-you {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 18px rgba(34,83,120,0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  align-items: center;
}
.hero h1, .cta h2, .thank-you h1 {
  color: #225378;
  margin-bottom: 16px;
}
.hero p, .cta p, .thank-you p {
  color: #333c4a;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .hero, .cta, .thank-you { padding: 30px 6px; margin-bottom: 40px; }
}


/* ==== FLEX SPACING PATTERNS/MANDATORY ==== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; background: #fff; border-radius: 10px; }
.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;
  margin-bottom: 20px;
  background: #F6FAFD;
  border-left: 5px solid #225378;
  border-radius: 10px;
  box-shadow: 0 2px 18px rgba(34,83,120,0.03);
  color: #1C2329;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 24px 18px 18px 18px;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(21,112,72,0.03), 0 0.5px 1.5px #D3E3F3;
  min-width: 220px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #d3e3f3;
}
.feature-item h3 { color: #225378; font-size: 1.15rem;}
.feature-item strong { color: #157048; font-size: 1.02rem;}
.feature-item img { height: 40px; margin-bottom: 6px; }
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Service grid/card structure on uslugi.html */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-item {
  background: #fff;
  border-radius: 12px;
  padding: 24px 18px;
  box-shadow: 0 3px 10px rgba(34,83,120,0.06);
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  border: 1px solid #d3e3f3;
  margin-bottom: 20px;
}
.service-item h3 { color: #225378; }
.service-item img { height: 40px; margin-bottom: 6px; }
.service-item strong { color: #157048; font-size: 1.02rem;}

/* Article and download blocks in resursi.html */
.articles-list, .downloads, .links {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 9px rgba(34,83,120,.04);
  padding: 18px 18px 8px 18px;
  margin-bottom: 24px;
}
.articles-list h2, .downloads h2, .links h2 {
  margin-bottom: 7px;
  color: #157048;
  font-size: 1.17rem;
}
.articles-list ul, .downloads ul, .links ul {
  margin-left: 19px;
  margin-bottom: 4px;
}
.articles-list li, .downloads li, .links li {margin-bottom: 9px;}


/* ==== BUTTONS and CTA's ==== */
.cta,
button.cta, a.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  background: #225378;
  color: #fff;
  padding: 11px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, box-shadow 0.18s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(34,83,120,0.08);
  margin-top: 10px;
  margin-bottom: 6px;
}
.cta.primary {
  background: #225378;
}
.cta.primary:hover, .cta.primary:focus {
  background: #157048;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 24px rgba(21,112,72,0.13);
}


/* ==== FOOTER ==== */
footer {
  background: #fff;
  margin-top: 50px;
  border-top: 1px solid #d3e3f3;
  box-shadow: 0 -2px 10px rgba(34,83,120,0.03);
  padding-top: 32px;
  padding-bottom: 24px;
}
footer .container {
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}
.footer-brand img {
  height: 38px;
}
.footer-brand span {
  font-weight: 500;
  color: #225378;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: flex-start;
  max-width: 450px;
  margin-bottom: 12px;
}
.footer-menu a {
  color: #1E5378;
  font-size: 1rem;
  padding: 3px 8px;
  border-radius: 4px;
  transition: background .17s, color .14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #EBF4FE;
  color: #157048;
}
.footer-contact {
  font-size: 0.98rem;
  color: #225378;
  margin-bottom: 12px;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  background: #EBF4FE;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  justify-content: center;
  transition: background .18s;
}
.footer-social a:hover, .footer-social a:focus {
  background: #157048;
}
.footer-social img { height: 22px; width: 22px; }

@media (max-width: 900px) {
  footer .container {flex-direction: column; gap: 24px;}
}
@media (max-width: 600px) {
  footer {padding: 22px 6px; }
  .footer-brand img { height: 27px; }
}


/* ==== GENERIC CARDS ==== */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(34,83,120,0.06);
  padding: 24px 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* ==== BLOG LIST ==== */
.blog-list {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(34,83,120,.05);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.featured-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.featured-posts article {
  background: #F6FAFD;
  border-radius: 8px;
  padding: 20px 15px;
  min-width: 220px;
  box-shadow: 0 1px 7px rgba(21,112,72,0.05);
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border: 1px solid #d3e3f3;
}
.featured-posts article h2, .featured-posts article h2 a {
  font-size: 1.1rem;
  color: #225378;
  font-family: 'Montserrat', Arial, sans-serif;
}
.featured-posts article p { font-size: 0.98rem; color: #1e5378;}
.blog-categories {
  background: #EBF4FE;
  border-radius: 8px;
  padding: 16px 12px 6px;
  margin: 14px 0 0 0;
}
.blog-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-left: 0;
  margin-bottom: 0;
}
.blog-categories li {
  background: #fff;
  color: #157048;
  padding: 6px 13px;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 0;
}

/* ==== TEAM BIOS ==== */
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.team-member {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 9px rgba(34,83,120,0.08);
  padding: 22px 16px;
  flex: 1 1 210px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #d3e3f3;
  margin-bottom: 10px;
}
.team-member img {
  height: 37px; margin-bottom: 7px;
}
.team-member h3 { color: #225378; font-size: 1.10rem;}

/* ==== ABOUT SHORT BOX ==== */
.about-short {
  background: #F6FAFD;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(34,83,120,0.03);
  margin-bottom: 60px;
  padding: 34px 16px;
}


/* ==== CONTACT INFO BLOCK ==== */
.contact-info-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 38px;
  padding: 0 0 12px 0;
}
.contact-info-block .text-section {
  flex: 2 1 230px;
}
.map-embed {
  flex: 1 1 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-embed img { max-width: 140px; }

@media (max-width: 800px) {
  .contact-info-block { flex-direction: column; gap: 15px; }
}


/* ==== FAQ ==== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-list li { background: #F5F9FE; border-radius: 6px; padding: 13px 17px; font-size: 1rem; color: #1C2329; }

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2003;
  background: #fff;
  box-shadow: 0 -3px 20px 0 rgba(34,83,120,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 25px;
  gap: 16px;
  min-height: 60px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #1e5378;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform .36s cubic-bezier(.77,0,.18,1), opacity .28s;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  border-radius: 5px;
  padding: 7px 20px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  margin-bottom: 0px;
}
.cookie-banner .accept {
  background: #157048;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #225378;
}
.cookie-banner .reject {
  background: #dbeeff;
  color: #225378;
  border: 1px solid #225378;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #FFD4D6;
  color: #b62020;
  border-color: #b62020;
}
.cookie-banner .settings {
  background: #EBF4FE;
  color: #157048;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #157048;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {flex-direction: column; align-items: flex-start; padding: 18px 10px; gap: 12px;}
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed; z-index: 2200; left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(34,83,120,.72);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .25s;
  opacity: 0; pointer-events: none;
}
.cookie-modal-overlay.show { opacity: 1; pointer-events: auto; }
.cookie-modal {
  background: #fff;
  border-radius: 13px;
  padding: 34px 24px 28px 24px;
  min-width: 320px; max-width: 96vw;
  box-shadow: 0 1px 24px 0 rgba(34,83,120,0.19);
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #225378;
  position: relative;
  animation: cookie-modal-appear .32s cubic-bezier(.78,.02,.45,1.43);
}
@keyframes cookie-modal-appear {
  from { opacity: 0; transform: translateY(50px) scale(.92);} to { opacity: 1; transform: none;}
}
.cookie-modal h2 {
  font-size: 1.2rem;
  color: #157048;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 7px;
}
.cookie-modal-categories {
  display: flex; flex-direction: column; gap: 14px;
}
.cookie-modal-category {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #d3e3f3;
}
.cookie-modal-category:last-child { border-bottom: none; }
.cookie-category-label {
  font-size: 1rem;
  color: #225378;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cookie-toggle-switch input[type=checkbox] {
  display: none;
}
.cookie-toggle-switch {
  display: inline-block;
  width: 38px; height: 20px;
  background: #e5eaf5;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: background .18s;
}
.cookie-toggle-switch span {
  position: absolute; left: 2px; top: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #ccc;
  transition: left .16s, background .16s;
}
.cookie-toggle-switch input[type=checkbox]:checked + span {
  left: 20px;
  background: #225378;
}
.cookie-toggle-switch input[type=checkbox]:disabled + span {
  background: #b3b3b3;
}
.cookie-modal-actions {
  display: flex; gap: 18px; margin-top: 15px;
  flex-wrap: wrap;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  cursor: pointer;
  background: #225378;
  color: #fff;
  transition: background .17s;
}
.cookie-modal-actions .secondary {
  background: #EBF4FE;
  color: #157048;
  border: 1px solid #225378;
}
.cookie-modal-actions .secondary:hover, .cookie-modal-actions .secondary:focus {
  background: #157048; color: #fff;
}
.cookie-modal-close {
  position: absolute; top: 11px; right: 12px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #b3b3b3;
  cursor: pointer;
  transition: color .15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #225378;}
@media (max-width: 450px) {
  .cookie-modal { padding: 20px 6px; min-width: unset; }
}

/* ==== POLICY, TEXT-SECTIONS, VALUE LISTS ==== */
.policy, .text-section, .values, .approach {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.2px 10px rgba(34,83,120,0.04);
  margin-bottom: 42px;
  padding: 36px 18px;
}

.values ul, .approach ul, .text-section ul {
  margin-left: 23px;
}
.values ul li, .approach ul li, .text-section ul li {
  margin-bottom: 8px;
}


/* ==== CTA ROW ==== */
.cta-row {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .cta-row {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* ==== RESPONSIVE BREAKPOINTS ==== */
@media (max-width: 1024px) {
  .container { max-width: 100%; }
  .features-grid, .services-grid, .team-bios, .card-container, .content-grid {
    gap: 16px;
  }
  .feature-item, .service-item, .card {
    min-width: 170px;
    flex: 1 1 160px;
  }
  .footer-menu { max-width: 100%; }
}
@media (max-width: 768px) {
  .features-grid, .services-grid, .team-bios, .card-container, .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .feature-item, .service-item, .team-member, .card {
    min-width: unset;
    width: 100%;
    flex: 1 1 97%;
  }
  .about-short, .section, .policy, .blog-list {
    padding: 18px 4px;
    margin-bottom: 30px;
  }
}
@media (max-width: 500px) {
  .container {padding: 0 5px; }
  .section, .hero, .cta, .about-short, .policy, .blog-list {padding: 12px 2px;}
}

/* Responsive for text-image-section */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* TESTIMONIALS CONTRAST (CRITICAL) */
.testimonials, .testimonial-card {
  background: #F6FAFD;
  color: #1C2329;
}
.testimonial-card blockquote {
  font-size: 1.06rem;
  font-style: italic;
  color: #1C2329;
  padding-left: 0;
  margin-bottom: 0;
}
.testimonial-card strong {color: #157048;}

/* Smooth transitions on major elements */
.card, .feature-item, .service-item, .team-member, .testimonial-card, .articles-list, .downloads, .links, .policy, .values, .approach, .about-short {
  transition: box-shadow 0.28s, transform 0.19s;
}
.card:hover, .feature-item:hover, .service-item:hover, .team-member:hover, .testimonial-card:hover {
  box-shadow: 0 6px 36px rgba(21,112,72,0.13);
  transform: translateY(-3px) scale(1.012);
  z-index: 2;
}

/* Hide extra bottom scroll from banners/menus overflow */
body {
  /* For fixed cookie banner and mobile menu overlays */
  overflow-x: hidden;
}

/* Miscellaneous fixes for spacing and readability */
::selection { background: #D7EBFF; }

/* Accessibility: High contrast for testimonial text */
.testimonial-card blockquote,
.testimonial-card strong {
  color: #1C2329;
  background: none;
}
