/* RESET & BASE STYLES */
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, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F8F9FB;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #143058;
  background: #F8F9FB;
  min-height: 100vh;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #143058;
  text-decoration: none;
  transition: color 0.15s;
  font-weight: 600;
}
a:hover, a:focus {
  color: #FFB400;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
button {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  background: none;
  border: none;
  cursor: pointer;
}
/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #143058;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  line-height: 1.12;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.18;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 500px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.1rem;
  }
  h3 {
    font-size: 1.3rem;
  }
}
p {
  font-size: 1rem;
  margin-bottom: 14px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
strong {
  font-weight: 700;
}
.text-section ul,
.text-section ol {
  margin-bottom: 24px;
}
.text-section ul li,
.text-section ol li {
  margin-bottom: 10px;
  font-size: 1rem;
  list-style: disc inside;
}
/* CONTAINER & SPACING */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
    flex-direction: row;
    align-items: center;
    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;
    align-items: flex-start;
    gap: 20px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 300px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(20,48,88,0.08);
  padding: 28px 24px 24px 24px;
  transition: box-shadow 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(20,48,88,0.16);
  transform: translateY(-6px) scale(1.03);
  z-index: 2;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper {
  flex-direction: column;
}
@media (min-width: 800px) {
  .features .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
  }
}
.features ul,
.features ol {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  margin-bottom: 0;
}
.features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  font-weight: 600;
  color: #143058;
  font-size: 1.05rem;
  min-width: 220px;
  box-shadow: 0 2px 8px 0 rgba(20,48,88,0.04);
  transition: box-shadow 0.16s;
}
.features li img,
.feature-icons img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
/* BUTTONS & CTA */
.cta-primary, .cta-secondary, .mobile-menu-toggle, .cookie-btn, .cookie-settings-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 30px;
  padding: 14px 32px;
  cursor: pointer;
  border: none;
  outline: none;
  background: #143058;
  color: #fff;
  box-shadow: 0 2px 6px 0 rgba(20,48,88,0.08);
  transition: background 0.18s, box-shadow 0.18s, transform 0.16s, color 0.13s;
  margin-top: 8px;
  margin-bottom: 8px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #FFB400;
  color: #143058;
  box-shadow: 0 5px 18px 0 rgba(255,180,0, 0.19);
}
.cta-secondary {
  background: #FFB400;
  color: #143058;
  border: 2px solid #143058;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #143058;
  color: #fff;
  border-color: #FFB400;
  box-shadow: 0 5px 20px 0 rgba(20,48,88, 0.12);
}
.cookie-btn, .cookie-settings-link {
  min-width: 120px;
  min-height: 40px;
  margin: 0 8px 0 0;
  padding: 10px 20px;
  font-size: 1rem;
}
.cookie-settings-link {
  background: transparent;
  color: #143058;
  border: 2px solid #143058;
}
.cookie-settings-link:hover, .cookie-settings-link:focus {
  background: #fff;
  color: #FFB400;
  border-color: #FFB400;
}
/* MAIN NAVBAR */
header {
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(20,48,88,0.05);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0;
  justify-content: space-between;
}
.main-nav a {
  padding: 10px 17px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1px;
  background: transparent;
  transition: background 0.15s, color 0.14s;
  color: #143058;
  position: relative;
}
.main-nav a.cta-primary {
  background: #FFB400;
  color: #143058;
  margin-left: 16px;
  border: 2px solid #FFB400;
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: #143058;
  color: #fff;
  border-color: #143058;
}
.main-nav a:not(.cta-primary):hover,
.main-nav a:not(.cta-primary):focus {
  background: #143058;
  color: #fff;
}
.main-nav img {
  height: 36px;
  width: auto;
  margin-right: 30px;
}
@media (max-width: 900px) {
  .main-nav a {
    font-size: 0.98rem;
    padding: 9px 10px;
    margin-right: 3px;
  }
  .main-nav img {
    margin-right: 10px;
    height: 32px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}
/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: flex;
  position: absolute;
  top: 19px;
  right: 25px;
  z-index: 200;
  font-size: 2.2rem;
  background: #143058;
  color: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 1px 4px 0 rgba(20,48,88,0.10);
  transition: background 0.15s, color 0.13s, box-shadow 0.18s;
  cursor: pointer;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFB400;
  color: #143058;
}
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 64px 0 rgba(20,48,88,0.16);
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(0.77,0,0.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2rem;
  background: transparent;
  color: #143058;
  border: none;
  align-self: flex-end;
  margin: 22px 32px 12px 0;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFB400;
  color: #143058;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 38px 14vw 0 32px;
  height: 100%;
  justify-content: flex-start;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #143058;
  padding: 18px 0 8px 0;
  border-radius: 12px;
  text-align: left;
  transition: color 0.18s, background 0.15s;
  line-height: 1.25;
  min-width: 220px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFB400;
  color: #143058;
}
@media (max-width: 500px) {
  .mobile-menu {
    padding-left: 0;
    width: 100vw;
  }
  .mobile-nav {
    padding: 28px 0 0 15px;
    min-width: 0;
  }
  .mobile-nav a {
    min-width: 0;
    font-size: 1.05rem;
    padding: 12px 0 7px 0;
  }
}
/* HERO & MAIN SECTIONS */
.hero {
  background: #143058;
  color: #fff;
  padding: 72px 0 60px 0;
  margin-bottom: 60px;
  border-bottom-left-radius: 80px 45px;
  border-bottom-right-radius: 80px 45px;
  position: relative;
  box-shadow: 0 8px 40px 0 rgba(20,48,88,0.10);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.hero .content-wrapper {
  max-width: 650px;
  color: #fff;
  gap: 22px;
  display: block
}
.hero h1, .hero h2, .hero h3 {
  color: #fff;
  font-weight: 900;
}
.hero p {
  color: #F8F9FB;
  font-size: 1.12rem;
  margin-bottom: 12px;
}
.hero .cta-primary {
  margin-top: 20px;
}
@media (max-width: 800px) {
  .hero {
    padding: 46px 0 34px 0;
    border-bottom-left-radius: 36px 14px;
    border-bottom-right-radius: 36px 14px;
  }
}
/* SERVICE CARDS/ITEMS */
.services .content-wrapper,
.services-overview .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(20,48,88,0.06);
  min-width: 220px;
  max-width: 300px;
  flex: 1 1 220px;
  padding: 30px 22px 22px 22px;
  transition: box-shadow 0.15s, transform 0.15s;
  position: relative;
  margin-bottom: 20px;
}
.service-item:hover {
  box-shadow: 0 6px 26px 0 rgba(255,180,0,0.13);
  transform: translateY(-8px) scale(1.04);
  z-index: 1;
}
.service-item img {
  width: 38px;
  height: 38px;
}
.service-item h3 {
  font-size: 1.18rem;
  margin-bottom: 0;
}
.service-item .service-price {
  font-size: 1.05rem;
  background: #FFB400;
  color: #143058;
  font-weight: 700;
  border-radius: 18px;
  padding: 5px 18px;
  margin-top: 10px;
  letter-spacing: 0.02em;
  display: inline-block;
}
@media (max-width: 900px) {
  .services .content-wrapper, .services-overview .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .service-item {
    max-width: 100%;
  }
}
/* TESTIMONIALS */
.testimonials .content-wrapper,
.testimonials-outcomes .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #143058;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(20,48,88,0.10);
  min-width: 220px;
  max-width: 480px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.15s, transform 0.12s;
}
.testimonial-card p {
  margin-bottom: 8px;
  font-size: 1.06rem;
}
.testimonial-card span {
  color: #143058;
  font-size: 0.98rem;
  opacity: 0.85;
}
.testimonial-card strong {
  font-weight: 800;
}
.testimonial-card:hover {
  box-shadow: 0 3px 22px 0 rgba(20,48,88,0.20);
  transform: translateY(-2px) scale(1.015);
  border-left: 6px solid #FFB400;
}
.client-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 34px 0 0 0;
}
.client-logos img {
  height: 38px;
  width: auto;
  opacity: 0.84;
  filter: grayscale(10%) contrast(110%);
  transition: opacity 0.18s, filter 0.15s;
}
.client-logos img:hover {
  opacity: 1;
  filter: grayscale(0%) contrast(100%);
}
/* CARDS GENERAL */
.card, .case-study-item {
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 4px 14px 0 rgba(20,48,88,0.11);
  background: #fff;
  padding: 28px 22px 20px 22px;
  transition: box-shadow 0.16s;
}
.card:hover, .case-study-item:hover {
  box-shadow: 0 8px 26px 0 rgba(255,180,0,0.13);
}
.case-studies .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.case-study-item h3 {
  margin-bottom: 8px;
  font-weight: 800;
  font-size: 1.12rem;
}
.case-study-item span {
  color: #FFB400;
  font-weight: 700;
}
/* PRICING */
.pricing-teaser {
  margin: 28px 0 0 0;
  padding: 20px 20px;
  background: #fff4e1;
  border-radius: 14px;
  font-size: 1.03rem;
  color: #143058;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-teaser strong {
  color: #143058;
}
/* OUTCOME METRICS */
.outcome-metrics ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.outcome-metrics li {
  background: #fff;
  color: #143058;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  box-shadow: 0 1px 6px 0 rgba(20,48,88,0.06);
  font-size: 1rem;
}
/* BLOG TOPICS */
.blog-topics .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 28px;
}
.blog-topics ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 2 1 340px;
}
.blog-topics ul li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(20,48,88,0.07);
  padding: 22px 20px 18px 20px;
  font-size: 1rem;
  margin-bottom: 0;
  transition: box-shadow 0.14s, transform 0.13s;
}
.blog-topics ul li:hover {
  box-shadow: 0 5px 16px 0 rgba(255,180,0,0.11);
  transform: translateY(-3px);
}
.blog-topics a {
  color: #FFB400;
  font-size: 0.99rem;
  border-bottom: 1.5px solid #FFB400;
  padding-bottom: 2px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: color 0.13s, border-color 0.12s;
}
.blog-topics a:hover {
  color: #143058;
  border-color: #143058;
}
.popular-topics {
  background: #143058;
  border-radius: 15px;
  padding: 20px 24px;
  color: #fff;
  flex: 1 1 220px;
}
.popular-topics h3 {
  color: #FFB400;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.popular-topics ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: disc inside;
}
.popular-topics li {
  font-size: 1rem;
  margin-left: 9px;
  font-weight: 700;
  color: #fff;
}
/* FORM ELEMENTS (if present) */
input, textarea, select {
  border: 2px solid #143058;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  margin-bottom: 18px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #FFB400;
  box-shadow: 0 2px 8px 0 rgba(255,180,0,0.08);
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #143058;
  margin-bottom: 7px;
}
/* --- LEGAL / COOKIE / THANK YOU --- */
.legal, .thank-you {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(20,48,88,0.08);
  margin-top: 38px;
  margin-bottom: 48px;
  padding: 38px 18px 32px 18px;
}
.legal .content-wrapper {
  gap: 22px;
}
/* FOOTER */
footer {
  background: #143058;
  color: #fff;
  padding: 0 0 24px 0;
  position: relative;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 48px;
  padding: 40px 0 0 0;
  justify-content: space-between;
}
.footer-wrapper a img {
  width: 44px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #fff;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 1rem;
  transition: color 0.13s;
}
.footer-nav a:hover { color: #FFB400; }
.footer-contact-short {
  font-size: 0.99rem;
  color: #fff;
  margin-bottom: 6px;
  opacity: 0.90;
}
.footer-contact-short a {
  color: #FFB400;
  font-weight: 700;
}
@media (max-width: 900px) {
  .footer-wrapper { gap: 16px; flex-direction: column; align-items: flex-start; }
}
@media (max-width:600px) {
  .footer-wrapper { padding: 32px 0 0 0; }
}
/* --- MOBILE ADAPTATION --- */
@media (max-width: 600px) {
  .container, .section { padding: 0 8px; }
  .section { padding: 24px 8px; margin-bottom: 32px; }
  .legal, .thank-you { padding: 24px 8px 20px 8px; }
  .hero { padding: 28px 0 18px 0; margin-bottom: 28px; }
  h1 { font-size: 1.5rem; margin-bottom: 12px; }
  h2 { font-size: 1.1rem; margin-bottom: 12px; }
  h3 { font-size: 1.04rem; margin-bottom: 4px; }
}
/* MICROS - TRANSITIONS & HOVERS */
.cta-primary, .cta-secondary, .mobile-menu-toggle, .mobile-menu-close, .cookie-btn, .cookie-settings-link {
  transition: background 0.15s, color 0.13s, box-shadow 0.18s, border-color 0.13s, transform 0.12s;
}
/* --- COOKIE CONSENT BANNER --- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 20000;
  width: 100vw;
  background: #143058;
  color: #fff;
  padding: 22px 12px 18px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  box-shadow: 0 -4px 24px 0 rgba(20,48,88,0.12);
  opacity: 0.97;
  animation: slideup 0.6s cubic-bezier(0.74,0.11,0.22,1);
}
@keyframes slideup {
  0% { transform: translateY(100%); opacity: 0; }
  70% { transform: translateY(-7px); }
  100% { transform: translateY(0); opacity: 0.97; }
}
#cookie-banner p {
  flex: 2 1 250px;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
}
#cookie-banner .button-group {
  display: flex;
  flex-direction: row;
  gap: 12px;
  min-width: 242px;
}
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; gap: 16px; padding: 16px 4px 10px 4px; }
  #cookie-banner .button-group { width: 100%; justify-content: flex-start; }
}
/* --- COOKIE PREFERENCES MODAL --- */
#cookie-modal {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,100%);
  width: 97vw;
  max-width: 390px;
  z-index: 20100;
  background: #fff;
  color: #143058;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -8px 36px 0 rgba(20,48,88,0.22);
  padding: 32px 18px 24px 18px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.74,0.11,0.22,1), opacity 0.16s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#cookie-modal.open {
  transform: translate(-50%,0);
  opacity: 1;
  pointer-events: all;
}
#cookie-modal h2 {
  font-size: 1.23rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #143058;
}
#cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
#cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
#cookie-modal .category label {
  font-size: 1rem;
  font-weight: bold;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #143058;
}
#cookie-modal .category input[type='checkbox'] {
  accent-color: #FFB400;
  width: 18px;
  height: 18px;
}
#cookie-modal .description {
  font-size: 0.95rem;
  color: #666a7e;
}
#cookie-modal .button-group {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#cookie-modal .modal-close {
  position: absolute;
  top: 13px;
  right: 21px;
  font-size: 1.9rem;
  background: none;
  color: #143058;
  cursor: pointer;
  border: none;
  z-index: 31000;
  border-radius: 50%;
  transition: color 0.14s, background 0.13s;
}
#cookie-modal .modal-close:hover, #cookie-modal .modal-close:focus {
  color: #FFB400;
  background: #fbeee6;
}
/* ACCESSIBILITY FOCUS FOR BUTTONS & LINKS */
a:focus, button:focus, input:focus, .cta-primary:focus, .cta-secondary:focus {
  outline: 2px solid #FFB400;
  outline-offset: 3px;
}
/* BRAND ICONS & DECORATIVE */
.brand-icons {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 22px 0;
}
.brand-icons img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 1px 6px rgba(255,180,0,0.09));
}
.feature-icons {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
}
/* ADDRESS/MAP IN CONTACT */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.address-map {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: #fff;
  border-radius: 12px;
  padding: 15px 22px;
  box-shadow: 0 1px 7px rgba(20,48,88,0.05);
  font-size: 1rem;
}
.address-map img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
/* NEXT STEPS (Thank You) */
.next-steps-info {
  background: #fff4e1;
  margin: 24px 0 18px 0;
  border-radius: 16px;
  padding: 12px 18px;
}
.next-steps-info ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  list-style: disc inside;
  margin-bottom: 0;
}
.next-steps-info li {
  font-size: 1rem;
  color: #143058;
}
/* ACCESSIBILITY: HIDE VISUALLY, KEEP ACCESSIBLE */
.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  border: 0;
}
/* GEOMETRIC ACCENTS */
.hero:before {
  content: '';
  display: block;
  position: absolute;
  right: -72px;
  top: 90px;
  width: 180px;
  height: 180px;
  background: #FFB400;
  border-radius: 48% 56% 68% 36%;
  opacity: 0.11;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 700px) {
  .hero:before { display: none; }
}
/* SCROLLBAR MODERNIZATION (Webkit) */
::-webkit-scrollbar {
  width: 11px;
  background: #e4e9f2;
}
::-webkit-scrollbar-thumb {
  background: #143058;
  border-radius: 6px;
  border: 3px solid #e4e9f2;
}
::-webkit-scrollbar-thumb:hover {
  background: #1a427a;
}
/* PRINT STYLES - HIDE NAV, FOOTER, BANNERS */
@media print {
  header, footer, #cookie-banner, #cookie-modal, .mobile-menu { display: none !important; }
  .section, .container, .legal, .thank-you { box-shadow: none !important; background: #fff !important; padding: 0 !important; }
}
