/* =======================================================
   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;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #EFF6FB;
  color: #175A7A;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =======================================================
   BRANDING & PALETTE
   ======================================================= */
:root {
  --primary: #175A7A;
  --secondary: #EFF6FB;
  --accent: #2093C3;
  --cta: #FEC800;
  --white: #fff;
  --dark: #13334C;
  --positive: #54C689;
  --negative: #FF6F59;
  --shadow: 0 4px 24px 0 rgba(23, 90, 122, 0.11);
  --radius: 22px;
  --radius-small: 12px;
  --focus: #FEC800;
  --gray-light: #B8D4E6;
  --gray: #7CA2B6;
  --star: #FCCD35;
}

body {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 0.5em;
}
h1 {
  font-size: 2.2rem;
  letter-spacing: -2px;
}
h2 {
  font-size: 1.6rem;
}
h3 {
  font-size: 1.15rem;
}

p, li, ul, ol {
  color: var(--primary);
  font-size: 1rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  margin-bottom: 0.8em;
}

strong {
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* =======================================================
   LAYOUT SECTIONS & FLEXBOX ALIGNMENT
   ======================================================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 24px 20px;
  transition: transform 0.16s, box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-4px) scale(1.02) rotate(-1.5deg);
  box-shadow: 0 8px 32px 0 rgba(32,147,195,0.18);
}

.section ul {
  padding-left: 1.4em;
}
.section ul li, .section ol li {
  margin-bottom: 0.4em;
}

/* =======================================================
   PLAYFUL DYNAMIC: COLORS, TYPOGRAPHY, ANIMATION
   ======================================================= */
body {
  background: linear-gradient(135deg, #EFF6FB 60%, #CDECFB 100%);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: var(--primary);
}
h1 {
  letter-spacing: -2px;
  line-height: 1.08;
  font-size: 2.6rem;
  background: linear-gradient(90deg, var(--primary) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 {
  font-size: 2rem;
  color: var(--accent);
  background: none;
  -webkit-text-fill-color: initial;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.cta-primary, .cta-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cta);
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 14px 32px;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 40px;
  box-shadow: 0 2px 20px 0 rgba(254,200,0,0.14);
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  margin-top: 20px;
  margin-bottom: 0;
  transition: background 0.22s, color 0.17s, transform 0.19s;
}
.cta-primary:hover, .cta-nav:hover {
  background: var(--positive);
  color: var(--white);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 32px rgba(32,147,195,0.18);
}
.cta-nav {
  margin-left: 25px;
}

/* Playful underline on links */
a:not(.cta-primary):not(.cta-nav):hover {
  color: var(--accent);
  text-decoration: underline wavy 2px var(--cta);
  text-underline-offset: 3px;
  transition: color 0.18s;
}

/* Fun list style */
ul.value-list {
  list-style: none;
  padding-left: 0;
}
ul.value-list li::before {
  content: '✨';
  margin-right: 0.4em;
  color: var(--cta);
}

/* =======================================================
   NAVIGATION - FLEX, BURGER, RESPONSIVE
   ======================================================= */
header {
  background: var(--white);
  box-shadow: 0 2px 12px 0 rgba(23,90,122,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 0;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 30px;
  padding: 18px 0 16px 0;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.main-nav img {
  height: 54px;
  margin-right: 26px;
}
.main-nav a {
  padding: 8px 10px;
  color: var(--primary);
  border-radius: var(--radius-small);
  font-weight: 700;
  transition: background 0.21s, color 0.21s;
}
.main-nav a:hover {
  background: var(--accent);
  color: var(--white);
}

.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 21px;
  background: var(--accent);
  color: var(--white);
  border: none;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1101;
  align-items: center;
  justify-content: center;
  transition: background 0.20s, box-shadow 0.18s;
  box-shadow: 0 2px 9px 0 rgba(32,147,195,0.14);
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--cta);
  background: var(--focus);
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.39,.58,.57,1), box-shadow 0.23s;
  padding: 32px 32px 0 24px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 8px 44px 0 rgba(23,90,122,0.18);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--accent);
  color: var(--white);
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
  cursor: pointer;
  transition: background 0.18s, color 0.19s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  background: none;
  padding: 13px 0 13px 10px;
  border-radius: var(--radius-small);
  font-weight: 700;
  transition: background 0.19s, color 0.15s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: var(--accent);
  color: var(--white);
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 0 14px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 0 6px;
    font-size: 0.97rem;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 821px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =======================================================
   HERO AREA, CARDS, FEATURES & SERVICES - PLAYFUL ANIMATIONS
   ======================================================= */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px 25px 22px;
  box-shadow: var(--shadow);
  min-width: 230px;
  max-width: 340px;
  flex: 1 1 260px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.service-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
}
.service-card a {
  align-self: start;
  margin-top: 9px;
  color: var(--accent);
  font-weight: bold;
  text-decoration: underline dotted;
  font-size: 1.1rem;
  transition: color 0.17s, text-decoration 0.16s;
}
.service-card a:hover {
  color: var(--cta);
}
.service-card:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-4px) scale(1.03) rotate(2.5deg);
  box-shadow: 0 7px 42px 0 rgba(23,90,122,0.14);
}
.service-card:hover h3, .service-card:hover p {
  color: var(--white);
}
.service-card:hover a {
  color: var(--cta);
  text-decoration: underline wavy 2px var(--cta);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.feature-grid li {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 25px 20px 17px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 200px;
  max-width: 300px;
  flex: 1 1 210px;
  transition: box-shadow 0.15s, background 0.23s, transform 0.18s;
  margin-bottom: 20px;
  position: relative;
  overflow: visible;
}
.feature-grid li:hover {
  background: var(--cta);
  box-shadow: 0 4px 32px rgba(254,200,0,0.22);
  transform: translateY(-3px) scale(1.03) rotate(-2deg);
}
.feature-grid img {
  width: 40px;
  height: 40px;
}
.feature-grid h3 {
  margin-bottom: 7px;
  font-size: 1.15rem;
  color: var(--primary);
}

/****** BENEFITS *******/
.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  margin-top: 18px;
}
.benefit-list li {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 21px 17px 15px 17px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 180px;
  max-width: 320px;
  flex: 1 1 180px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, background 0.21s, transform 0.18s;
}
.benefit-list li img {
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
}
.benefit-list li strong {
  color: var(--accent);
}
.benefit-list li:hover {
  background: var(--positive);
  color: var(--white);
  box-shadow: 0 6px 24px 0 rgba(84,198,137,0.22);
  transform: scale(1.03) rotate(2.5deg);
}
.benefit-list li:hover strong {
  color: var(--white);
}

/****** TESTIMONIALS *******/
.testimonials-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 27px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  min-width: 250px;
  max-width: 440px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  color: var(--primary);
  font-size: 1.05rem;
  transition: box-shadow 0.16s, transform 0.18s, background 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px 0 rgba(32,147,195,0.23);
  background: var(--secondary);
  transform: scale(1.035) rotate(-1.5deg);
}
.testimonial-meta {
  font-size: 0.99rem;
  color: var(--gray);
  margin-top: 5px;
  font-style: italic;
}
.star-rating {
  display: flex;
  gap: 2px;
  align-items: center;
}
.star-rating img {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 2px #ffffff5e);
}

/****** FAQ ACCORDION ******/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow);
  padding: 20px 18px 16px 18px;
  transition: box-shadow 0.13s, background 0.16s;
}
.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  cursor: pointer;
  transition: color 0.17s;
}
.faq-item h3:hover {
  color: var(--accent);
}
.faq-item > div {
  font-size: 0.98rem;
  color: var(--primary);
}

/****** FOOTER ******/
footer {
  background: var(--primary);
  color: var(--white);
  padding: 44px 0 15px 0;
  border-top-left-radius: 44px;
  border-top-right-radius: 44px;
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.footer-menu a {
  color: var(--cta);
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  transition: text-decoration 0.15s, color 0.185s;
}
.footer-menu a:hover {
  color: var(--white);
  text-decoration: underline wavy 2px var(--cta);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 43px;
  font-size: 1.01rem;
  margin-bottom: 6px;
}
.footer-contact p {
  color: var(--gray-light);
  font-size: 1.03rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
}
.footer-social {
  display: flex;
  gap: 17px;
  margin-bottom: 8px;
}
.footer-social a {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  justify-content: center;
  transition: background 0.17s, box-shadow 0.17s;
}
.footer-social a:hover {
  background: var(--cta);
  box-shadow: 0 2px 9px 0 rgba(254,200,0,0.22);
}
.footer-social img {
  width: 22px;
  height: 22px;
}
footer small {
  color: var(--gray-light);
  font-size: 0.91rem;
  margin-top: 7px;
  letter-spacing: 0.2px;
}


/* =======================================================
   COOKIE CONSENT BANNER + MODAL
   ======================================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: var(--white);
  border-top: 2px solid var(--primary);
  z-index: 5000;
  box-shadow: 0 -4px 24px 0 rgba(23,90,122,0.13);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: cookieFadeIn 0.39s;
}
@keyframes cookieFadeIn {
  from { opacity:0; transform:translateY(50px);} 
  to { opacity:1; transform:translateY(0);}
}
.cookie-banner p {
  font-size: 1.06rem;
  text-align: center;
  color: var(--primary);
  margin-bottom: 0;
}
.cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-actions button {
  background: var(--accent);
  color: var(--white);
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  border-radius: 24px;
  padding: 11px 20px;
  cursor: pointer;
  transition: background 0.16s, color 0.14s, transform 0.13s;
  box-shadow: 0 2px 11px 0 rgba(32,147,195,0.14);
}
.cookie-actions button:focus {
  outline: 2px solid var(--cta);
  background: var(--positive);
}
.cookie-actions .cookie-settings {
  background: var(--cta);
  color: var(--primary);
}
.cookie-actions .cookie-reject {
  background: var(--negative);
  color: var(--white);
}
.cookie-actions button:hover {
  transform: scale(1.06);
  filter: brightness(1.08);
}

.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23,90,122,0.23);
  z-index: 5200;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookieModalFadeIn 0.41s;
}
@keyframes cookieModalFadeIn {
  from { opacity:0; } to { opacity:1; }
}
.cookie-modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px 21px 26px;
  box-shadow: 0 8px 40px 0 rgba(23,90,122,0.20);
  min-width: 312px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 5300;
  animation: cookieModalPopIn 0.45s;
}
@keyframes cookieModalPopIn {
  from { transform:scale(0.92);} 
  to { transform:scale(1);}
}
.cookie-modal h3 {
  color: var(--accent);
  font-size: 1.27rem;
  margin-bottom: 7px;
}
.cookie-modal label {
  font-size: 1.05rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.cookie-modal input[type=checkbox]:focus {
  outline: 2px solid var(--cta);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 13px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal .cookie-modal-close:hover {
  background: var(--cta);
  color: var(--primary);
}

.cookie-category {
  margin-bottom: 12px;
}
.cookie-toggle {
  width: 38px;
  height: 18px;
  background: var(--gray-light);
  border-radius: 20px;
  display: inline-block;
  position: relative;
  margin-left: 11px;
  vertical-align: middle;
  transition: background 0.17s;
}
.cookie-toggle input[type='checkbox'] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
  left: -999px;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gray);
  transition: left 0.19s, background 0.23s;
}
.cookie-toggle input[type='checkbox']:checked + .cookie-toggle-slider {
  left: 20px;
  background: var(--accent);
}

/* Essential cookies always on */
.cookie-category.essential label {
  opacity: 0.7;
  pointer-events: none;
}

/****** SPACING UTILITIES ******/
.mt-2 { margin-top: 2px !important; }
.mb-2 { margin-bottom: 2px !important; }
.mt-4 { margin-top: 4px !important; }
.mb-4 { margin-bottom: 4px !important; }
.mt-8 { margin-top: 8px !important; }
.mb-8 { margin-bottom: 8px !important; }
.mt-24 { margin-top: 24px !important; }

/* =======================================================
   PLAYFUL MICRO-INTERACTIONS & REVEAL ANIMATIONS
   ======================================================= */
@keyframes float {
  0% { transform: translateY(0px) rotate(-2deg);}
  50% { transform: translateY(-6px) scale(1.03) rotate(2deg);}
  100% { transform: translateY(0px) rotate(-2deg);}
}
.service-card, .feature-grid li, .benefit-list li, .testimonial-card {
  animation: float 4.1s ease-in-out infinite;
  animation-delay: 0.4s;
}

@media (max-width: 500px) {
  .service-card, .feature-grid li, .benefit-list li, .testimonial-card {
    animation: none;
  }
}

/* =======================================================
   RESPONSIVE DESIGN – MOBILE-FIRST ADJUSTMENTS
   ======================================================= */
@media (max-width: 1024px) {
  .container {
    max-width: 97vw;
  }
  .feature-grid, .benefit-list, .service-cards, .testimonials-slider, .testimonial-list {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.35rem; }
  .main-nav img { height: 40px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.09rem; }
  .container {
    padding-left: 9px;
    padding-right: 9px;
  }
  .section { padding: 28px 8px; margin-bottom: 40px; }
  .content-wrapper {
    gap: 12px;
  }
  .feature-grid, .service-cards, .benefit-list, .testimonials-slider, .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid li, .service-card, .benefit-list li, .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
  .footer-contact, .footer-menu, .footer-social {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-social {
    margin-bottom: 0;
  }
  .main-nav {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .mobile-menu {
    padding-top: 21px;
    padding-left: 7px;
    padding-right: 7px;
  }
  .cookie-modal {
    min-width: 95vw;
    padding: 24px 9px 14px 11px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 420px) {
  h1 { font-size: 1.1rem; }
  h2, h3 { font-size: 0.97rem; }
  .cta-primary, .cta-nav, .cookie-actions button { font-size: 0.98rem; padding: 11px 8vw; }
  .main-nav img { height: 28px; }
  .service-card, .feature-grid li, .benefit-list li, .testimonial-card, .faq-item {
    padding: 16px 6px 11px 7px;
  }
}

/* =======================================================
   PRINT, SELECTION, ACCESSIBILITY
   ======================================================= */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body { background: #fff; color: #000; }
}

::-webkit-selection,
::selection {
  background: var(--accent);
  color: var(--white);
}

:focus-visible {
  outline: 2.5px solid var(--cta);
}

/* =======================================================
   END OF STYLE.CSS
   ======================================================= */
