/* =========================
   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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F6F8FB;
  color: #243256;
  font-family: 'Roboto', Georgia, serif;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 2em;
}
th, td {
  border: 1px solid #dde2ea;
  padding: 12px 16px;
  text-align: left;
  font-size: 1rem;
}
th {
  background: #f3f6fa;
  font-weight: bold;
}
thead tr {
  border-bottom: 2px solid #7f9dbb;
}

/* =========================
   TYPOGRAPHY & HEADINGS
   ========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, serif;
  color: #243256;
  font-weight: 600;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 500;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 11px;
}

p, ul, ol, blockquote, table {
  margin-bottom: 18px;
  font-size: 1.08rem;
}
strong, b {
  font-weight: 600;
  color: #1a2136;
}
em, i {
  color: #384765;
}
a {
  color: #243256;
  text-decoration: underline;
  transition: color 0.18s;
}
a:hover,
a:focus {
  color: #7F9DBB;
  text-decoration: none;
}

/* Typography refine for classic elegance */
body, .content-wrapper {
  letter-spacing: 0.01em;
}

/* =========================
   GLOBAL LAYOUT
   ========================= */
.container {
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}

main {
  flex: 1 1 auto;
}

header, footer {
  background: #fff;
  border-bottom: 1px solid #dde2ea;
}
footer {
  border-bottom: none;
  border-top: 1px solid #dde2ea;
  background: #fff;
  margin-top:60px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 900px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.text-section {
  text-align: left;
  margin-bottom: 38px;
}

/* Elegant section background (for separation) */
section:nth-child(even) {
  background: #f3f6fa;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(36, 50, 86, 0.05);
}

/* =========================
   FLEXBOX RULES & SPACING
   ========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(36,50,86,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  min-width: 250px;
  flex: 1 1 270px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(36,50,86,0.13);
  transform: translateY(-4px) scale(1.01);
}
.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;
  background: #f3f6fa;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(36,50,86,0.06);
  color: #1a2136;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature grid (on index) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(36,50,86,0.07);
  padding: 32px 24px;
  flex: 1 1 220px;
  min-width: 210px;
  transition: box-shadow 0.17s, transform 0.17s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 22px rgba(36,50,86,0.13);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img {
  height: 38px;
  margin-bottom: 9px;
}

/* Service summary tiles */
.service-summary-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 24px;
}
.service-summary-tiles > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(36,50,86,0.07);
  padding: 26px 19px 25px 19px;
  flex: 1 1 210px;
  min-width: 180px;
  transition: box-shadow 0.19s, transform 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-summary-tiles > div:hover {
  box-shadow: 0 6px 24px rgba(36,50,86,0.12);
  transform: translateY(-2px) scale(1.02);
}
.service-summary-tiles h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.18rem;
  color: #243256;
  font-family: 'Montserrat', serif !important;
}
.service-summary-tiles p {
  margin-bottom: 0;
}

/* Inline contact section */
.inline-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 14px;
}
.inline-contact p {
  margin: 0;
}

/* Blog post summary */
.blog-post-summary {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(36,50,86,0.09);
  padding: 24px 19px;
  margin-bottom: 22px;
}

/* Newsletter signup */
.newsletter-signup {
  background: #f3f6fa;
  border-radius:8px;
  padding: 18px 15px;
  margin-top: 10px;
}

/* Map block */
.map-block {
  background: #e5e9f1;
  border-radius: 14px;
  padding: 18px 15px;
  text-align: center;
  color: #384765;
}

/* Table styling (classic, elegant) */
table {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 12px rgba(36,50,86,0.05);
  overflow: hidden;
}
th, td {
  border: none;
  border-bottom: 1px solid #e3e8f1;
}
tr:last-child td {
  border-bottom: none;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
}
.faq-list > div {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 10px rgba(36,50,86,0.07);
  padding: 20px 16px 17px 16px;
  transition: box-shadow 0.15s, transform 0.17s;
}
.faq-list > div:hover {
  box-shadow: 0 5px 22px rgba(36,50,86,0.11);
  transform: translateY(-2px) scale(1.01);
}
.faq-list h3 {
  font-size:1.13rem;
}

/* Team Highlight */
.team-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  margin-top: 12px;
}
.team-highlight > div {
  background: #fff;
  padding: 17px 17px 14px 17px;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(36,50,86,0.07);
  flex: 1 1 240px;
}

/* =============================
   HEADER & NAVIGATION (DESKTOP)
   ============================= */
header {
  padding: 0;
  min-height: 70px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header img {
  height: 46px;
  margin-right: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-right: auto;
}
.main-nav a {
  font-family: 'Montserrat', serif;
  font-size: 1.08rem;
  padding: 8px 9px;
  border-radius: 6px;
  color: #243256;
  text-decoration: none;
  transition: background 0.14s, color 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #f6f8fb;
  color: #7F9DBB;
}

.cta-header {
  display: inline-block;
  font-family: 'Montserrat', serif;
  color: #f6f8fb;
  background: #243256;
  border-radius: 8px;
  padding: 11px 25px 10px 25px;
  font-weight: 600;
  margin-left: 11px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.16s, color 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 7px rgba(36,50,86,0.12);
}
.cta-header:hover,
.cta-header:focus {
  background: #7F9DBB;
  color: #ffffff;
  box-shadow: 0 3px 12px rgba(36,50,86,0.17);
}

/* =============================
   MOBILE NAVIGATION
   ============================= */
.mobile-menu-toggle {
  display: none;
  background: #f6f8fb;
  color: #243256;
  font-size: 2.15rem;
  border: none;
  border-radius: 8px;
  padding: 6px 14px 5px 14px;
  margin-left:15px;
  cursor: pointer;
  box-shadow: 0 1px 7px rgba(36,50,86,0.08);
  transition: background 0.14s, color 0.13s;
  z-index: 1050;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #e8edf6;
  color: #7F9DBB;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right:0;
  height: 100vh;
  background: #f6f8fb;
  box-shadow: 0 4px 36px rgba(36,50,86,0.19);
  z-index: 1200;
  padding: 32px 28px 18px 28px;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.86, 0, 0.07, 1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dde2ea;
  color: #243256;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2.25rem;
  margin-left: auto;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #7F9DBB;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', serif;
  font-size: 1.22rem;
  color: #243256;
  padding: 13px 5px 13px 2px;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #dde2ea;
  color: #7F9DBB;
}

/* Overlay behavior (light shadow outside menu) */
.mobile-menu.open:after {
  content: '';
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: rgba(36, 50, 86, 0.10);
}

/* Hide desktop nav/show mobile nav for small screens */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =============================
   FOOTER
   ============================= */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px;
  margin-top: 19px;
}
.footer-nav a {
  color: #4f6087;
  font-size: 1rem;
  text-decoration: none;
  font-family: 'Montserrat', serif;
  padding: 4px 8px;
  border-radius: 5px;
  transition: background 0.12s, color 0.13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #e6e8ee;
  color: #7F9DBB;
}
.footer-contact {
  font-size: 0.9rem;
  color: #7f9dbb;
  text-align: left;
  margin-bottom: 7px;
}

/* =============================
   BUTTONS & CTA
   ============================= */
.cta-primary {
  display: inline-block;
  background: #243256;
  color: #fff;
  font-family: 'Montserrat', serif;
  font-size: 1.13rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 13px 32px 12px 32px;
  margin-top: 10px;
  margin-bottom: 11px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(36,50,86,0.12);
  transition: background 0.17s, color 0.13s, box-shadow 0.13s, transform 0.16s;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #7F9DBB;
  color: #fff;
  box-shadow: 0 5px 24px rgba(36,50,86,0.18);
  transform: translateY(-2px) scale(1.01);
}

/* Secondary button (for forms/banners) */
.button-secondary {
  display: inline-block;
  background: #7F9DBB;
  color: #fff;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  border: none;
  border-radius: 7px;
  padding: 12px 28px;
  font-size: 1.03rem;
  margin-right: 12px;
  box-shadow: 0 2px 7px rgba(36,50,86,0.11);
  cursor: pointer;
  transition: background 0.15s, color 0.13s, box-shadow 0.13s, transform 0.16s;
}
.button-secondary:hover,
.button-secondary:focus {
  background: #243256;
  color: #fff;
  box-shadow: 0 5px 20px rgba(36,50,86,0.14);
  transform: scale(1.02);
}

/* =========================
   FORM / CONTACT LAYOUT
   ========================= */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
  margin-bottom: 16px;
}
.form-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.form-row input,
.form-row textarea {
  font-family: inherit;
  font-size: 1.04rem;
  border: 1px solid #dde2ea;
  border-radius: 6px;
  padding: 11px 12px;
  background: #f8fafc;
  margin-top: 6px;
  margin-bottom: 2px;
  width: 100%;
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: #7F9DBB;
  background: #fff;
  outline: none;
}
.form-row label {
  margin-left: 4px;
  font-size: 1rem;
  font-family: 'Montserrat', serif;
}
.form-row .cta-primary {
  margin-top: 3px;
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right:0;
  z-index: 4000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-top: 2px solid #7f9dbb;
  box-shadow: 0 -3px 22px rgba(36,50,86,0.08);
  padding: 18px 30px 18px 18px;
  gap: 20px;
  font-size: 1.03rem;
  transition: transform 0.28s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner .cookie-banner-text {
  flex: 2 1 330px;
  color: #243256;
  font-size: 1.08rem;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-banner .cookie-banner-actions button {
  font-family: 'Montserrat', serif;
  font-size: 1.04rem;
  border: none;
  padding: 10px 21px;
  border-radius: 7px;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(36,50,86,0.09);
  transition: background 0.14s, color 0.12s;
  margin-left: 0;
}
.cookie-banner .accept-cookie {
  background: #243256;
  color: #fff;
}
.cookie-banner .accept-cookie:hover {
  background: #7F9DBB;
}
.cookie-banner .reject-cookie {
  background: #dde2ea;
  color: #1a2136;
}
.cookie-banner .reject-cookie:hover {
  background: #243256;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #7F9DBB;
  color: #fff;
}
.cookie-banner .cookie-settings:hover {
  background: #243256;
  color: #fff;
}

/* =========================
   COOKIE PREFERENCES MODAL
   ========================= */
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(36,50,86, 0.20);
  z-index: 4100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  max-width: 410px;
  width: 94vw;
  border-radius: 13px;
  box-shadow: 0 5px 30px rgba(36,50,86,0.26);
  padding: 36px 25px 28px 25px;
  text-align: left;
  z-index: 4200;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: pop-in 0.35s ease;
}
@keyframes pop-in {
  0% { transform: scale(0.9); opacity: 0; }
  80% { transform: scale(1.03); opacity: 0.96; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1.07rem;
  color: #243256;
  font-weight: 500;
}
.cookie-category input[type=checkbox] {
  width: 17px;
  height: 17px;
  accent-color: #7F9DBB;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', serif;
  font-size: 0.98rem;
  border: none;
  padding: 10px 21px;
  border-radius: 7px;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(36,50,86,0.09);
  transition: background 0.14s, color 0.12s;
}

.cookie-modal-actions .accept-cookie {
  background: #243256;
  color: #fff;
}
.cookie-modal-actions .accept-cookie:hover {
  background: #7F9DBB;
}
.cookie-modal-actions .reject-cookie {
  background: #dde2ea;
  color: #1a2136;
}
.cookie-modal-actions .reject-cookie:hover {
  background: #243256;
  color: #fff;
}
.cookie-modal-actions .close-cookie-modal {
  background: #7F9DBB;
  color: #fff;
}
.cookie-modal-actions .close-cookie-modal:hover {
  background: #243256;
}

/* =============================
   RESPONSIVE DESIGN (Mobile First)
   ============================= */
@media (max-width: 1200px) {
  .container { max-width: 98vw; }
  .content-wrapper { max-width: 98vw; }
}
@media (max-width: 992px) {
  .feature-grid > div,
  .card,
  .service-summary-tiles > div,
  .faq-list > div,
  .team-highlight > div {
    min-width: 180px;
    flex-basis: 180px;
  }
  .feature-grid, .card-container, .service-summary-tiles, .faq-list, .team-highlight {
    gap: 14px;
  }
}
@media (max-width: 850px) {
  .feature-grid, .card-container, .service-summary-tiles, .faq-list, .team-highlight {
    flex-direction: column;
    gap: 17px;
  }
  .feature-grid > div, .card, .service-summary-tiles > div, .faq-list > div, .team-highlight > div {
    min-width: 0;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section {
    padding: 27px 9px;
    margin-bottom: 36px;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.32rem; }
  
  header .container {
    flex-direction: row;
    gap: 14px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .cta-header { padding:9px 15px 9px 15px; font-size:1.03rem; }
  
  .content-wrapper, .container {
    max-width: 100vw;
    padding-left:8px;
    padding-right:8px;
  }
  .feature-grid, .card-container, .service-summary-tiles, .faq-list, .team-highlight, .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: stretch;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 14px 10px;
    gap: 9px;
  }
  .inline-contact {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    margin-bottom:8px;
    margin-top:11px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 14px 11px 15px 11px;
    font-size: 1rem;
  }
  .cookie-banner .cookie-banner-actions {
    gap:8px;
  }
  .cookie-modal {
    padding: 16px 6px 16px 6px;
    max-width: 99vw;
  }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .section { padding: 14px 2px; margin-bottom:16px; }
  h1, h2 { font-size:1.13rem; }
  .cta-header, .cta-primary { padding:8px 10px; font-size:0.97rem; }
  .content-wrapper, .container { padding-left:2px; padding-right:2px; }
}

/* ===========================
   MICRO-INTERACTIONS & EFFECTS
   =========================== */
.card, .feature-grid > div, .service-summary-tiles > div, .faq-list > div, .team-highlight > div, .blog-post-summary, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.17s;
}
a, button, .cta-header, .cta-primary, .button-secondary, .cookie-banner-actions button, .cookie-modal-actions button {
  transition: background 0.17s, color 0.16s, box-shadow 0.14s, transform 0.17s;
}

/* ===========================
    UTILITY CLASSES
   =========================== */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
p.small, .text-small { font-size: 0.92rem; color: #607094; }

/* ===========================
    SPECIAL & STATE CLASSES
   =========================== */
.hide {display: none !important;}

/* ===========================
    ACCESSIBILITY/FOCUS STYLES
   =========================== */
a:focus, button:focus, .cta-header:focus, .cta-primary:focus, .button-secondary:focus {
  outline: 2px solid #7F9DBB;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #cfd8e6;
}

/* ===========================
    PRINT STYLES
   =========================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display:none !important;}
  body { color: #222 !important; background: #fff !important;}
}

/* ===========================
    BRANDING FONTS FALLBACKS
   =========================== */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), local('Montserrat-Regular'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500,700&display=swap');
}
