/* =========================================================
  CSS RESET & BASE
========================================================= */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.65;
  background-color: #fff7f0;
  color: #334472;
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-size: 16px;
  min-width: 320px;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.22s;
}
a:focus {
  outline: 2px dashed #4864a3;
  outline-offset: 2px;
}
button, .cta-button {
  cursor: pointer;
  font-family: inherit;
}

/* =========================================================
  FONT IMPORT (GOOGLE FONTS - RETRO STYLE)
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;700&family=Montserrat:wght@400;700&display=swap');

:root {
  --brand-primary: #4864a3;
  --brand-primary-dark: #334472;
  --brand-secondary: #fff7f0;
  --brand-accent: #ffd257;
  --brand-base: #ffffff;
  --brand-nostalgia: #bca98d;
  --brand-retro-red: #c96a52;
  --brand-retro-green: #73a580;
  --brand-retro-blue: #456893;
  --card-shadow: 0 4px 16px rgba(72,100,163,0.08);
  --card-radius: 20px;
  --border-radius: 12px;
}

/* =========================================================
  TYPOGRAPHY
========================================================= */
h1, h2, h3, h4, .tagline, .cta-button {
  font-family: 'Baloo 2', cursive, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #334472;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
p, li, ul {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #334472;
  line-height: 1.7;
}
.tagline {
  font-size: 1.25rem;
  color: var(--brand-retro-red);
  margin-bottom: 24px;
}
strong {
  font-weight: bold;
  color: var(--brand-primary);
}

/* =========================================================
  LAYOUT & CONTAINERS
========================================================= */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff7f0;
  border-radius: var(--card-radius);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 10px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 6px;
  }
}

/* =========================================================
  FLEX UTILITY CLASSES & LISTS
========================================================= */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 16px;
}
.features-list li {
  background: #ffffff;
  border: 2.5px dashed #bca98d;
  box-shadow: var(--card-shadow);
  border-radius: var(--card-radius);
  padding: 28px 22px 20px 22px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 220px;
  max-width: 310px;
  position: relative;
  gap: 18px;
  transition: transform 0.18s cubic-bezier(.4,.01,.32,1), box-shadow 0.18s;
}
.features-list li:hover,
.features-list li:focus-within {
  transform: scale(1.038) translateY(-4px);
  box-shadow: 0 8px 28px #bca98d33;
  border-color: var(--brand-retro-red);
}
.features-list img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 0;
  filter: grayscale(10%) contrast(1.08);
}
.features-list h3 {
  color: var(--brand-primary);
  margin-bottom: 4px;
}
.features-list p {
  text-align: center;
}

.service-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-left: 0;
}
.service-list li {
  background: #fffbe8;
  color: #334472;
  border-left: 6px solid var(--brand-accent);
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 1rem;
  font-family: 'Montserrat';
  font-weight: 500;
  margin-bottom: 0; /* gap handles spacing */
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
  padding-left: 0;
}
.values-grid li {
  background: #ffd25711;
  border-radius: 8px;
  border: 1px dotted #4864a3;
  color: #334472;
  padding: 13px 18px;
  font-size: 1rem;
  flex: 1 1 220px;
  font-family: 'Montserrat';
}
.color-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 10px 0;
  padding-left: 0;
}
.color-palette li {
  background: #fffbe8;
  border-left: 6px solid var(--brand-primary);
  border-radius: 7px;
  padding: 8px 15px;
  font-family: 'Baloo 2', cursive;
  font-size: 1em;
  color: #334472;
}

/* Content grid (for advanced layouts, not used much in sample) */
.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) {
  .features-list,
  .values-grid,
  .color-palette,
  .content-grid,
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

/* Card container pattern if needed */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #ffffff;
  box-shadow: var(--card-shadow);
  border-radius: var(--card-radius);
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =========================================================
  HEADER + MOBILE NAV
========================================================= */
header {
  background: var(--brand-primary);
  color: #fff;
  padding: 0;
  position: relative;
  z-index: 1001;
}
header .container {
  min-height: 74px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: #fffbe8;
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  padding: 7px 14px;
  border-radius: 18px;
  transition: background 0.17s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
header a img {
  height: 42px;
}
@media (max-width: 1024px) {
  header nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu-toggle {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, box-shadow 0.16s;
  box-shadow: 0 2px 8px #bca98d22;
  z-index: 2002;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ffd257cc;
  box-shadow: 0 4px 14px #bca98d33;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff7f0;
  color: #334472;
  z-index: 4000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.7,.15,.36,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #334472;
  font-size: 2rem;
  padding: 16px 28px 10px 10px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-retro-red);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: 100%;
  margin-top: 10vh;
}
.mobile-nav a {
  color: #334472;
  background: #fffbe8;
  border-radius: 40px;
  font-family: 'Baloo 2', cursive;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  padding: 13px 30px;
  margin-bottom: 0;
  transition: background 0.18s, color 0.16s;
  min-width: 180px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}


/* =========================================================
  MAIN BUTTONS & CTA
========================================================= */
.cta-button, .cta-section .cta-button {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border: none;
  border-radius: 40px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  padding: 13px 42px;
  font-size: 1.23rem;
  box-shadow: 0 2px 12px #bca98d33;
  margin-top: 22px;
  display: inline-block;
  transition: background 0.16s, color 0.13s, box-shadow 0.16s, transform 0.18s;
}
.cta-button:hover, .cta-button:focus {
  background: var(--brand-retro-red);
  color: #fff;
  transform: translateY(-2px) scale(1.046);
  box-shadow: 0 6px 24px #c96a5244;
}

/* =========================================================
  PRICE HIGHLIGHT
========================================================= */
.price-highlight {
  display: flex;
  align-items: center;
  background: var(--brand-nostalgia);
  border-radius: 20px;
  color: #4864a3;
  font-family: 'Baloo 2', cursive;
  font-size: 1.18rem;
  font-weight: 500;
  padding: 14px 26px;
  margin: 27px 0 0 0;
  box-shadow: 0 2px 12px #bca98d22;
}

/* =========================================================
  TESTIMONIAL CARDS
========================================================= */
.testimonial-card {
  background: #fffbe8;
  color: #334472;
  border-radius: var(--card-radius);
  box-shadow: 0 2px 10px #bca98d0e;
  border: 2px solid #ffd257cc;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 28px;
  margin-bottom: 18px;
  min-width: 210px;
  max-width: 540px;
  position: relative;
  transition: box-shadow 0.18s, border 0.2s;
}
.testimonial-card .stars {
  color: var(--brand-retro-red);
  letter-spacing: 0.12em;
  font-size: 1.17rem;
  margin-top: 5px;
  font-family: 'Baloo 2', cursive;
}
.testimonial-card span {
  color: #456893;
  font-weight: 700;
  font-size: 0.98em;
  font-family: 'Montserrat', sans-serif;
  opacity: .85;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 22px #ffd25744;
  border: 2.5px solid var(--brand-retro-green);
}
@media (min-width: 769px) {
  .content-wrapper > .testimonial-card {
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .testimonial-card {
    max-width: 100%;
    margin-bottom: 16px;
    padding: 16px 12px;
  }
}

/* =========================================================
  ADDRESS, BRAND-INFO
========================================================= */
.brand-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 30px;
}
.brand-info img {
  height: 33px;
  margin-bottom: 10px;
}
brand-info address,
.brand-info p {
  color: #4864a3;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}
.brand-info a {
  color: var(--brand-retro-red);
  font-style: italic;
  word-break: break-all;
  transition: color 0.18s;
}
.brand-info a:hover {
  color: var(--brand-retro-green);
}
address {
  font-style: normal;
  margin-bottom: 4px;
}

/* =========================================================
  FOOTER
========================================================= */
footer {
  background: #334472;
  color: #fffbe8;
  padding: 42px 0 0 0;
  position: relative;
  font-size: 1rem;
  z-index: 500;
}
footer .container {
  padding-bottom: 16px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 0;
  min-width: 210px;
}
.footer-nav a {
  color: #fffefb;
  font-family: 'Baloo 2';
  font-size: 1.13rem;
  border-radius: 20px;
  transition: color 0.16s, background 0.18s;
  padding: 3px 10px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-primary);
  background: var(--brand-accent);
}
@media (max-width: 972px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 34px;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    min-width: unset;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  footer {
    padding-top: 22px;
    font-size: .98em;
  }
  .footer-nav {
    gap: 8px;
  }
  .brand-info {
    margin-top: 18px;
  }
}

/* =========================================================
  MISCELLANEOUS ELEMENTS & RETRO EFFECTS
========================================================= */
.next-steps {
  background: #ffd25711;
  border-left: 4px solid var(--brand-retro-green);
  color: #456893;
  padding: 9px 17px;
  border-radius: 6px;
  margin: 17px 0 0 0;
  font-family: 'Baloo 2', cursive;
  font-size: 1.03em;
}
.address-map {
  background: #ffd25715;
  padding: 14px 20px;
  border-radius: 13px;
  text-align: left;
  font-size: 1em;
  margin-top: 8px;
}
.assurance-block {
  background: #fffbe8;
  border-left: 7px solid var(--brand-retro-green);
  border-radius: 9px;
  padding: 8px 22px;
  margin-top: 18px;
  color: #4864a3;
  font-weight: 500;
}

/* =========================================================
  RETRO VINTAGE ACCENTS
========================================================= */
.section {
  /* retro pattern with subtle border and shadow */
  box-shadow: 0 2px 12px #4864a30d, 0 1.5px 0 #ffd257cc inset;
  border: 2.5px solid #ffd25766;
  border-radius: 28px;
}
body {
  /* Old paper effect */
  background: repeating-linear-gradient(135deg, #fff7f0 0, #fffbe8 100px, #fff7f0 200px), #fff7f0;
}

/* Decorative Dots Pattern for Nostalgic Touch - applied to header/section */
header {
  background-image: radial-gradient(circle at 7% 25%, #ffd25733 2%, transparent 60%),
    radial-gradient(circle at 77% 60%, #c96a5215 2%, transparent 70%);
}
.section {
  background-image: radial-gradient(circle at 15% 40%, #ffd25722 3%, transparent 60%),
    radial-gradient(circle at 88% 60%, #bca98d19 2%, transparent 85%);
}


/* =========================================================
  RESPONSIVE STYLES
========================================================= */
@media (max-width: 768px) {
  h1 {
    font-size: 2.05rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .features-list li {
    min-width: auto;
    max-width: 100%;
    padding: 20px 12px 14px 12px;
  }
  .container {
    padding: 0 5px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .card {
    padding: 14px 8px;
  }
  .price-highlight {
    font-size: 1rem;
    padding: 7px 12px;
  }
}


/* =========================================================
  COOKIE CONSENT BANNER
========================================================= */
.cookie-banner {
  position: fixed;
  z-index: 5000;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fffbe8;
  color: #334472;
  box-shadow: 0 -4px 16px #33447213;
  border-top: 3px solid var(--brand-accent);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  gap: 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  animation: cookieSlideIn 0.65s cubic-bezier(.34,1.56,.64,1);
}
.cookie-banner p {
  margin: 0;
  flex: 2 1 80%;
  color: #334472;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Baloo 2', cursive;
  font-size: 1rem;
  border: none;
  border-radius: 22px;
  padding: 7px 22px;
  margin: 0;
  background: var(--brand-primary);
  color: #fffbe8;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.21s, color 0.13s, transform 0.16s;
  box-shadow: 0 1px 8px #ffd25722;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--brand-retro-red);
  color: #fff;
  transform: scale(1.064);
}
.cookie-banner .btn-secondary {
  background: var(--brand-nostalgia);
  color: #4864a3;
  font-weight: 600;
}
.cookie-banner .btn-secondary:hover, .cookie-banner .btn-secondary:focus {
  background: var(--brand-retro-green);
  color: #fffbe8;
}
@media (max-width: 670px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 10px;
    font-size: 0.97em;
  }
  .cookie-banner .cookie-actions {
    flex-direction: row;
    width: 100%;
    gap: 7px;
    justify-content: flex-end;
  }
}
@keyframes cookieSlideIn {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ===== Cookie Modal (for settings) ===== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 6000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff7f0dd;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .35s cubic-bezier(.28,.64,.35,1.14);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 6px 30px #33447233;
  min-width: 310px;
  max-width: 97vw;
  padding: 36px 26px 28px 26px;
  color: #334472;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  animation: slideInModal .44s cubic-bezier(.9,-0.26,.4,1.34);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@keyframes slideInModal {
  from { opacity: 0; transform: scale(.9) translateY(42px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  color: #4864a3;
  margin-bottom: 5px;
  font-size: 1.45rem;
  font-family: 'Baloo 2', cursive;
}
.cookie-modal .cookie-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #ffd25722;
}
.cookie-modal .cookie-option:last-child {
  border-bottom: none;
}
.cookie-modal label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  flex: 1 1 auto;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--brand-accent);
  width: 23px;
  height: 23px;
  border-radius: 7px;
  margin-right: 7px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 14px;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: #334472;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: var(--brand-retro-red);
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal button {
  font-family: 'Baloo 2', cursive;
  font-size: 1rem;
  border-radius: 20px;
  border: none;
  padding: 8px 28px;
  color: #334472;
  background: var(--brand-accent);
  font-weight: 700;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--brand-retro-green);
  color: #fffbe8;
}

/* =========================================================
  ACCESSIBILITY
========================================================= */
:focus-visible {
  outline: 2.5px dashed var(--brand-primary) !important;
  outline-offset: 2px;
}

/* Hide visually-only (for accessibility, if needed) */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* =========================================================
  OTHER PATTERNS (CARD, FEATURE ITEM, ETC)
========================================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fffbe8;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: var(--card-shadow);
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 16px;
}

/* Ensure no overlap & breathing space everywhere */
.section + .section,
.content-wrapper > * + *,
.card-container > * + *,
.features-list > * + *,
.values-grid > * + *,
.color-palette > * + *,
.content-grid > * + *,
.footer-nav > * + * {
  margin-top: 0;
}

/* Remove last margin (except as needed) */
.section:last-child,
.content-wrapper > *:last-child {
  margin-bottom: 0;
}

/* Subtle hover effect for sections (retro effect) */
.section:hover {
  box-shadow: 0 8px 32px #c96a5220, 0 0 0 3px #ffd25755;
}

/* =========================================================
  CUSTOM RETRO MICRO-INTERACTIONS
========================================================= */
.features-list li:active, .cta-button:active, .mobile-menu-toggle:active, .cookie-banner button:active {
  transform: scale(.97);
}

/* Subtle bouncing icon for CTA buttons (retro) */
.cta-button::after {
  content: '\25CF';
  display: inline-block;
  color: var(--brand-retro-green);
  margin-left: 10px;
  font-size: 0.9em;
  animation: ctaPulse 2.4s infinite cubic-bezier(.37,.64,.66,.89);
}
@keyframes ctaPulse {
  0%, 100% { transform: translateY(0) scale(1.0); opacity:.87; }
  60% { transform: translateY(-3px) scale(1.13); opacity:.88; }
  70% { transform: translateY(0) scale(.98); }
}

/* Retro Divider (if needed) */
.divider {
  width: 66px;
  height: 4px;
  background: var(--brand-retro-red);
  border-radius: 2px;
  margin: 30px 0 22px 0;
}

/* Misc improvements for checkboxes etc. */
input[type="checkbox"] {
  accent-color: var(--brand-accent);
  width: 19px;
  height: 19px;
  border-radius: 6px;
  margin-right: 9px;
}

/* =========================================================
  PRINT / FINAL CLEANUP
========================================================= */
@media print {
  header, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
  section, .section {
    box-shadow: none;
    background: #fff;
    color: #334472;
    padding: 0 0 14px 0;
    margin-bottom: 22px;
  }
}
