/* =========================
   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;
}
html {
  box-sizing: border-box; scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #FAFAFA;
  color: #232323;
  font-family: 'Roboto', 'Georgia', serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-size: 16px;
}
img {
  max-width: 100%; display: block;
}
a {
  color: #1A3258; text-decoration: none; transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2B134; text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em; margin-bottom: 1em;
}
li + li { margin-top: 8px; }
strong { font-weight: bold; }
em, i { font-style: italic; }
small { font-size: 85%; }

/*
 ========================================
  VARIABLES (fallbacks for core colors)
 ========================================
*/
:root {
  --brand-primary: #1A3258;
  --brand-secondary: #F2B134;
  --brand-accent: #E9E9ED;
  --brand-bg: #FAFAFA;
  --brand-dark: #232323;
  --muted-bg: #F7F6F3;
  --shadow-default: 0 2px 16px 0 rgba(26,50,88,0.08);
  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 24px;
}

/*
 =============================================
  TYPOGRAPHY: Elegant Classic Hierarchy
 =============================================
*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, 'Times New Roman', serif;
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.5rem; margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem; margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem; margin-bottom: 16px;
}
h4 {
  font-size: 1.125rem; margin-bottom: 12px;
}
p, .footer-brand p, .footer-contact p {
  font-size: 1rem;
  color: var(--brand-dark);
  margin-bottom: 1em;
  line-height: 1.7;
}
.content-wrapper p:last-child { margin-bottom: 0; }

.main-nav a, .footer-nav a, .mobile-nav a {
  font-family: 'Montserrat', serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--brand-primary);
  margin-right: 2px;
}

.cta-primary, .cta-secondary, .mobile-nav .cta-primary {
  display: inline-block;
  padding: 12px 32px;
  border-radius: var(--radius-m);
  font-family: 'Montserrat', serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-default);
}
.cta-primary {
  background: var(--brand-primary);
  color: #fff;
  border: 2px solid var(--brand-primary);
}
.cta-primary:hover, .cta-primary:focus {
  background: #fff;
  color: var(--brand-primary);
  box-shadow: 0 4px 24px 0 rgba(26,50,88,0.12);
}
.cta-secondary {
  background: #fff;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(26,50,88,0.12);
}

.button, .cookie-btn {
  padding: 10px 26px;
  font-size: 1rem;
  border-radius: var(--radius-s);
  background: var(--brand-primary);
  color: #fff;
  border: none;
  font-family: 'Montserrat', serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.15s;
  box-shadow: var(--shadow-default);
}
.button:hover, .cookie-btn:hover,
.button:focus, .cookie-btn:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}

/*
============================
Basic LAYOUT Helpers
============================*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =====================
  HEADER & NAVIGATION
======================*/
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(26,50,88,0.04);
  z-index: 1200;
  position: relative;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}
header img {
  max-height: 48px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  padding: 8px 12px;
  border-radius: var(--radius-s);
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-accent);
}
.main-nav .cta-primary {
  margin-left: 14px;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border: 2px solid var(--brand-secondary);
  box-shadow: 0 2px 8px 0 rgba(242,177,52,0.08);
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: var(--brand-primary);
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: var(--brand-primary);
  cursor: pointer;
  padding: 6px 12px;
  z-index: 1301;
  border-radius: var(--radius-m);
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-accent);
}

/* ===========
  MOBILE MENU
============== */
.mobile-menu {
  display: none;
  position: fixed; left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(26,50,88,0.95);
  z-index: 1500;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.74,0.06,0.4,0.92);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.25rem;
  color: #fff;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 28px 28px 8px 0;
  cursor: pointer;
  z-index: 1601;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
  gap: 12px;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  padding: 16px 8px;
  border-radius: var(--radius-m);
  width: fit-content;
  transition: background 0.16s, color 0.2s;
  margin: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-secondary);
  background: rgba(255,255,255,0.08);
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
  }
  header .container {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 7px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/*
===============================
  HERO, BANNERS, SECTION STYLE
===============================*/
.hero {
  background: linear-gradient(90deg, #FAFAFA 60%, #E9E9ED 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 40px; padding-bottom: 40px;
}
.hero h1 {
  color: var(--brand-primary);
}
.hero p {
  font-size: 1.2rem;
}
@media (max-width: 900px) {
  .hero { min-height: 260px; }
  .hero .container { padding-top: 16px; padding-bottom: 16px; }
}

.section {
  background: #fff;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-default);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features, .services-overview, .fleet-preview, .about-preview, .testimonials, .contact-preview,
.about-company, .milestones, .usp-section, .team-section, .service-offer, .process-section, .benefits-section, .cta-banner,
.fleet-summary, .fleet-features, .compliance, .careers-intro, .job-listings, .employee-benefits, .application-process, .cookie-policy-section, .privacy-policy, .gdpr-policy, .terms-of-service, .thank-you-section, .contact-form-section, .map-location, .news-feed, .insights, .newsletter-signup {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-default);
}
.features {
  background: var(--muted-bg);
  box-shadow: none;
}
.fleet-preview, .fleet-features, .fleet-summary {
  background: #F6F6F9;
  box-shadow: none;
}

/* ===========
 FLEX Patterns
 =============*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  padding: 28px;
  background: #fff;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-default);
  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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F8F8FA;
  color: #232323;
  border-radius: var(--radius-m);
  box-shadow: 0 1px 6px 0 rgba(26,50,88,0.07);
  margin-bottom: 20px;
  margin-top: 8px;
  font-style: italic;
}
.testimonial-card strong { font-style: normal; letter-spacing: 0; display: inline-block; margin-left: 20px; color: var(--brand-primary);}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 0;
}

/* ============
   Custom grids
   ============*/
.features-grid, .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.features-grid > div, .services-grid > div {
  flex: 1 1 250px;
  background: #fff;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-default);
  padding: 32px 18px 28px 18px;
  text-align: left;
  min-width: 235px;
  max-width: 350px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.22s;
}
.features-grid > div:hover, .services-grid > div:hover {
  box-shadow: 0 6px 32px 0 rgba(26,50,88,0.13);
  transform: translateY(-4px);
}
.features-grid img, .services-grid img {
  max-width: 48px;
  margin-bottom: 16px;
}
.fleet-icons {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
}
.fleet-icons img {
  width: 52px; height: 52px; object-fit: contain;
  filter: grayscale(40%) contrast(110%);
}

.client-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 26px;
}
.client-logos img {
  height: 48px; filter: grayscale(40%);
}

.contact-details, .company-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 12px 0;
}
.contact-details p, .company-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.contact-details img, .company-info img {
  width: 22px; height: 22px; object-fit: contain;
}

.directions-link {
  display: flex;
  align-items: flex-start;
  margin-top: 16px;
}
.directions-link a {
  color: var(--brand-primary);
  background: var(--brand-accent);
  border-radius: var(--radius-s);
  padding: 10px 22px;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  box-shadow: var(--shadow-default);
  transition: background 0.15s, color 0.15s;
}
.directions-link a:hover,
.directions-link a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}

.privacy-note {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border-radius: var(--radius-s);
  padding: 16px 12px;
  font-size: 0.95rem;
  margin-top: 16px;
}

/* ================
    FOOTER
================ */
footer {
  background: #20263A;
  color: #fff;
  width: 100vw;
  position: relative;
  margin-top: 60px;
  border-top: 4px solid var(--brand-secondary);
  padding: 0 0 12px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 24px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 44px 20px 24px 20px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 170px;
}
.footer-nav a {
  color: #E9E9ED;
  font-size: 1rem;
  padding: 2px 0;
  border-radius: var(--radius-s);
  transition: background 0.12s, color 0.17s;
  font-family: 'Montserrat', serif;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-secondary);
  background: rgba(242,177,52,0.06);
}
.footer-brand img {
  max-height: 50px;
  margin-bottom: 8px;
  filter: brightness(97%);
}
.footer-brand p {
  font-size: 1.05rem;
  color: #DCDCDC;
}
.footer-contact {
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact p {
  font-size: 1rem;
  color: #E9E9ED;
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-contact img {
  width: 21px; height: 21px;
  filter: brightness(95%) contrast(110%);
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 32px 12px 16px 12px;
  }
}

/* ========================
   RESPONSIVE LAYOUT RULES
======================== */
@media (max-width: 1100px) {
  .features-grid, .services-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .section, .features, .services-overview, .fleet-preview, .about-preview, .testimonials, .contact-preview,
  .about-company, .milestones, .usp-section, .team-section, .service-offer, .process-section, .benefits-section, .cta-banner,
  .fleet-summary, .fleet-features, .compliance, .careers-intro, .job-listings, .employee-benefits, .application-process, .cookie-policy-section, .privacy-policy, .gdpr-policy, .terms-of-service, .thank-you-section, .contact-form-section, .map-location, .news-feed, .insights, .newsletter-signup {
    padding: 30px 12px;
    min-width: 0;
  }
  .features-grid, .services-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .fleet-icons {
    gap: 16px; margin-top: 10px;
    flex-wrap: wrap;
  }
  .card-container { gap: 10px; }
  .content-grid, .footer-nav { gap: 12px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .text-image-section, .fleet-icons {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.38rem; margin-bottom: 20px; }
  h2 { font-size: 1.06rem; }
  .card, .testimonial-card { padding: 14px; }
  .section, .features, .services-overview, .fleet-preview, .about-preview, .testimonials, .contact-preview,
  .about-company, .milestones, .usp-section, .team-section, .service-offer, .process-section, .benefits-section, .cta-banner,
  .fleet-summary, .fleet-features, .compliance, .careers-intro, .job-listings, .employee-benefits, .application-process, .cookie-policy-section, .privacy-policy, .gdpr-policy, .terms-of-service, .thank-you-section, .contact-form-section, .map-location, .news-feed, .insights, .newsletter-signup {
    padding: 12px 4px;
    border-radius: var(--radius-s);
  }
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}

/* =================
   ANIMATIONS
================= */
.cta-primary, .cta-secondary, .button, .cookie-btn {
  transition: box-shadow 0.17s, background 0.18s, color 0.18s, border 0.18s;
}
section, .card, .testimonial-card {
  transition: box-shadow 0.18s, background 0.19s, border 0.17s;
}

/* ===========
  MICRO-INTERACTIONS
 ============= */
.card, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.18s;
}
.card:hover, .card:focus,
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 26px 0 rgba(50,60,100,0.08);
  transform: translateY(-2px) scale(1.012);
}
.features-grid > div:active, .services-grid > div:active {
  transform: scale(0.98);
}

/* =================
   COOKIE CONSENT BANNER
   ================= */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #fffbe6;
  border-top: 1.5px solid var(--brand-accent);
  box-shadow: 0 -2px 14px 0 rgba(26,50,88,0.08);
  padding: 18px 12vw 18px 6vw;
  font-size: 1rem;
  font-family: 'Roboto', serif;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.33s, transform 0.37s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
}
.cookie-banner-text {
  color: var(--brand-dark);
  font-size: 1rem;
  line-height: 1.6;
  margin-right: 20px;
  max-width: 600px;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  min-width: 120px;
  background: var(--brand-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-m);
  font-size: 1rem;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  padding: 11px 26px;
  cursor: pointer;
  margin-left: 6px;
  box-shadow: var(--shadow-default);
  transition: background 0.18s, color 0.18s;
}
.cookie-btn.settings {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}
.cookie-btn.reject {
  background: #A8A8A6;
  color: #fff;
  border: 1.5px solid #A8A8A6;
}
.cookie-btn.accept {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-secondary);
}
.cookie-btn:hover, .cookie-btn:focus {
  opacity: 0.91;
  outline: 2px solid var(--brand-secondary);
}
@media (max-width: 900px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 12px;
  }
  .cookie-actions { margin-top: 12px; }
}

/*
===================
COOKIE PREFERENCES MODAL
===================*/
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(36,43,73,0.55);
  z-index: 4000;
  justify-content: center;
  align-items: center;
  padding: 40px 8px 8px 8px;
  overflow: auto;
  transition: background 0.3s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-l);
  padding: 34px 32px 30px 32px;
  min-width: 330px;
  max-width: 95vw;
  box-shadow: 0 6px 46px 0 rgba(26,50,88,0.18);
  animation: modalFadeIn 0.35s;
  position: relative;
}
@keyframes modalFadeIn {
  0% { opacity: 0; transform: translateY(60px) scale(0.98);} 
  90% { opacity: 1; transform: translateY(-3px) scale(1.007);} 
  100% { opacity: 1; transform: translateY(0) scale(1.0); }
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 18px;
  font-size: 2rem;
  background: none;
  color: var(--brand-primary);
  border: none;
  padding: 5px;
  border-radius: var(--radius-s);
  cursor: pointer;
  z-index: 4100;
  transition: background 0.17s, color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--brand-accent);
  color: var(--brand-secondary);
}

.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--brand-primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 28px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
}
.cookie-category label {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  color: var(--brand-primary);
}
.cookie-toggle {
  appearance: none;
  width: 46px; height: 24px;
  background: #E0E0E4;
  border-radius: 14px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-toggle:checked {
  background: var(--brand-secondary);
}
.cookie-toggle:after {
  content: '';
  position: absolute;
  top: 2px; left: 3px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s, background 0.16s;
  box-shadow: 0 1px 3px 0 rgba(140,120,14,0.08);
}
.cookie-toggle:checked:after {
  left: 23px;
}
.cookie-category[aria-disabled="true"] .cookie-toggle, 
.cookie-category[aria-disabled="true"] label {
  opacity: 0.7;
  pointer-events: none;
}

.cookie-modal .cookie-btn {
  margin: 0 7px 0 0;
  font-size: 1rem;
  padding: 9px 22px;
  min-width: 110px;
}

@media (max-width: 600px) {
  .cookie-modal {
    min-width: 0; padding: 18px 8px 13px 8px;
    border-radius: var(--radius-m);
  }
  .cookie-modal h2 { font-size: 1.08rem; }
}

/******************************
 CLASSIC / ELEGANT ACCENTS
******************************/
.section, .card, .testimonials, .features {
  border: 1.1px solid var(--brand-accent);
}

.testimonials {
  background: #F7F6F3;
}
.testimonial-card {
  box-shadow: 0 2px 16px 0 rgba(26,50,88,0.07);
  border: 1px solid #E3E3E8;
  background: #fff;
  font-size: 1.05rem;
  margin-bottom: 24px;
}

/* Forms & Input (future-proof if added) */
input, textarea, select {
  font-family: 'Roboto', serif;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: var(--radius-s);
  border: 1.1px solid var(--brand-accent);
  box-shadow: var(--shadow-default);
  margin-bottom: 16px;
  background: #fff;
  color: var(--brand-primary);
  transition: border 0.12s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 1.1px solid var(--brand-primary);
  box-shadow: 0 2px 10px 0 rgba(26,50,88,0.10);
}

/* Accessibility Helpers */
:focus-visible {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}

/*********************************
   Newsletter, News Section etc.
*********************************/
.news-feed ul, .insights ul, .newsletter-signup {
  list-style-type: none;
  padding: 0; margin: 0;
}
.news-feed ul li {
  border-bottom: 1px solid #EDEDEE;
  padding: 18px 0;
  color: var(--brand-dark);
}
.news-feed ul li:last-child { border-bottom: none; }
.insights ul li {
  background: #F7F6F3;
  border-radius: var(--radius-s);
  margin-bottom: 22px;
  padding: 16px 14px;
  box-shadow: 0 1px 6px 0 rgba(26,50,88,0.05);
}
.insights ul li h3 {
  font-size: 1.13rem; color: var(--brand-primary); margin-bottom: 8px;
}
.insights ul li a {
  color: var(--brand-primary);
  text-decoration: underline;
  font-weight: 500;
}
.insights ul li a:hover { color: var(--brand-secondary); }

/******************************
    THANK YOU SECTION
*******************************/
.thank-you-section {
  display: flex;
  align-items: center;
  min-height: 34vh;
  justify-content: center;
}
.thank-you-section .content-wrapper {
  align-items: center;
  text-align: center;
}
.thank-you-section .cta-primary {
  margin-top: 24px;
}

/* HIDE scroll when modal/menu open */
body.mobile-menu-open, body.cookie-modal-open { overflow: hidden !important; }

