/* =====================
   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, 
figcaption, figure, 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;
}
body {
  line-height: 1.6;
  color: #243A5E;
  background: #F6F8FA;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #243A5E;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #FFCC33;
  outline: none;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #243A5E;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.08rem;
  font-weight: 500;
}
p, li, dd {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #2e3d57;
}
small {
  font-size: 0.95em;
}
strong {
  font-weight: bold;
}

/* ================  
   FLEXBOX CONTAINERS
   ================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.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: 20px;
  box-shadow: 0 4px 18px 0 rgba(36, 58, 94, 0.08);
  transition: box-shadow 0.2s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(36, 58, 94, 0.16);
  transform: translateY(-2px) 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;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px 0 rgba(36,58,94,0.08);
  padding: 20px;
  margin-bottom: 24px;
  transition: box-shadow 0.2s, transform 0.16s;
  color: #17304C;
  font-style: italic;
}
.testimonial-card small {
  display: block;
  color: #243A5E;
  font-style: normal;
  font-weight: 600;
  margin-left: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Gradient Modern Hero Banner */
.hero-section {
  background: linear-gradient(105deg, #C9D6E3 0%, #fff 100%);
  padding: 64px 0 60px 0;
  margin-bottom: 60px;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 28px;
}
.hero-section h1 {
  font-size: 2.4rem;
  max-width: 600px;
  color: #243A5E;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.hero-section p {
  font-size: 1.18rem;
  color: #243A5E;
}
 .hero-section .btn-primary {
   margin-top: 20px;
 }

/* =============== 
   PRIMARY BUTTONS
   =============== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  border: none;
  outline: none;
  border-radius: 28px;
  padding: 14px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 14px 0 rgba(36,58,94,0.07);
  transition: background 0.25s, color 0.2s, box-shadow 0.18s, transform 0.17s;
  margin-right: 18px;
}
.btn-primary {
  background: linear-gradient(105deg, #243A5E 0%, #415B85 100%);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(105deg, #FFCC33 0%, #FFD966 100%);
  color: #243A5E;
  box-shadow: 0 8px 24px 0 rgba(255,204,51,0.21);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: #fff;
  color: #243A5E;
  border: 2px solid #243A5E;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FFCC33;
  color: #243A5E;
  border-color: #FFCC33;
  box-shadow: 0 8px 24px 0 rgba(255,204,51,0.17);
}

/* =============== 
   NAVBAR STYLES
   =============== */
header {
  background: #fff;
  box-shadow: 0 1px 10px 0 rgba(36,58,94,0.06);
  position: sticky;
  top: 0;
  z-index: 98;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5em;
  padding: 18px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.06rem;
}
.main-nav img {
  height: 48px;
  margin-right: 22px;
  margin-top: -6px;
}
.main-nav a {
  color: #243A5E;
  opacity: 0.89;
  border-radius: 8px;
  padding: 6px 13px;
  transition: opacity 0.16s, background 0.19s;
}
.main-nav a.btn-primary {
  margin-left: 16px;
  padding: 10px 24px;
}
.main-nav a:focus, .main-nav a:hover {
  background: #C9D6E3;
  opacity: 1;
}
.mobile-menu-toggle {
  display: none;
  background: #243A5E;
  color: #fff;
  font-size: 2.2rem;
  padding: 6px 20px;
  border-radius: 8px;
  border: none;
  position: absolute;
  top: 17px;
  right: 16px;
  z-index: 102;
  cursor: pointer;
  transition: background 0.16s, color 0.19s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFCC33;
  color: #243A5E;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 345px;
  height: 100vh;
  background: #fff;
  z-index: 180;
  box-shadow: -4px 0 24px 0 rgba(36,58,94,0.16);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.27,.69,.27,.97);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #243A5E;
  font-size: 2rem;
  align-self: flex-end;
  margin: 18px 18px 0 0;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FFCC33;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  padding: 0 34px;
}
.mobile-nav a {
  padding: 15px;
  color: #243A5E;
  font-size: 1.13rem;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  width: 100%;
  transition: background 0.14s, color 0.16s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFCC33;
  color: #243A5E;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #243A5E;
  color: #fff;
  padding: 46px 0 28px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.89;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 6px;
  padding: 4px 10px;
  transition: background 0.16s, color 0.19s, opacity 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFCC33;
  color: #243A5E;
  opacity: 1;
}
footer .text-section small {
  color: #C9D6E3;
  font-size: 1.02em;
  opacity: 0.95;
}

/* =====================
   FEATURES GRID - HOME
   ===================== */
.features-section {
  background: linear-gradient(95deg, #C9D6E3 0%, #FFFCF2 100%);
  border-radius: 0 0 38px 38px;
  margin-bottom: 60px;
  padding-bottom: 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  list-style: none;
  margin-bottom: 36px;
}
.feature-grid li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(36,58,94,0.07);
  padding: 28px 28px 20px 28px;
  flex: 1 1 210px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.17s, transform 0.15s;
  margin-bottom: 22px;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 8px 36px 0 rgba(255,204,51,0.13);
  transform: translateY(-3px) scale(1.03);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  background: #FFCC33;
  border-radius: 12px;
  box-shadow: 0 2px 7px 0 rgba(255,204,51,0.09);
  margin-bottom: 5px;
}
.feature-grid strong {
  color: #243A5E;
  font-size: 1.11rem;
}
.feature-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
}
.feature-highlights li {
  background: #fffcf2;
  color: #415B85;
  font-size: 1.03rem;
  border-radius: 14px;
  padding: 10px 21px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* =====================
   ABOUT STYLES
   ===================== */
.about-section, .information-section, .about-preview-section {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 2px 12px 0 rgba(36,58,94,0.05);
  margin-bottom: 40px;
  padding: 36px 0;
}
.about-section ul, .information-section ul {
  margin-left: 16px;
  color: #243A5E;
}
.about-section li, .information-section li {
  font-size: 1.07rem;
  margin-bottom: 9px;
  line-height: 1.7;
}
.about-section h1, .about-section h2, .about-section h3 {
  margin-bottom: 14px;
}

/* =====================
   SERVICES SECTION
   ===================== */
.services-section {
  background: linear-gradient(105deg, #C9D6E3 0%, #fff 100%);
  border-radius: 18px;
  margin-bottom: 54px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 32px;
  margin-top: 12px;
}
.service-list li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(36,58,94,0.07);
  padding: 28px 23px 20px 25px;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 333px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  transition: box-shadow 0.17s, transform 0.15s;
  margin-bottom: 18px;
}
.service-list li:hover, .service-list li:focus-within {
  box-shadow: 0 8px 36px 0 rgba(255,204,51,0.13);
  transform: translateY(-2px) scale(1.02);
}
.service-list h3 {
  color: #243A5E;
  font-size: 1.16rem;
    font-weight: 700;
}
.service-list strong {
  color: #243A5E;
  font-size: 1.05rem;
}
.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  list-style: none;
  margin-top: 8px;
}
.usp-list li {
  background: #fffcf2;
  color: #415B85;
  font-size: 1.01rem;
  border-radius: 14px;
  padding: 8px 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* =====================
   PROCESS STEPS & FAQ
   ===================== */
.process-section, .faq-preview-section {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 1px 10px 0 rgba(36,58,94,0.07);
  margin-bottom: 38px;
  padding: 34px 0;
}
.process-steps {
  list-style: decimal inside;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 8px;
}
.process-steps li {
  font-size: 1.11rem;
  color: #243A5E;
  margin-bottom: 6px;
}
.faq-excerpt p {
  font-size: 1.06rem;
  color: #243A5E;
  margin-bottom: 6px;
}
.faq-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 8px 0 rgba(36,58,94,0.05);
  margin-bottom: 45px;
  padding: 36px 0 32px 0;
}
.faq-list {
  margin-top: 10px;
  margin-bottom: 18px;
}
.faq-list dt {
  font-weight: 700;
  font-size: 1.05rem;
  color: #243A5E;
  margin-top: 12px;
}
.faq-list dd {
  margin-left: 10px;
  color: #415B85;
}

/* =====================
   CONTACT PAGE BOXES
   ===================== */
.contact-section, .business-hours-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(36,58,94,0.06);
  margin-bottom: 38px;
  padding: 35px 0 27px 0;
}
.contact-details p, .business-hours-section li {
  margin-bottom: 6px;
  font-size: 1.06rem;
}
.info-box {
  background: #C9D6E3;
  color: #243A5E;
  border-radius: 14px;
  padding: 15px 20px;
  font-weight: 500;
  box-shadow: 0 1px 5px 0 rgba(36,58,94,0.05);
  margin-top: 14px;
}
.business-hours-section ul {
  list-style: disc inside;
  margin: 10px 0 0 13px;
  color: #243A5E;
  font-size: 1.08rem;
}

/*********
 LEGAL PAGES
**********/
.legal-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 13px 0 rgba(36,58,94,0.06);
  margin-bottom: 44px;
  padding: 36px 0;
}
.legal-section h1 {
  margin-bottom: 14px;
}
.legal-section ul {
  margin-left: 16px;
}
.legal-section li {
  margin-bottom: 7px;
  font-size: 1.01rem;
}

/******************
  CTA BANNER
******************/
.cta-banner-section {
  background: linear-gradient(95deg, #FFCC33 0%, #fff 40%, #C9D6E3 100%);
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(255,204,51,0.06);
  margin-bottom: 60px;
  padding: 46px 0 42px 0;
  text-align: center;
}
.cta-banner-section .content-wrapper {
  align-items: center;
  gap: 18px;
}
.cta-banner-section h2 {
  color: #243A5E;
}
.cta-banner-section p {
  color: #415B85;
  font-size: 1.13rem;
}

/******************
  THANK-YOU Section
******************/
.thank-you-section {
  background: linear-gradient(105deg, #C9D6E3 0%, #fff 100%);
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 54px 0 50px 0;
  text-align: center;
}
.thank-you-section .content-wrapper {
  align-items: center;
  gap: 20px;
}

/******************
   RESPONSIVE LAYOUT
*******************/
@media (max-width: 1024px) {
  .feature-grid li, .service-list li {
    max-width: 47vw;
    min-width: 180px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  .feature-grid, .service-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 18px;
  }
  .section, .features-section, .about-section, .about-preview-section, .services-section, .process-section, .faq-section, .legal-section, .business-hours-section, .contact-section, .cta-banner-section, .thank-you-section {
    padding: 28px 5px 26px 5px;
    margin-bottom: 36px;
  }
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li, .service-list li {
    max-width: 100%;
    min-width: 0;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-section {
    padding: 38px 0 34px 0;
  }
  .cta-banner-section, .thank-you-section {
    padding: 26px 0 24px 0;
    border-radius: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .footer-nav {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 520px) {
  .feature-grid li, .service-list li {
    padding: 18px 12px 16px 12px;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .btn-primary, .btn-secondary {
    padding: 12px 14px;
    font-size: 1.01rem;
  }
}
/******************
 COOKIE CONSENT
*******************/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #243A5E;
  color: #fff;
  z-index: 400;
  width: 100vw;
  min-height: 52px;
  padding: 20px 14vw 20px 24vw;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 -3px 22px 0 rgba(36,58,94,0.11);
  transition: transform 0.25s cubic-bezier(.27,.69,.27,.97), opacity 0.2s;
  font-size: 1.01rem;
}
@media (max-width: 900px) {
  .cookie-consent-banner {
    padding: 18px 12px 18px 12px;
  }
}
.cookie-consent-banner .cookie-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-consent-banner button {
  outline: none;
  border: none;
  border-radius: 25px;
  padding: 9px 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  margin-right: 8px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.14s;
}
.cookie-consent-banner .accept-all {
  background: #FFCC33;
  color: #243A5E;
  box-shadow: 0 2px 8px 0 rgba(255,204,51,0.09);
}
.cookie-consent-banner .accept-all:hover, .cookie-consent-banner .accept-all:focus {
  background: #FFD966;
  color: #243A5E;
}
.cookie-consent-banner .reject-all {
  background: #fff;
  color: #243A5E;
  border: 1.5px solid #243A5E;
}
.cookie-consent-banner .reject-all:hover, .cookie-consent-banner .reject-all:focus {
  background: #C9D6E3;
}
.cookie-consent-banner .cookie-settings {
  background: none;
  color: #FFCC33;
  border: 1.5px solid #FFCC33;
}
.cookie-consent-banner .cookie-settings:hover, .cookie-consent-banner .cookie-settings:focus {
  background: #FFCC33;
  color: #243A5E;
}

/***************
 COOKIE MODAL
***************/
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(36,58,94,0.53);
  z-index: 410;
  justify-content: center;
  align-items: center;
  transition: opacity 0.18s;
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal-dialog {
  background: #fff;
  max-width: 420px;
  border-radius: 22px;
  padding: 34px 24px 26px 24px;
  box-shadow: 0 8px 34px 0 rgba(36,58,94,0.16);
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #243A5E;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover {
  color: #FFCC33;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  color: #243A5E;
  font-size: 1.04rem;
  font-weight: 500;
}
.category-toggle {
  width: 36px;
  height: 20px;
  appearance: none;
  background: #C9D6E3;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
  outline: none;
  border: none;
}
.category-toggle:checked {
  background: #FFCC33;
}
.category-toggle::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(36,58,94,0.08);
  transition: transform 0.18s;
}
.category-toggle:checked::before {
  transform: translateX(16px);
}
.cookie-modal-info {
  color: #415B85;
  font-size: 0.98rem;
  margin-top: 9px;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-actions button {
  border-radius: 22px;
  padding: 9px 18px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  border: none;
  transition: background 0.19s, color 0.17s;
}
.cookie-modal-actions .btn-main {
  background: #243A5E;
  color: #fff;
}
.cookie-modal-actions .btn-main:hover {
  background: #FFCC33;
  color: #243A5E;
}
.cookie-modal-actions .btn-cancel {
  background: #fff;
  color: #243A5E;
  border: 1.5px solid #243A5E;
}
.cookie-modal-actions .btn-cancel:hover {
  background: #C9D6E3;
}

/*************************
 UTILITY CLASSES
**************************/
.nowrap { white-space: nowrap; }
.text-center { text-align: center; }
.text-section { margin-top: 10px; margin-bottom: 6px; }

/*************************
  MICROINTERACTIONS/ANIMATIONS
***************************/
.card, .testimonial-card, .feature-grid li, .service-list li {
  transition: box-shadow 0.2s, transform 0.17s;
}
.card:hover, .service-list li:hover, .feature-grid li:hover,
.testimonial-card:hover {
  box-shadow: 0 10px 32px 0 rgba(255,204,51,0.19);
  transform: scale(1.03);
}
.btn-primary, .btn-secondary, .cookie-consent-banner button, .cookie-modal-actions button {
  transition: background 0.18s, color 0.18s, box-shadow 0.19s, transform 0.16s;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.97);
}

/*************************
  REMOVE UNWANTED FOCUS OUTLINE
***************************/
:focus { outline: none; }

/*************************
  MISC
***************************/
::-webkit-input-placeholder { color: #415B85; }
::-moz-placeholder { color: #415B85; }
:-ms-input-placeholder { color: #415B85; }
::placeholder { color: #415B85; }

/* Hide scroll on mobile menu overlay */
body.mobile-menu-open {
  overflow: hidden !important;
}

/*************************
  PRINT FRIENDLY
***************************/
@media print {
  header, nav, .mobile-menu, .cookie-consent-banner, .cookie-modal, footer { display: none !important; }
  .container { max-width: 100vw !important; padding: 0 !important; }
  main { margin: 0; }
}
