/* ===========================================================
   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: #F6EEDD;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}
/* ===========================================================
   BRAND FONTS & VINTAGE RETRO FONT FAMILIES
   ========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:ital,wght@0,400;0,700;1,400&family=Pacifico&display=swap');

:root {
  --primary: #00447A;
  --secondary: #F1F5FA;
  --accent: #E6A100;
  --vintage-brown: #BD7D46;
  --vintage-cream: #FFF8E3;
  --vintage-coral: #E25D3A;
  --vintage-aqua: #6CC0B6;
  --retro-red: #A13D2D;
  --retro-olive: #8E9251;
  --retro-blue: #6097B5;
  --text-dark: #312313;
  --text-light: #F6F1E7;
  --border-radius: 18px;
  --shadow-md: 0 4px 16px rgba(49, 35, 19, 0.12);
  --shadow-lg: 0 8px 32px rgba(49,35,19,0.12);
  --font-display: 'Montserrat', 'Arial Black', 'Pacifico', cursive;
  --font-retro-cursive: 'Pacifico', cursive, Arial, sans-serif;
  --font-body: 'Roboto', 'Arial', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--vintage-cream);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.6rem;
  font-weight: 900;
  text-shadow: 2px 3px 0 var(--accent), 0 2px 6px rgba(170,80,25,0.05);
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 1px 2px 0 var(--vintage-brown), 0 1px 4px rgba(168,116,44,0.07);
}
h3 {
  font-size: 1.4rem;
  font-weight: 700;
}
h4,h5,h6 {
  font-size: 1rem;
  font-weight: 700;
}
strong, b {
  font-weight: 700;
}

p, li, address {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}

address {
  font-style: normal;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* ===========================================================
   GENERAL SPACING, PATTERNS, CONTAINERS
   ========================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--vintage-cream);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  padding: 32px 24px;
  border-radius: var(--border-radius);
  background: var(--secondary);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--retro-olive);
  transition: box-shadow .22s, transform .22s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px) scale(1.03);
}

.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-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  color: var(--primary);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(49,35,19,0.12);
  padding: 20px 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1.5px dashed var(--vintage-coral);
  position: relative;
  min-width: 280px;
  max-width: 350px;
  flex: 1 1 300px;
  font-family: var(--font-body);
  z-index: 1;
  transition: box-shadow .18s, background .25s;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.06rem;
  margin-bottom: 10px;
  font-style: italic;
}
.testimonial-card span {
  color: var(--retro-red);
  font-size: 0.96rem;
}
.testimonial-card strong {
  color: var(--retro-red);
  font-family: var(--font-display);
}
.testimonial-card:hover {
  background: var(--secondary);
  box-shadow: 0 8px 32px rgba(49,35,19,0.16);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 18px 0 0 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFFFFFEE;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(190,149,67,0.09);
  border: 1.5px solid var(--accent);
  padding: 18px 16px 16px 16px;
  min-width: 180px;
  max-width: 260px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.feature-item h3 {
  color: var(--vintage-brown);
  margin-bottom:8px;
}
.feature-item img {
  height: 40px;
  width: auto;
  margin-bottom: 5px;
  filter: sepia(.4) saturate(0.9) hue-rotate(-10deg) brightness(0.8);
}
.feature-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--retro-olive);
  transform: scale(1.04) rotate(-2deg);
  background: var(--vintage-aqua);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-list details {
  background: var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(49,35,19,0.09);
  border: 1.5px solid var(--vintage-brown);
  font-family: var(--font-body);
  font-size: 1rem;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 20px;
  font-family: var(--font-display);
  color: var(--primary);
  background: #FFFBEC;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  transition: background .22s;
}
.faq-list details[open] summary {
  background: var(--accent);
  color: #fff;
}
.faq-list .text-section {
  padding: 10px 24px 16px 24px;
  color: var(--text-dark);
  background: #fff;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/* ===========================================================
   MAIN NAVIGATION: VINTAGE/RETRO LOOK
   ========================================================== */
header {
  padding: 0 0 4px 0;
  box-shadow: 0 4px 16px 0 rgba(49, 35, 19, 0.08);
  position: relative;
  z-index: 100;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  width: 100%;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.main-nav img {
  height: 40px;
  margin-right: 18px;
  filter: sepia(.3) brightness(1.1) contrast(1.05);
}
.main-nav a {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 6px 10px;
  border-radius: 6px;
  position: relative;
  transition: color .16s, background .15s, box-shadow .16s;
}
.main-nav a:not(.btn-primary):hover {
  background: var(--accent);
  color: #fff;
}

.btn-primary,
.main-nav .btn-primary {
  background: var(--accent);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 1.1rem;
  border: 2px solid var(--primary);
  border-radius: 999px;
  padding: 8px 20px 8px 20px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(49,35,19,0.08);
  letter-spacing: 0.02em;
  margin-left: 10px;
  transition: background .2s, color .2s, transform .18s, box-shadow .18s;
}
.btn-primary:hover,
.main-nav .btn-primary:hover {
  background: var(--primary);
  color: var(--accent) !important;
  transform: scale(1.04);
  box-shadow: 0 4px 18px rgba(190,149,67,0.16);
}

.btn-secondary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--accent);
  border-radius: 999px;
  padding: 8px 20px;
  font-family: var(--font-display);
  font-weight: bold;
  letter-spacing: 0.02em;
  font-size: 1.06rem;
  margin-top: 6px;
  transition: background .18s, color .16s, border .18s, transform .12s;
}
.btn-secondary:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05);
}

/* ===========================================================
   HERO, CTA, ABOUT & SECTION STYLES
   ========================================================== */
.hero {
  background: repeating-linear-gradient(115deg, var(--vintage-aqua), var(--vintage-aqua) 28px, var(--vintage-cream) 28px, var(--vintage-cream) 70px);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  padding: 64px 0 48px 0;
  margin-bottom: 54px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-retro-cursive);
  color: var(--retro-red);
  font-size: 2.8rem;
  margin-bottom: 18px;
  text-shadow: 3px 3px 0 var(--vintage-brown), 0 4px 14px rgba(190,87,43,0.12);
}
.hero p {
  font-family: var(--font-body);
  font-size: 1.19rem;
  color: var(--primary);
  margin-bottom: 18px;
}
.hero .btn-primary {
  font-size: 1.18rem;
  font-family: var(--font-retro-cursive);
  background: var(--accent);
  color: #fff !important;
  border-color: var(--primary);
  letter-spacing: .03em;
  margin-top: 10px;
}

.cta {
  margin: 42px 0 0 0;
  padding: 42px 0 36px 0;
  border-radius: var(--border-radius);
  background: var(--vintage-brown);
  color: #fff !important;
  text-align: center;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta h2 {
  color: #fff;
  text-shadow: 2px 2px 0 var(--accent), 0 2px 6px rgba(170,80,15,0.09);
}
.cta p {
  color: #fff;
}
.cta .btn-primary {
  background: #FFF8E3;
  color: var(--retro-red) !important;
  border: 2px solid #fff;
  margin-top: 12px;
  transition: background .2s, color .2s;
}
.cta .btn-primary:hover {
  background: var(--vintage-coral);
  color: #fff !important;
  border-color: var(--accent);
}

.about {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.contact {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--vintage-aqua);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}
.contact h2 {
  color: var(--primary);
  text-shadow: 1px 2px 0 var(--accent), 0 1px 4px rgba(168,116,44,0.04);
}
.about .btn-secondary, .contact .btn-secondary {
  margin-top: 10px;
}

/**************************************************************
    THANK YOU PAGE STYLE
***************************************************************/
.thankyou {
  margin: 60px auto;
  padding: 40px 20px;
  background: #fff9ea;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.thankyou h1 {
  color: var(--vintage-coral);
}
.thankyou .btn-primary {
  margin-top: 22px;
}

/* ===========================================================
   FOOTER: VINTAGE RETRO
   ========================================================== */
footer {
  color: var(--primary);
  text-align: center;
  padding: 36px 0 30px 0;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  box-shadow: 0 -1px 8px 0 rgba(49,35,19,.07);
  font-size: 1.02rem;
  letter-spacing:0.01em;
}
footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 16px;
}
footer .footer-nav a {
  font-family: var(--font-display);
  color: var(--retro-red);
  text-shadow: 1px 1px 0 var(--vintage-brown);
  font-weight: 700;
  margin-bottom: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background .16s, color .16s;
}
footer .footer-nav a:hover {
  background: var(--accent);
  color: #fff;
}
footer address {
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 16px;
}
footer span {
  font-size: 0.96rem;
  display: block;
  color: var(--vintage-brown);
}

/* ===========================================================
   MOBILE BURGER MENU
   ========================================================== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.1rem;
  color: var(--primary);
  background: var(--accent);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  z-index: 120;
  transition: background .2s, color .2s, box-shadow .14s;
  box-shadow: 0 2px 8px rgba(49,35,19,0.11);
}
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--accent);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, var(--vintage-coral) 15%, var(--vintage-cream) 95%);
  box-shadow: 0 6px 32px 0 rgba(49,35,19, 0.32);
  transform: translateX(-110vw);
  transition: transform .36s cubic-bezier(.47,1.64,.41,.8);
  z-index: 300;
  padding: 30px 24px 24px 26px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--accent);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border: 2px solid var(--primary);
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover {
  background: var(--primary);
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.4rem;
  font-family: var(--font-retro-cursive);
  color: var(--retro-red);
  background: var(--vintage-cream);
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 6px;
  border: 1.5px solid var(--accent);
  box-shadow: 0 2px 6px rgba(49,35,19,0.08);
  transition: background .18s, color .12s, border-color .13s;
}
.mobile-nav a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--primary);
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
    font-size: 1.05rem;
  }
}
@media (max-width: 900px) {
  .main-nav { gap: 6px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 2px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding-top: 50px;
  }
  .container {
    padding: 0 12px;
  }
  .card-container, .feature-grid, .testimonial-cards, .content-grid {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: stretch;
  }
  .faq-list {
    gap: 14px;
  }
  .cta {
    padding: 28px 4px 26px 4px;
  }
  .feature-item, .card, .testimonial-card {
    min-width: unset;
    max-width: none;
    width: 100%;
  }
  .text-image-section,
  .content-wrapper {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .mobile-menu {
    padding: 30px 13px 17px 13px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .main-nav img, .hero img { height: 32px; }
  .footer-nav { gap: 10px!important; }
  .cta { padding: 18px 2px 12px 2px; }
}


/* ===========================================================
   COOKIE CONSENT BANNER & COOKIE PREFERENCES MODAL
   ========================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--retro-olive);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .01em;
  padding: 22px 16px 16px 16px;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  box-shadow: 0 -4px 22px rgba(49,35,19,0.16);
  z-index: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform .42s cubic-bezier(.55,1.5,.55,1), opacity .3s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner p {
  color: #fff;
  margin: 0;
  flex: 1 1 auto;
  max-width: 640px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 10px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.05rem;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 24px;
  margin: 0 0 0 2px;
  transition: background .16s, color .18s, box-shadow .12s;
}
.cookie-banner .btn-accept {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 2px 6px rgba(0,0,0,.09);
}
.cookie-banner .btn-accept:hover {
  background: var(--vintage-coral);
  color: #fff;
}
.cookie-banner .btn-reject {
  background: #fff;
  color: var(--retro-red);
  border: 1.5px solid var(--retro-red);
}
.cookie-banner .btn-reject:hover {
  background: var(--retro-red);
  color: #fff;
}
.cookie-banner .btn-settings {
  background: var(--vintage-aqua);
  color: var(--primary);
}
.cookie-banner .btn-settings:hover {
  background: var(--primary);
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 20px 6px 12px 6px;
    font-size: .98rem;
  }
}

.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(49,35,19,0.5);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s;
}
.cookie-modal.active {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-content {
  background: #fffaf1;
  border: 3px solid var(--accent);
  border-radius: var(--border-radius);
  padding: 36px 30px 30px 30px;
  box-shadow: 0 8px 40px rgba(49,35,19,0.22);
  max-width: 460px;
  width: 97vw;
}
.cookie-modal-content h3 {
  margin-bottom: 12px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.37rem;
}
.cookie-modal-close {
  position: absolute;
  right: 32px;
  top: 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 1.6rem;
  width: 36px;
  height: 36px;
  border: none;
  transition: background .2s;
  cursor: pointer;
}
.cookie-modal-close:hover {
  background: var(--primary);
}
.cookie-preference-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid #ebddc3;
  padding-bottom: 15px;
  margin-bottom: 16px;
}
.cookie-preference-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
}
.cookie-preference-row label {
  font-size: 1.1em;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  background: var(--secondary);
  position: relative;
  vertical-align: middle;
  display: inline-block;
  cursor: pointer;
  transition: background .18s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  transition: left .23s, background .12s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 22px;
  background: var(--retro-blue);
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 8px 22px;
  font-family: var(--font-display);
  font-weight: bold;
  border-radius: 18px;
  border: none;
  font-size: 1.06rem;
  transition: background .16s, color .14s;
}
.cookie-modal-actions .btn-save {
  background: var(--accent);
  color: #fff;
}
.cookie-modal-actions .btn-save:hover {
  background: var(--primary);
}
.cookie-modal-actions .btn-cancel {
  background: #fff;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.cookie-modal-actions .btn-cancel:hover {
  background: var(--retro-red);
  color: #fff;
}
@media (max-width: 500px) {
  .cookie-modal-content {
    padding: 20px 7px 18px 7px;
  }
  .cookie-modal-close {
    right: 8px;
    top: 8px;
  }
}

/* ===========================================================
   UTILITY CLASSES & MICROS
   ========================================================== */
.text-center { text-align: center; }
.d-flex { display: flex; }
.flex-col { flex-direction: column; }
.align-center { align-items: center; }
.mt-32 { margin-top: 32px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.w-100 { width: 100%; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-20 { gap: 20px; }
.rounded { border-radius: var(--border-radius); }
.shadow { box-shadow: var(--shadow-md); }

/* Micro-interactions */
a, button, .btn-primary, .btn-secondary, .feature-item, .testimonial-card, .faq-list summary, .mobile-menu-close {
  transition: all .16s cubic-bezier(.45, 1, .27, .98);
}

/* Decorative Patterns - Retro Dots for Cards */
.card::before, .testimonial-card::before {
  content: "";
  position: absolute;
  bottom: 12px; left: 12px;
  height: 16px; width: 48px;
  background: radial-gradient(circle at 6px 8px, var(--vintage-coral) 3.5px, transparent 4px),
              radial-gradient(circle at 24px 12px, var(--retro-blue) 3.5px, transparent 4px),
              radial-gradient(circle at 42px 6px, var(--accent) 3.5px, transparent 4px);
  opacity: 0.25;
  z-index: 0;
}

/* Ensure no element overlaps: min gaps everywhere */
section,.section,.container,.card,.feature-item,.testimonial-card,.faq-list details,.content-wrapper {
  margin-bottom: 20px;
}

/* Strong focus state for accessibility */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2.5px solid var(--retro-blue);
  outline-offset: 3px;
  border-radius: 8px;
}

/************ Print styles (optional) ************/
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  * {
    color: #333 !important;
    background: #fff !important;
    box-shadow: none !important;
    border: none !important;
  }
  .container { max-width: 98vw; padding: 0; }
  body { background: #fff; }
}
