/* CSS RESET & BASE STYLES */
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%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  background: #F7F7FB;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #8F5D9F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1F2A44;
}
ul, ol { list-style-position: inside; }

:root {
  --color-primary: #1F2A44;
  --color-secondary: #8F5D9F;
  --color-accent: #FFFFFF;
  --color-fun-pink: #ED4F92;
  --color-fun-orange: #F9B44C;
  --color-fun-blue: #53A6F3;
  --color-fun-lavender: #F6D6FF;
  --color-fun-green: #59D8B5;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.375rem;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 { font-size: 1rem; }
p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 16px;
}
strong { color: var(--color-fun-pink); font-weight: 700; }
.subheadline {
  font-size: 1.1rem;
  color: var(--color-fun-blue);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 24px;
}
.text-section ul {
  margin: 16px 0 24px 0;
}
.text-section ul li {
  margin-bottom: 12px;
  padding-left: 8px;
  position: relative;
}
.text-section ul li:before {
  content: '●';
  color: var(--color-fun-orange);
  font-size: 1.2rem;
  display: inline-block;
  margin-right: 8px;
}
.text-section strong {
  color: var(--color-fun-blue);
}

/* FLEXBOX LAYOUTS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.testimonial-card { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Responsive patterns */
@media (max-width: 968px) {
  .container { max-width: 98vw; }
  .content-wrapper { gap: 20px; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .text-image-section,
  .content-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .feature-grid,
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: var(--color-primary);
  box-shadow: 0 4px 20px 0 rgba(31,42,68,0.07);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 32px;
  color: #fff;
  background: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-fun-pink);
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(237,79,146,.12);
}
.button.primary {
  background: var(--color-fun-orange);
  color: #fff !important;
  font-weight: 700;
  border-radius: 32px;
  padding: 10px 24px;
  margin-left: 10px;
  border: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  box-shadow: 0 4px 16px 0 rgba(249,180,76,.14);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
}
.button.primary:hover, .button.primary:focus {
  background: var(--color-fun-pink);
  color: #fff !important;
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
  box-shadow: 0 8px 32px 0 rgba(237,79,146,.22);
}
.button {
  text-decoration: none;
  display: inline-block;
}

/* Hamburger Menu */
.mobile-menu-toggle {
  display: none;
  background: var(--color-fun-pink);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  z-index: 1100;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-fun-blue);
  box-shadow: 0 4px 16px rgba(83,166,243,.13);
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 85vw;
  max-width: 370px;
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 4px 0 24px rgba(31,42,68,0.19);
  z-index: 1200;
  transform: translateX(-120%);
  transition: transform 0.38s cubic-bezier(.6,-0.28,.74,.05);
  display: flex;
  flex-direction: column;
  padding: 0 0 28px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 22px 22px 0 0;
  cursor: pointer;
  transition: color .2s;
  z-index: 1201;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-fun-orange);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 28px 0 0 28px;
  transition: background 0.2s, color .2s;
  margin-right: 16px;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--color-fun-orange);
  color: #fff;
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* MAIN & SECTION SPACING */
main {
  width: 100%;
  min-height: 60vh;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 24px;
}
@media (max-width: 768px) {
  section, .section { padding: 28px 6px; margin-bottom: 40px; }
}

/* HERO SECTIONS (WITH PLAYFUL ELEMENTS) */
.hero {
  background: linear-gradient(100deg, var(--color-fun-lavender) 60%, #fff 100%);
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(143,93,159,0.10);
  margin-top: 38px;
  overflow: hidden;
  position: relative;
}
.hero h1 {
  font-size: 2.8rem;
  color: var(--color-primary);
  margin-bottom: 13px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: -1.5px;
}
.hero .subheadline {
  font-size: 1.2rem;
  color: var(--color-fun-pink);
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .hero { margin-top: 16px; padding: 24px 6px; }
  .hero h1 { font-size: 2rem; }
  .hero .subheadline { font-size: 1rem; }
}

/* FEATURE GRID */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0px 18px 0px;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 220px;
  flex: 1 1 0;
  background: var(--color-accent);
  box-shadow: 0 4px 18px 0 rgba(247,116,219,.07);
  border-radius: 16px;
  padding: 20px 16px 16px 16px;
  margin-bottom: 12px;
  border: 2px solid var(--color-fun-lavender);
  position: relative;
  font-size: 1rem;
  transition: border 0.19s, box-shadow 0.18s, transform 0.15s;
}
.feature-grid li:hover {
  border: 2px solid var(--color-fun-orange);
  box-shadow: 0 10px 36px -2px rgba(249,180,76,.16);
  transform: scale(1.04) rotate(-2.5deg);
}
.feature-grid li img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}
@media (max-width: 900px) {
  .feature-grid { gap: 16px; }
  .feature-grid li { min-width: 160px; padding: 13px 10px 11px 10px; }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 10px;
  }
}

/* COURSE GRID - KURSÜBERSICHT */
.course-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.course-item {
  background: var(--color-fun-green);
  color: #fff;
  border-radius: 18px;
  padding: 24px 20px 20px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  box-shadow: 0 4px 22px -4px rgba(89,216,181,0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
  transition: background 0.15s, transform 0.15s;
  position: relative;
  z-index: 0;
}
.course-item:hover {
  background: var(--color-fun-blue);
  transform: translateY(-7px) scale(1.034) rotate(1.5deg);
  box-shadow: 0 12px 44px -10px rgba(83,166,243,0.21);
}
.course-item h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 7px;
}
.course-item span {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .course-grid {
    flex-direction: column;
    gap: 10px;
  }
}

/* PRICING */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 8px;
}
.pricing-option {
  background: var(--color-fun-blue);
  color: #fff;
  border-radius: 16px;
  padding: 28px 30px 36px 30px;
  min-width: 240px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 22px -6px rgba(32,85,151,.12);
  margin-bottom: 20px;
  position: relative;
  z-index: 0;
  transition: background .17s, transform .16s, box-shadow 0.2s;
}
.pricing-option:hover {
  background: var(--color-fun-orange);
  color: #fff;
  transform: scale(1.03) rotate(-1deg);
  box-shadow: 0 10px 44px -6px rgba(249,180,76,0.17);
}
.pricing-option h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #fff;
}
.pricing-option ul {
  margin: 13px 0 12px;
}
.pricing-option .price {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--color-fun-pink);
  margin-top: 11px;
}
@media (max-width: 900px) {
  .pricing-table { gap: 13px; }
  .pricing-option { padding: 21px 14px 24px 14px; }
}
@media (max-width: 768px) {
  .pricing-table { flex-direction: column; gap: 10px; }
}

/* TESTIMONIALS */
.testimonials {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 28px 0 rgba(143,93,159,0.07);
  padding: 30px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px 24px 32px;
  margin-bottom: 24px;
  background: var(--color-fun-lavender);
  border-radius: 14px;
  box-shadow: 0 3px 18px 0 rgba(143,93,159,0.08);
  font-size: 1rem;
  border-left: 7px solid var(--color-fun-pink);
}
.testimonial-card p {
  color: #21233b !important;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card strong {
  color: var(--color-fun-blue);
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 2px;
}
.star-rating img {
  width: 18px;
  height: 18px;
}
.star-rating span {
  margin-left: 6px;
  font-size: 1rem;
  font-weight: bold;
  color: var(--color-fun-orange);
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 14px 12px 13px 15px;
  }
}

/* CTA */
.cta {
  background: linear-gradient(98deg, var(--color-fun-blue) 40%, var(--color-fun-pink) 100%);
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 22px 0 rgba(83,166,243,0.08);
  text-align: center;
  margin-bottom: 60px;
  overflow: hidden;
}
.cta h2, .cta p {
  color: #fff;
}
.cta .button.primary {
  background: var(--color-fun-green);
  color: #fff;
  margin-top: 20px;
  font-size: 1.09rem;
  font-weight: 700;
  border-radius: 32px;
  box-shadow: 0 6px 24px 0 rgba(89,216,181,.16);
}
.cta .button.primary:hover {
  background: var(--color-fun-orange);
  box-shadow: 0 10px 34px 0 rgba(249,180,76,.21);
}
@media (max-width: 768px) {
  .cta { padding: 14px 3px; }
}

/* FOOTER */
footer {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  padding: 32px 0 24px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 13px;
}
.footer-nav a {
  color: #fff;
  font-size: 0.98rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  transition: color 0.16s;
  opacity: 0.88;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-fun-orange);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  font-size: 0.97rem;
  opacity: 0.95;
}
.footer-contact img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 3px;
}
.footer-logo img {
  width: 37px;
  height: auto;
}
@media (max-width: 640px) {
  .footer-contact { flex-direction: column; align-items: flex-start; gap: 5px; }
}

/* FAQ & LEGAL */
.faq, .legal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 14px 0 rgba(31,42,68,0.06);
}
.faq ul, .legal ul {
  margin-top: 14px;
  margin-bottom: 6px;
}
.faq li, .legal li {
  margin-bottom: 18px;
}
.faq strong, .legal strong {
  color: var(--color-fun-orange);
}

/* MODALS, BANNERS, ANIMATED ELEMENTS */

/* --- COOKIE CONSENT BANNER --- */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff2fc;
  color: #3B2455;
  box-shadow: 0 -4px 40px 0 rgba(143,93,159,0.16);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 24px 16px 18px 16px;
  z-index: 3200;
  font-size: 1.01rem;
  transition: transform 0.45s cubic-bezier(0.71,0.04,0.25,1.06);
  transform: translateY(0);
}
#cookie-consent-banner.hide {
  transform: translateY(140%);
}
#cookie-consent-banner .cookie-consent-msg {
  flex: 1 1 auto;
  min-width: 170px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
#cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  background: var(--color-fun-green);
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 22px;
  padding: 8px 17px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(89,216,181,0.13);
  transition: background .18s, color .16s;
}
.cookie-btn:hover, .cookie-btn:focus { background: var(--color-fun-pink); color: #fff; }
.cookie-btn.reject { background: var(--color-fun-pink); }
.cookie-btn.reject:hover { background: var(--color-fun-blue); }
.cookie-btn.settings {
  background: var(--color-fun-orange);
  color: #fff;
}
.cookie-btn.settings:hover {
  background: var(--color-fun-green);
}
@media (max-width: 768px) {
  #cookie-consent-banner {
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
    padding: 17px 8px 14px 8px;
  }
}

/* --- COOKIE MODAL --- */
#cookie-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 48%;
  transform: translate(-50%,-50%) scale(0.84);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 64px 0 rgba(143,93,159,0.22);
  padding: 38px 34px 32px 34px;
  z-index: 4000;
  min-width: 320px;
  max-width: 98vw;
  min-height: 180px;
  color: var(--color-primary);
  animation: fadeInModal 0.42s cubic-bezier(.61,-0.21,.64,1.12);
}
#cookie-modal.open {
  display: block;
  animation: fadeInModal 0.38s cubic-bezier(.61,-0.21,.64,1.12) both;
  transform: translate(-50%,-50%) scale(1.05);
}
@keyframes fadeInModal {
  0% { opacity: 0; transform: translate(-50%,-45%) scale(0.7); }
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1.05); }
}
#cookie-modal h2 {
  color: var(--color-fun-blue);
  font-size: 1.5rem;
  margin-bottom: 16px;
  text-align: center;
}
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-fun-lavender);
  border-radius: 13px;
  padding: 12px 18px;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
#cookie-modal .cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--color-fun-green);
}
#cookie-modal .cookie-category .always-on {
  font-weight: bold;
  color: var(--color-fun-orange);
}
#cookie-modal .cookie-modal-btns {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 18px;
}
#cookie-modal .cookie-btn {
  font-size: 1rem;
}
#cookie-modal .close-modal-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--color-fun-pink);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.16s;
}
#cookie-modal .close-modal-btn:hover {
  color: var(--color-fun-blue);
}

@media (max-width: 600px) {
  #cookie-modal { min-width: 0; padding: 16px 8px 16px 8px; }
  #cookie-modal h2 { font-size: 1.09rem; }
}

/* PLAYFUL EFFECTS & MICROINTERACTIONS */
.card, .feature-grid li, .course-item, .pricing-option, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.14s, border 0.16s, background 0.16s;
}
.button.primary:active, .cta .button.primary:active {
  transform: scale(0.98) rotate(1deg);
}
.button.primary:focus {
  outline: 2px dashed var(--color-fun-blue);
  outline-offset: 3px;
}
.button:active { filter: brightness(.95); }

/* ENERGETIC/PLAYFUL DETAILS - random color blobs */
.hero:after {
  content: '';
  position: absolute; right: -40px; top: -40px;
  width: 180px; height: 120px;
  background: var(--color-fun-orange);
  opacity: 0.25;
  border-radius: 82px 22px 120px 80px / 110px 80px 50px 120px;
  z-index: 0;
  transform: rotate(14deg) scaleX(1.09);
  pointer-events: none;
}
.hero:before {
  content: '';
  position: absolute; left: -36px; bottom: -36px;
  width: 130px; height: 80px;
  background: var(--color-fun-green);
  opacity: 0.19;
  border-radius: 60px 110px 30px 60px / 70px 31px 60px 80px;
  z-index: 0;
  transform: rotate(-17deg) scaleY(1.04);
  pointer-events: none;
}

@media (max-width: 700px) {
  .hero:after, .hero:before { display: none; }
}

/* THANK YOU */
section.thank-you {
  background: var(--color-fun-green);
  color: #fff;
  border-radius: 22px;
  text-align: center;
}
section.thank-you h1 {
  color: #fff;
}
section.thank-you .button.primary {
  background: var(--color-fun-pink);
  color: #fff;
}
section.thank-you .button.primary:hover {
  background: var(--color-fun-orange);
}

/* FORM ELEMENTS (general) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 8px;
  padding: 10px;
  font-size: 1rem;
  border: 1.5px solid #e0e0ef;
  margin-bottom: 18px;
  width: 100%;
  transition: border-color 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-fun-blue);
  outline: 2px solid var(--color-fun-blue);
}

/* MISC - general cards and spacing */
.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 8px 0 rgba(83,166,243,0.11);
  padding: 24px 18px;
  margin-bottom: 20px;
  position: relative;
  z-index: 0;
}
.card-container > .card {
  flex: 1 1 290px;
}

/* UTILITY SPACING CLASSES (for precise spacing) */
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* HIDE ELEMENT UTILITY */
.hide, .d-none { display: none !important; }

/* FOCUS VISIBLE OUTLINE FOR ALL INTERACTIVES */
a:focus-visible, button:focus-visible, .button:focus-visible {
  outline: 2.5px dashed var(--color-fun-blue) !important;
  outline-offset: 2px !important;
}

/* PRINTING (minimal appearance) */
@media print {
  header, footer, .mobile-menu, #cookie-consent-banner, #cookie-modal { display: none!important; }
  body, main, section { background: #fff !important; color: #000; }
}

