/*------------------------------
  CSS RESET & NORMALIZATION
-------------------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F5F6FA;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  padding-left: 1.3em;
}
a {
  color: #244B73;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #91B14A;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.18;
  color: #244B73;
  margin-bottom: 0.55em;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.05rem; }
}

p, li {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 0.8em;
  color: #222;
}
p:last-child, li:last-child {
  margin-bottom: 0;
}

/*------------------------------
  COLORS FROM BRAND
-------------------------------*/
:root {
  --color-primary: #244B73;
  --color-secondary: #91B14A;
  --color-accent: #F5F6FA;
  --color-bg-light: #fff;
  --color-grey: #eef0f3;
  --color-dark: #16263b;
  --color-shadow: rgba(36, 75, 115, 0.08);
}

/*------------------------------
  GLOBAL LAYOUT/CONTAINER
-------------------------------*/
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
}
/*------------------------------
  HEADER & MAIN NAVIGATION
-------------------------------*/
header {
  width: 100%;
  background: linear-gradient(90deg, #244B73 60%, #91B14A 100%);
  box-shadow: 0 2px 12px var(--color-shadow);
  position: relative;
  z-index: 200;
}
.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 20px;
}
.main-nav > a img {
  height: 36px;
  width: auto;
  display: block;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin-left: 28px;
}
.main-nav ul li a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #F5F6FA;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  padding: 6px 3px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  color: #91B14A;
  background: rgba(245,246,250,0.09);
}
.cta-primary {
  display: inline-block;
  background: linear-gradient(90deg, #91B14A 0%, #244B73 95%);
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 28px;
  box-shadow: 0 2px 8px var(--color-shadow);
  border: none;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.03em;
  transition: background 0.25s, box-shadow 0.21s, color 0.19s, transform 0.16s;
  margin-left: 26px;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #244B73 0%, #91B14A 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 5px 18px var(--color-shadow);
  text-decoration: none;
}
@media (max-width: 1024px) {
  .main-nav ul {
    gap: 16px;
    margin-left: 8px;
  }
  .cta-primary {
    margin-left: 10px;
    font-size: 1rem;
    padding: 10px 22px;
  }
}

/*------------------------------
  BURGER MOBILE MENU
-------------------------------*/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: 14px;
  right: 22px;
  z-index: 302;
  transition: color 0.17s, background 0.17s;
  padding: 4px 10px;
  border-radius: 6px;
}
@media (max-width: 900px) {
  .main-nav ul, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #244B73;
  background: linear-gradient(121deg, #244B73 80%, #91B14A 100%);
  z-index: 5003;
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(.77,.01,.29,.98);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  box-shadow: 4px 0 14px rgba(36,75,115,0.11);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 17px;
  right: 20px;
  cursor: pointer;
  z-index: 4020;
  padding: 3px 14px;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(145,177,74,0.12);
  color: #91B14A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 78px;
  width: 100%;
  max-width: 350px;
  gap: 0;
  padding-left: 28px;
}
.mobile-nav a {
  display: block;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 0 16px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
  text-decoration: none;
  transition: background 0.16s, color 0.16s;
  letter-spacing: 0.02em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #91B14A;
  color: #244B73;
}

@media (max-width: 500px) {
  .mobile-nav {
    max-width: 100vw;
    padding-left: 12px;
  }
}

/*------------------------------
  HERO & MAIN SECTION
-------------------------------*/
.hero {
  background: linear-gradient(120deg, #F5F6FA 60%, #e9efeb 100%);
  display: flex;
  align-items: center;
  min-height: 335px;
  padding: 0;
}
.hero .container {
  justify-content: center;
  align-items: center;
  padding-top: 46px;
  padding-bottom: 46px;
}
.hero .content-wrapper {
  background: rgba(255,255,255,0.93);
  border-radius: 22px;
  box-shadow: 0 5px 24px var(--color-shadow);
  padding: 38px 42px;
  align-items: flex-start;
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
@media (max-width: 768px) {
  .hero .content-wrapper {
    padding: 24px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--color-shadow);
  }
  .hero .container {
    padding-top: 12px;
    padding-bottom: 28px;
  }
}
.hero h1 {
  margin-bottom: 18px;
  font-size: 2.4rem;
  line-height: 1.12;
}
.hero p {
  font-size: 1.13rem;
  color: #244B73;
  margin-bottom: 18px;
}

/*------------------------------
  FLEX PATTERNS & CARDS
-------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px var(--color-shadow);
  margin-bottom: 20px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 230px;
  flex: 1 1 270px;
  transition: box-shadow 0.21s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 22px var(--color-shadow);
  transform: translateY(-4px) scale(1.02);
}

.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: 20px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  color: #244B73;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 28px;
  box-shadow: 0 2px 10px var(--color-shadow);
  min-width: 220px;
  max-width: 450px;
  transition: box-shadow 0.19s, filter 0.17s;
}
.testimonial-card p {
  color: #16263b;
  font-size: 1.03rem;
  margin-bottom: 8px;
}
.testimonial-meta {
  font-size: 0.98rem;
  font-weight: 500;
  color: #244B73;
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial-meta span {
  color: #91B14A;
  font-size: 1.15em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F5F6FA;
  border-radius: 14px;
  box-shadow: 0 1px 7px var(--color-shadow);
  padding: 22px 18px;
  min-width: 170px;
  max-width: 325px;
  flex: 1 1 220px;
  margin-bottom: 22px;
  transition: box-shadow 0.18s, transform 0.158s;
}
.feature-item:hover {
  box-shadow: 0 7px 24px var(--color-shadow);
  transform: translateY(-2px) scale(1.025);
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
}
.feature-item h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  color: #244B73;
}

@media (max-width: 900px) {
  .card-container,
  .content-grid,
  .feature-grid,
  .service-tiles,
  .service-grid,
  .news-list,
  .offer-tiles,
  .team-members,
  .benefit-grid {
    flex-direction: column !important;
    gap: 18px;
    align-items: stretch;
  }
  .feature-item, .card, .service-item, .service-tile, .news-item, .offer-tile, .team-member-card {
    min-width: 0;
    max-width: 100%;
  }
}

/******   SPECIAL FLEX PATTERN COMPONENTS *******/
.feature-grid,
.service-tiles,
.service-grid,
.news-list,
.offer-tiles,
.team-members,
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.team-member-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 8px var(--color-shadow);
  padding: 22px 18px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 200px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.team-member-card:hover {
  box-shadow: 0 5px 19px var(--color-shadow);
  transform: translateY(-3px) scale(1.022);
}
.service-tile, .service-item, .offer-tile, .news-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px var(--color-shadow);
  padding: 20px 18px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  min-width: 170px;
  transition: box-shadow 0.13s, transform 0.12s;
}
.service-tile:hover,
.service-item:hover,
.offer-tile:hover,
.news-item:hover {
  box-shadow: 0 5px 16px var(--color-shadow);
  transform: translateY(-2px) scale(1.018);
}

/********  BENEFIT ICONS   ******/
.benefit-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 12px;
  margin-bottom: 10px;
}
.benefit-icons img {
  width: 48px;
  height: 48px;
}

/******** TEXT/ICON WITH IMAGE *******/
.map-location, .contact-form-info {
  background: #F5F6FA;
  border-radius: 10px;
  padding: 16px 14px;
  margin: 12px 0 8px 0;
  box-shadow: 0 1px 7px var(--color-shadow);
}
.contact-details ul {
  list-style: none;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.04rem;
  color: #244B73;
  margin-bottom: 0;
}
.contact-details ul li img {
  width: 22px;
  height: 22px;
}

/******* FAQ ACCORDION *******/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  background: #fff;
  border-radius: 11px;
  padding: 14px 14px 9px 17px;
  box-shadow: 0 1px 7px var(--color-shadow);
  margin-bottom: 4px;
  transition: box-shadow 0.13s, background 0.11s;
}
.faq-item h3 {
  font-size: 1.12rem;
  color: #244B73;
  margin-bottom: 6px;
}
.faq-item p {
  color: #222;
  margin-bottom: 0;
}
.faq-item:hover {
  box-shadow: 0 2px 18px var(--color-shadow);
  background: #f8faee;
}
/******** LEGAL TEXT *****/
.legal-text h1 {
  font-size: 2rem;
  color: #244B73;
  margin-bottom: 24px;
}
.legal-text h2 {
  font-size: 1.18rem;
  color: #244B73;
  margin-bottom: 12px;
  margin-top: 22px;
}
.legal-text p,
.legal-text ul, .legal-text li {
  color: #222;
  line-height: 1.7;
  font-size: 0.99rem;
  margin-bottom: 8px;
}

/*********** THANK-YOU PAGE *********/
.thank-you {
  background: linear-gradient(100deg, #F5F6FA 65%, #e4f0e6 100%);
  min-height: 40vh;
  display: flex;
  align-items: center;
  padding: 0;
}
.thank-you .container {
  justify-content: center;
  padding-top: 45px;
  padding-bottom: 26px;
}
.thank-you .content-wrapper {
  padding: 34px 26px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 17px var(--color-shadow);
  text-align: left;
  max-width: 560px;
  margin: 0 auto;
  align-items: flex-start;
}
.thank-you h1 {
  color: #244B73;
  font-size: 2rem;
  margin-bottom: 20px;
}
.thank-you ul {
  margin-bottom: 22px;
}

/*------------------------------
  CTA BANNER
-------------------------------*/
.cta-banner {
  background: linear-gradient(90deg, #91B14A 5%, #244B73 90%);
  color: #fff;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 33px 0 30px 0;
  box-shadow: 0 3px 18px var(--color-shadow);
}
.cta-banner .content-wrapper {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  gap: 34px;
}
.cta-banner p {
  color: #fff;
  font-size: 1.22rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .cta-banner .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .cta-banner {
    border-radius: 12px;
    padding: 18px 0 19px 0;
  }
}

/***************************
  FOOTER
***************************/
footer {
  padding: 38px 0 24px 0;
  background: linear-gradient(87deg, #244B73 85%, #91B14A 100%);
  color: #fff;
  font-size: 0.98rem;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px;
}
.footer-nav {
  flex: 2 1 190px;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-nav ul li a:hover {
  color: #91B14A;
}
.footer-contact {
  flex: 3 1 330px;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline dotted;
  transition: color 0.18s;
}
.footer-contact a:hover {
  color: #91B14A;
}
.footer-logo {
  flex: 1 1 110px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 10px;
}
.footer-logo img {
  width: 64px;
  height: auto;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
  .footer-logo {
    justify-content: flex-start;
    padding-top: 4px;
  }
}

/*------------------------------
  COOKIE CONSENT BANNER
-------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #F5F6FA 75%, #91B14A 100%);
  color: #244B73;
  box-shadow: 0 -2px 20px var(--color-shadow);
  padding: 20px 24px 18px 24px;
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 1rem;
  animation: bounceInUp 0.6s;
}
@keyframes bounceInUp {
  0% {transform: translateY(150px); opacity: 0;}
  80% {transform: translateY(-9px); opacity: 1;}
  100% {transform: translateY(0);}
}
.cookie-banner p {
  color: #244B73;
  margin-bottom: 6px;
  max-width: 600px;
}
.cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-btn {
  border: none;
  border-radius: 18px;
  padding: 10px 20px;
  margin-right: 6px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.16s, transform 0.12s;
  box-shadow: 0 1px 6px var(--color-shadow);
}
.cookie-btn.accept {
  background: linear-gradient(90deg, #91B14A 70%, #244B73 100%);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: linear-gradient(90deg, #244B73 70%, #91B14A 100%);
  color: #fff;
  transform: scale(1.05);
}
.cookie-btn.reject {
  background: #fff;
  color: #244B73;
  border: 1.5px solid #91B14A;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #91B14A;
  color: #fff;
  transform: scale(1.05);
}
.cookie-btn.settings {
  background: #F5F6FA;
  color: #244B73;
  border: 1.4px solid #244B73;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #244B73;
  color: #fff;
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 14px 8px 13px 8px;
    font-size: 0.99rem;
  }
  .cookie-banner p {
    max-width: 95vw;
  }
  .cookie-banner .cookie-actions {
    gap: 6px;
    flex-wrap: wrap;
  }
}

/**** COOKIE SETTINGS MODAL ****/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh; 
  background: rgba(36, 75, 115, 0.71);
  z-index: 8000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.33s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0;} to {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  color: #244B73;
  border-radius: 18px;
  box-shadow: 0 8px 34px var(--color-shadow);
  max-width: 390px;
  min-width: 260px;
  padding: 30px 28px 18px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 11px;
  position: relative;
  animation: modalAppear 0.41s;
}
@keyframes modalAppear {
  0% {transform: translateY(-40px) scale(0.93);opacity: 0;}
  70% {transform: translateY(12px) scale(1.04); opacity: 1;}
  100% {transform: translateY(0) scale(1);}
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #244B73;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #d6dde7;
  font-size: 1rem;
  gap: 12px;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  background: #eef0f3;
  border-radius: 20px;
  top: 0; left: 0;
  right: 0; bottom: 0;
  transition: background 0.25s;
}
.toggle-switch input:checked + .toggle-slider {
  background: linear-gradient(90deg, #244B73 65%, #91B14A 100%);
}
.toggle-slider:before {
  content: '';
  position: absolute;
  left: 5px;
  top: 4px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 6px var(--color-shadow);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(16px);
}
.cookie-modal .cookie-modal-actions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  margin-right: 0;
  min-width: 90px;
}
.cookie-modal .cookie-modal-close {
  background: none;
  border: none;
  color: #244B73;
  font-size: 1.5rem;
  position: absolute;
  top: 12px;
  right: 14px;
  cursor: pointer;
  z-index: 1;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #91B14A;
}

/********************************************
  RESPONSIVE UTILITIES AND MOBILE STYLES
*********************************************/
@media (max-width: 768px) {
  .feature-grid,
  .service-tiles,
  .service-grid,
  .news-list,
  .offer-tiles,
  .team-members,
  .benefit-grid {
    flex-direction: column;
    gap: 15px;
  }
  .cta-banner {
    margin-bottom: 38px;
  }
  .footer-contact,
  .footer-logo,
  .footer-nav {
    margin-bottom: 10px;
  }
}
@media (max-width: 500px) {
  .main-nav > a img { height: 28px; }
  .hero .content-wrapper {
    padding: 9px 5px;
    border-radius: 8px;
  }
  footer .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .cta-banner { border-radius: 6px; }
}

/********************************************
  BASIC ANIMATIONS
********************************************/
section, .cta-banner, .hero .content-wrapper, .card, .feature-item, .testimonial-card, .news-item, .offer-tile, .service-tile, .faq-item, .team-member-card {
  transition: box-shadow 0.18s, transform 0.136s, background 0.11s;
}
a, .cta-primary, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, .toggle-switch .toggle-slider {
  transition: background 0.16s, color 0.15s, transform 0.11s;
}

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

/********************************************
  PRINT OPTIMIZATION
********************************************/
@media print {
  header, footer, .cookie-banner, .cookie-modal-overlay, .mobile-menu { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .cta-primary { background: #244B73 !important; color: #fff !important; }
}
