/* 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;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F7F8FA;
  color: #1B263B;
  height: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  background: #F7F8FA;
  color: #1B263B;
  min-height: 100vh;
  letter-spacing: .01em;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #415A77;
  text-decoration: none;
  font-weight: 700;
  transition: color .18s cubic-bezier(.4,.8,.4,1);
}
a:hover, a:focus {
  color: #F4D160;
}

/* FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -.01em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.25rem; line-height: 1.25; margin-bottom: 14px; }
h4 { font-size: 1rem; line-height: 1.3; margin-bottom: 8px; }
p, ul, ol, blockquote, table {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
}
blockquote {
  font-size: 1.15rem;
  color: #415A77;
  border-left: 4px solid #F4D160;
  padding-left: 18px;
  margin: 24px 0;
  font-style: italic;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0; /* inner flex layouts add their own gap */
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 28px 0 rgba(65,90,119,0.07);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 8px;
    border-radius: 13px;
  }
}

/* HEADER */
header {
  background: #fff;
  color: #1B263B;
  box-shadow: 0 8px 24px 0 rgba(65,90,119,0.06);
  position: sticky;
  top: 0;
  z-index: 1100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
header img {
  height: 46px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background .13s, color .13s;
}
header nav a:hover, header nav a:focus {
  background: #F4D160;
  color: #1B263B;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.08rem;
  border-radius: 24px;
  background: #F4D160;
  color: #1B263B;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(65,90,119,0.08);
  transition: background .2s, color .2s, box-shadow .2s, transform .11s;
  outline: none;
  text-shadow: 0 1px 0 #fff6;
}
.btn-primary:hover, .btn-primary:focus {
  background: #415A77;
  color: #fff;
  box-shadow: 0 6px 24px rgba(243,209,96,0.15);
  transform: translateY(-2px) scale(1.035);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  border-radius: 24px;
  background: #415A77;
  color: #fff;
  border: none;
  margin-top:24px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(33,38,59,0.07);
  transition: background .15s, color .15s, transform .11s;
  text-shadow: 0 1px 0 #0001;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #F4D160;
  color: #1B263B;
  transform: translateY(-2px) scale(1.03);
}

/* MOBILE MENU (BURGER) */
.mobile-menu-toggle {
  display: none;
  font-size: 2.25rem;
  background: none;
  border: none;
  color: #415A77;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 13px;
  margin-left: 14px;
  transition: background .18s, color .18s;
  z-index: 1300;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F4D160;
  color: #1B263B;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,38,59,0.92);
  color: #fff;
  z-index: 1400;
  transform: translateX(-100vw);
  transition: transform .38s cubic-bezier(.6,.2,.5,1.13);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: none;
  border: none;
  color: #F4D160;
  font-size: 2.4rem;
  line-height: 1;
  z-index: 1350;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  margin-top: 84px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  background: none;
  border-radius: 10px;
  padding: 14px 0;
  width: 90%;
  text-align: center;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4D160;
  color: #1B263B;
}
@media (max-width: 980px) {
  header nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 980px) {
  .mobile-menu {
    display: flex;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(95deg, #F4D160 54%, #1B263B 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 0;
  margin-bottom: 0;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 14px 48px 0 rgba(33,38,59,0.08);
}
.hero .container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0;
  padding-top: 62px;
  padding-bottom: 68px;
}
.hero h1 {
  color: #1B263B;
  text-shadow:0 1px 0 #fff7;
  font-size: 2.2rem;
  letter-spacing: -.02em;
  font-weight: 900;
  margin-bottom: 18px;
}
.hero p {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.18rem;
  margin-bottom: 34px;
  color: #1B263B;
}
.hero .btn-primary {
  font-size: 1.18rem;
}
@media (max-width: 700px) {
  .hero .container {
    padding-top: 38px;
    padding-bottom: 40px;
  }
  .hero {
    border-radius: 0 0 14px 14px;
  }
}

/* FLEX LAYOUTS */
.card-container, .card-grid, .testimonial-slider, .service-cards, .feature-grid, .testimonial-list,
.reviews-statistics-list, .faq-preview-list, .faq-accordion, .benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 3px 18px 0 rgba(65,90,119,0.10);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 420px;
  flex: 1 1 240px;
  border-left: 7px solid #F4D160;
  transition: box-shadow .16s;
}
.testimonial-card p,
.testimonial-card strong {
  color: #1B263B;
}
.testimonial-card .stars {
  color: #F4D160;
  font-size: 1.12rem;
  letter-spacing: .12em;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow:0 5px 32px 0 rgba(243,209,96,0.19);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 rgba(65,90,119,0.06);
  padding: 32px 20px;
  min-width: 200px;
  flex: 1 1 190px;
  margin-bottom: 20px;
  border-left: 6px solid #415A77;
  transition: box-shadow .16s;
}
.feature-item img {
  width: 39px;
  height: 39px;
}
.feature-item h3 {
  margin-top: 0;
  margin-bottom: 7px;
  font-size: 1.15rem;
  color: #1B263B;
}
.feature-item p {
  margin-bottom: 0;
  font-size: 0.98rem;
  color: #415A77;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow:0 7px 22px 0 rgba(65,90,119,0.12);
  border-left-color: #F4D160;
}

/* Service Cards */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 28px;
}
.service-card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(65,90,119,0.09);
  padding: 28px 22px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow .13s;
  border-top: 5px solid #415A77;
}
.service-card h3 {
  color: #1B263B;
  font-size: 1.19rem;
  margin-bottom: 8px;
  margin-top: 0;
}
.service-card p {
  color: #415A77;
  font-size: 0.98rem;
}
.service-card:hover, .service-card:focus-within {
  box-shadow:0 6px 20px 0 rgba(243,209,96,0.13);
  border-top-color: #F4D160;
}

/* Card Utilities */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5em;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 8px #415A7711;
}
.pricing-table caption {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.pricing-table th, .pricing-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #E9EAED;
}
.pricing-table th {
  background: #415A77;
  color: #fff;
  font-size: 1.05rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table td, .pricing-table th {
  font-size: 1rem;
}

/* CTA BOXES */
.cta-box {
  background: #415A77;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 22px 0 rgba(27,38,59,.10);
  padding: 38px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 24px;
}
.cta-box h2 {
  color: #F4D160;
  font-size: 2rem;
  text-shadow: none;
  margin-bottom: 12px;
}
.cta-box p {
  color: #fff;
  font-size: 1.08rem;
}
.cta-box .btn-primary {
  margin-top: 9px;
}
@media (max-width: 800px) {
  .cta-box {
    padding:18px 8px;
    border-radius: 13px;
  }
}

/* Thank-you Box */
.thank-you-box {
  background: #fff;
  border: 3px solid #F4D160;
  border-radius: 19px;
  box-shadow: 0 5px 18px 0 rgba(33,38,59,0.07);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 34px;
}
.thank-you-box h1 {
  color: #415A77;
  font-size: 2rem;
  margin-bottom: 9px;
}
/* List Spacing */
ul, ol {
  margin-bottom: 14px;
  margin-left: 24px;
}
ul li, ol li {
  margin-bottom: 9px;
  font-size: 1rem;
}
ul li:last-child, ol li:last-child { margin-bottom: 0; }

.step-list, .step-by-step-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.05rem;
  margin-bottom: 28px;
  margin-left: 16px;
}
.infographic-placeholder {
  color: #415A77CC;
  font-style: italic;
  font-size: 1rem;
  margin-top: 10px;
  display: inline-block;
}

/**** LISTS & FAQLIST ****/
.faq-accordion, .faq-preview-list {
  width: 100%;
  align-items: stretch;
}
.faq-accordion li, .faq-preview-list li {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 8px 0 rgba(65,90,119,0.06);
  margin-bottom: 14px;
  padding: 18px 13px;
  font-size: 1rem;
  position: relative;
  list-style: none;
}
.faq-accordion li h3,
.faq-preview-list li strong {
  color: #1B263B;
  margin-bottom: 4px;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

.topic-index {
  margin-top: 20px;
  font-size: 1rem;
  color: #415A77;
}
.topic-index span {
  font-weight: 600;
}

/**** BENEFIT LIST ****/
.benefit-list {
  flex-direction: column;
  gap: 0;
  margin-left: 0;
  margin-bottom: 12px;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 0 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #1B263B;
  border-bottom: 1px solid #E9EAED;
}
.benefit-list li img {
  width: 22px;
  height: 22px;
}

/**** REVIEWS ****/
.reviews-statistics {
  margin-bottom: 18px;
  padding-left: 0;
  list-style: none;
  font-size: 1.05rem;
  color: #415A77;
}
.reviews-statistics li {
  margin-bottom: 14px;
}

/**** CONTACT DETAILS / MAP EMBED ****/
.contact-details{
  margin: 24px 0 12px 0;
  font-size: 1.05rem;
  color: #1B263B;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.map-embed{
  margin:22px 0;
  border-radius: 13px;
  background:#E9EAED;
  min-height:180px;
  display:flex;justify-content:center;align-items:center;
}

/**** FOOTER ****/
footer {
  background: #1B263B;
  color: #fff;
  padding: 38px 0 17px 0;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
}
footer img {
  height: 43px;
  margin-right: 32px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 7px;
  transition: background .14s, color .14s;
}
footer nav a:hover, footer nav a:focus {
  background: #F4D160;
  color: #1B263B;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.97rem;
  color: #E9EAED;
}
.footer-contact a {
  color: #F4D160;
 }
.footer-contact a:hover,
.footer-contact a:focus {
  text-decoration: underline;
  color: #fff;
}

/**** RESPONSIVE QUERIES ****/
@media (max-width: 1080px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-cards, .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 20px;
  }
  .card-container, .card-grid {
    flex-direction: column;
    gap: 20px;
  }
  .service-cards, .card-grid, .testimonial-slider, .testimonial-list {
    align-items: stretch;
  }
}
@media (max-width: 650px) {
  h1 { font-size: 1.5rem;}
  h2 { font-size: 1.18rem;}
  .feature-item, .service-card, .testimonial-card {
    min-width: 150px;
    padding: 17px 7px;
  }
}

/**** ANIMATIONS, HOVER & SHADOWS ****/
.card, .feature-item, .service-card, .testimonial-card, .cta-box, .thank-you-box {
  transition: box-shadow .16s cubic-bezier(.4,.6,.4,1);
}

.card:hover,.feature-item:hover,.service-card:hover,.testimonial-card:hover,
.card:focus-within,.feature-item:focus-within,.service-card:focus-within,.testimonial-card:focus-within{
  box-shadow:0 7px 38px 0 rgba(244,209,96,0.13);
}

/**** GEOMETRIC/ACCENT DECORATION ELEMENTS ****/
.section {
  position: relative;
  /* Decorative geometric shape top-right */
}
.section::after {
  content: '';
  display: block;
  position: absolute;
  top: -22px; right: -22px;
  width: 38px; height: 38px;
  background: #F4D160;
  border-radius: 10px;
  opacity: .17;
  z-index: 0;
}
@media (max-width: 600px){
  .section::after {display: none;}
}

/**** COOKIE CONSENT BANNER & MODAL ****/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 2000;
  background: #fff;
  border-top: 3px solid #F4D160;
  color: #1B263B;
  box-shadow: 0 -6px 28px 0 rgba(65,90,119,0.10);
  padding: 22px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: transform .32s cubic-bezier(.59,.33,.56,1.2), opacity .17s;
  gap: 18px;
}
.cookie-consent-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 24px;
  border: none;
  border-radius: 20px;
  margin: 0 2px;
  cursor: pointer;
  transition: background .13s, color .13s, transform .11s;
  box-shadow: 0 1px 7px #415A7710;
}
.cookie-consent-accept {
  background: #F4D160;
  color: #1B263B;
}
.cookie-consent-accept:hover,.cookie-consent-accept:focus {
  background: #415A77;
  color: #fff;
  transform: scale(1.025);
}
.cookie-consent-reject {
  background: #E9EAED;
  color: #415A77;
}
.cookie-consent-reject:hover, .cookie-consent-reject:focus {
  background: #F4D160;
  color: #1B263B;
  transform: scale(1.025);
}
.cookie-consent-settings {
  background: #415A77;
  color: #fff;
}
.cookie-consent-settings:hover,.cookie-consent-settings:focus{
  background: #F4D160;
  color: #1B263B;
  transform: scale(1.025);
}
/**** COOKIE PREFERENCES MODAL ****/
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  z-index: 2100;
  transform: translate(-50%,-55%) scale(1);
  background: #fff;
  min-width: 90vw;
  max-width: 430px;
  padding:32px 30px 26px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 48px 0 rgba(65,90,119,0.16);
  transition: opacity .22s,transform .19s;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 1;
}
.cookie-modal.hide {
  opacity:0;
  pointer-events:none;
  transform:translate(-50%,-35%) scale(0.92);
}
.cookie-modal h2 {
  font-size: 1.5rem;
  color: #415A77;
  margin-bottom: 18px;
  text-align: center;
}
.cookie-modal ul {
  width: 100%;
  margin: 0 0 22px 0;
  padding: 0;
  font-weight: 500;
  color: #1B263B;
}
.cookie-modal ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #E9EAED;
}
.cookie-modal ul li:last-child { border-bottom: none; }
.cookie-toggle-switch {
  width:42px;height:24px;
  border-radius:24px;
  background:#E9EAED;
  position:relative;
  transition: background .17s;
  display:inline-block;
}
.cookie-toggle-switch[data-checked="true"]{
  background: #F4D160;
}
.cookie-toggle-knob {
  position: absolute;
  top: 1.6px; left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #415A77;
  transition: left .18s;
}
.cookie-toggle-switch[data-checked="true"] .cookie-toggle-knob {
  left: 20px;
  background: #1B263B;
}
.cookie-toggle-switch[data-disabled="true"]{
  opacity: .6;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display:flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 18px;
}

/* Hide modal by default */
.cookie-modal[style*="display: none"] {
  display: none !important;
}

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

/**** CUSTOM SCROLLBAR ****/
body{
  scrollbar-width:thin;
  scrollbar-color:#F4D160 #E9EAED;
}
body::-webkit-scrollbar{width:12px;}
body::-webkit-scrollbar-thumb{background:#F4D160; border-radius:8px;}
body::-webkit-scrollbar-track{background:#E9EAED;}

/**** ACCESSIBILITY ****/
:focus {outline: 2px solid #F4D160;outline-offset: 2px;}

@media (max-width: 550px){
  .container{padding:0 3vw;}
  .cta-box,.thank-you-box{
    padding:12px 4px;
  }
}

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

/**** HIGH CONTRAST For Testimonial/Review Cards ****/
.testimonial-card strong,.testimonial-card p, .reviews-statistics li, .benefit-list li {
  color: #1B263B;
}

/**** END CSS ****/
