/* ====================================================== */
/*        CSS RESET & NORMALIZE (Playful Dynamic)         */
/* ====================================================== */
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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
a {
  color: #287956;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #134366;
  outline: none;
  text-underline-offset: 3px;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}

/* ================= [ FONT IMPORTS - Google Fonts ] ================ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* =============== [ BRAND COLOR PALETTE - playful_dynamic ] =============== */
:root {
  --primary: #134366;
  --secondary: #EDEDED;
  --accent: #287956;
  --accent-alt: #59A985;
  --highlight: #FFD850;
  --fun-pink: #FF69B4;
  --fun-blue: #23C9FF;
  --fun-orange: #FF9A4B;

  --white: #fff;
  --black: #15181B;
  --shadow-lg: 0 6px 32px rgba(37,89,178,0.12);
  --shadow-card: 0 3px 16px 0 rgba(19,67,102,0.10);
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background-color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 6px;
}

p, li, ul, ol {
  font-size: 1rem;
  color: #222;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
  color: var(--primary);
}

/* ================= [CONTAINER & WRAPPER LAYOUTS] =================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}

/* ====================== [NAVIGATION & HEADER] ======================= */
header {
  background: var(--primary);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 22px;
}
header img {
  height: 48px;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  color: var(--white);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 14px;
  padding: 6px 18px;
  transition: background 0.18s, color 0.2s, transform 0.15s;
  position: relative;
}
.main-nav a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px) scale(1.05) rotate(-1.5deg);
}
.cta-btn {
  background: var(--highlight);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  border-radius: 23px;
  padding: 12px 28px;
  margin-left: 18px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(40,121,86,0.15);
  position: relative;
  transition: background 0.16s, color 0.13s, box-shadow 0.15s, transform 0.16s;
  z-index: 1;
  letter-spacing: 1px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--fun-orange);
  color: var(--white);
  transform: translateY(-3px) scale(1.07) rotate(1deg);
  box-shadow: 0 6px 28px 0 rgba(255,154,75,0.18);
  outline: none;
}
.inline-link {
  color: var(--fun-pink);
  font-weight: 600;
  border-bottom: 3px dotted var(--highlight);
  background: none;
  border-radius: 5px;
  padding: 2px 3px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.18s, background 0.18s;
}
.inline-link:hover {
  color: var(--primary);
  background: var(--highlight);
}

.mobile-menu-toggle {
  background: var(--accent-alt);
  color: var(--white);
  font-size: 28px;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  transition: background 0.16s, color 0.16s, transform 0.16s;
  cursor: pointer;
  box-shadow: 0 0 12px 0 rgba(40,121,86,0.11);
  z-index: 999;
}
.mobile-menu-toggle:hover {
  background: var(--highlight);
  color: var(--primary);
  transform: scale(1.07) rotate(-3deg);
}

/* ============ [MOBILE MENU OVERLAY] =========== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--white);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.84,-.01,.45,.97);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 28px 18px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--accent-alt);
  color: var(--white);
  font-size: 28px;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1201;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(33, 140, 101, 0.11);
}
.mobile-menu-close:hover {
  background: var(--fun-pink);
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 60px;
  width: 100%;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: var(--secondary);
  border-radius: 15px;
  padding: 16px 18px;
  transition: background 0.15s, color 0.16s;
  box-shadow: 0 2px 8px rgba(33, 140, 101, 0.05);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--fun-blue);
  color: var(--white);
}

/* Hide main nav and show burger on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* =================== [ HERO SECTIONS ] ============================ */
.hero, .about-hero, .services-hero, .international-hero, .rsf-hero, .contact-hero, .thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(85deg, var(--highlight) 0%, var(--accent-alt) 100%);
  min-height: 320px;
  padding: 48px 0 48px 0;
  border-radius: 0 0 36px 36px;
  margin-bottom: 40px;
  box-shadow: 0 6px 28px 0 rgba(19,67,102,0.04);
  animation: slideInHero 1.1s cubic-bezier(.28,.7,.34,1.11);
}
@keyframes slideInHero {
  from { opacity: 0; transform: translateY(-38px) scale(1.04); }
  to   { opacity: 1; transform: translateY(0) scale(1);}
}
.hero .content-wrapper,
.about-hero .content-wrapper,
.services-hero .content-wrapper,
.international-hero .content-wrapper,
.rsf-hero .content-wrapper,
.contact-hero .content-wrapper,
.thank-you .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  background: rgba(255,255,255,0.65);
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px 0 rgba(40,121,86,0.09);
  animation: fadeInUp 0.9s cubic-bezier(.73,-0.07,.38,1.04);
}
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px)}
  to   {opacity:1; transform:translateY(0)}
}

/* ================== [ FEATURES FLEX GRID & CARDS ] ================== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--fun-blue);
  color: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 20px 24px 22px 24px;
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 340px;
  position: relative;
  margin-bottom: 20px;
  transition: transform 0.17s, box-shadow 0.17s, background 0.2s;
  cursor: pointer;
  overflow: hidden;
}
.feature-item img {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--highlight);
  padding: 7px;
  box-shadow: 0 2px 12px 0 rgba(255,232,80,0.15);
  margin-bottom: 5px;
  animation: popIcon 1.2s infinite cubic-bezier(.61,-0.07,.42,1.08) alternate;
}
@keyframes popIcon {
  from { transform: scale(1) rotate(-2deg); }
  to   { transform: scale(1.13) rotate(4deg); }
}
.feature-item:hover {
  background: var(--fun-orange);
  color: var(--white);
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 28px 0 rgba(255,154,75,0.13);
}
.feature-item h3 { color: var(--white); font-size: 1.22rem; margin-bottom: 4px; }

/* ============== [ CARD & CARD-GRID PATTERNS ] =================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  background: var(--white);
  position: relative;
  transition: box-shadow 0.17s, transform 0.11s;
  padding: 24px;
}
.card:hover {
  box-shadow: 0 5px 32px rgba(35,201,255,0.12);
  transform: scale(1.023);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* Text-Image Flex Row */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Content Grid Pattern */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}

/* ============= [ TESTIMONIAL CARD STYLE ] ============= */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  background: var(--secondary);
  box-shadow: 0 2px 18px 0 rgba(19,67,102,0.05);
  margin-bottom: 20px;
  position: relative;
  border-left: 8px solid var(--highlight);
  color: var(--primary);
}
.testimonial-card h2 { margin-bottom: 2px; }
.testimonial-card p {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
}
.testimonial-info {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--black);
  opacity: 0.86;
}
.result-highlight {
  padding: 7px 19px;
  margin-top: 7px;
  background: var(--fun-blue);
  color: #fff;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-block;
  box-shadow: 0 2px 8px 0 rgba(35,201,255,0.11); 
}

/* Ensure contrast on testimonials/flex layouts */
.testimonial, .testimonial-preview {
  background: var(--highlight);
  color: var(--primary);
}

/* ============ [ ARTICLE TEASERS & FAQS ] =========== */
.article-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.article-teasers article {
  flex: 1 1 320px;
  background: var(--fun-orange);
  color: var(--white);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 2px 14px 0 rgba(255,154,75,0.09);
  transition: box-shadow 0.17s, transform 0.15s;
}
.article-teasers article:hover {
  box-shadow: 0 8px 26px 0 rgba(255,154,75,0.15);
  transform: scale(1.025) rotate(-1deg);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: var(--secondary);
  box-shadow: 0 2px 16px rgba(35,201,255,0.07);
  border-radius: 12px;
  padding: 15px 18px;
  cursor: pointer;
  transition: box-shadow 0.14s, background 0.15s;
  margin-bottom: 12px;
}
.faq-item:hover {
  background: var(--highlight);
  box-shadow: 0 10px 24px rgba(255,216,80,0.08);
}
.faq-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.11rem;
}

.info-box {
  background: var(--accent-alt);
  color: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.certifications {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.certifications img {
  height: 38px;
  width: auto;
  background: var(--highlight);
  padding: 6px;
  border-radius: 10px;
}

/* Footer styling (Playful with Simple Color Blocks) */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 36px 0 0 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
  border-radius: 0;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-branding img {
  width: 52px;
  height: 52px;
  margin-right: 10px;
}
.brand-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--highlight);
  font-size: 1.26rem;
  letter-spacing: 0.8px;
}
.footer-tagline {
  display: block;
  font-size: 0.99rem;
  color: var(--accent-alt);
  margin: 1px 0 0 0;
  font-weight: 500;
}
.footer-social {
  display: flex;
  gap: 11px;
}
.footer-social a img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--highlight);
  padding: 3px;
  transition: background 0.2s, transform 0.2s;
}
.footer-social a:hover img {
  background: var(--fun-pink);
  transform: scale(1.06) rotate(4deg);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--white);
  font-size: 1rem;
  transition: color 0.14s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-nav a:hover {
  color: var(--fun-blue);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.98rem;
  opacity: 0.88;
  color: var(--white);
  margin-top: 2px;
}
.footer-contact img {
  width: 17px;
  height: 17px;
  vertical-align: middle;
  margin-right: 5px;
  position: relative;
  top: -1px;
}
.footer-legal {
  text-align: center;
  color: var(--highlight);
  font-size: 0.96rem;
  font-weight: 700;
  background: var(--primary);
  padding: 18px 0 13px 0;
  margin-top: 25px;
  letter-spacing: .05em;
  border-radius: 0 0 16px 16px;
}

/* ==================== [ COOKIE CONSENT BANNER & MODAL ] ==================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 -6px 32px rgba(19,67,102,0.10);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 10vw 16px 10vw;
  gap: 14px;
  animation: slideInCookie .8s cubic-bezier(.19,.7,.47,1.01);
}
@keyframes slideInCookie {
  0% { transform:translateY(100%); opacity:0; }
  100% {transform:translateY(0); opacity:1;}
}
.cookie-consent-banner p {
  margin-bottom: 0;
  font-size: 1rem;
  max-width: 450px;
}
.cookie-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  padding: 8px 21px;
  color: var(--white);
  background: var(--accent);
  transition: background 0.17s, color 0.15s, transform 0.13s, box-shadow 0.17s;
  margin-left: 0;
}
.cookie-btn.accept {
  background: var(--fun-blue);
}
.cookie-btn.accept:hover {
  background: var(--accent-alt);
  color: var(--primary);
  transform: scale(1.08);
}
.cookie-btn.reject {
  background: var(--fun-orange);
}
.cookie-btn.reject:hover{
  background: var(--primary); color: var(--white); transform: scale(1.08);
}
.cookie-btn.settings {
  background: var(--highlight);
  color: var(--primary);
}
.cookie-btn.settings:hover {
  background: var(--fun-pink);
  color: var(--white);
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17, 67, 102, 0.30);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .2s;
}
@keyframes fadeInModal {
  from { opacity:0; }
  to   { opacity:1; }
}
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  padding: 32px 27px 27px 27px;
  border-radius: 21px;
  box-shadow: 0 8px 32px rgba(19,67,102,0.19);
  min-width: 330px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: floatUp .3s cubic-bezier(.17,.89,.38,1.09);
  position: relative;
}
@keyframes floatUp {
  from { opacity:0; transform:translateY(50px) scale(0.97); }
  to   { opacity:1; transform:translateY(0) scale(1.0); }
}
.cookie-modal h2 {
  color: var(--accent);
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: var(--secondary);
  padding: 12px 16px;
  border-radius: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category input[type=checkbox][disabled] {
  accent-color: var(--accent-alt);
  background: var(--secondary);
  opacity: 0.7;
  cursor: not-allowed;
}
.cookie-category label {
  flex: 1;
  cursor: pointer;
  color: var(--primary);
}
.cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; 
  right: 18px;
  background: var(--accent-alt);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2210;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal-close:hover {
  background: var(--fun-pink);
  color: var(--white);
}

/* =============== [ OTHER COMPONENTS ] ================ */
.info-message {
  padding: 12px 18px;
  margin-bottom: 18px;
  background: var(--highlight);
  border-radius: 11px;
  font-weight: 600;
  color: var(--primary);
}

/* ================ [RESPONSIVE ADJUSTMENTS] ================ */
@media (max-width: 1200px) {
  .container {
    padding-left: 12px; padding-right: 12px;
  }
}
@media (max-width: 900px) {
  .footer-branding, .footer-social {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
  }
  footer .container {
    gap: 20px;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .features-grid, .card-container, .article-teasers, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .hero, .about-hero, .services-hero, .international-hero, .rsf-hero, .contact-hero, .thank-you {
    padding: 32px 0;
    border-radius: 0 0 16px 16px;
    min-height: 180px;
  }
  .hero .content-wrapper,
  .about-hero .content-wrapper,
  .services-hero .content-wrapper,
  .international-hero .content-wrapper,
  .rsf-hero .content-wrapper,
  .contact-hero .content-wrapper,
  .thank-you .content-wrapper {
    padding: 18px 8px 18px 13px;
    border-radius: 13px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .section {
    padding: 22px 8px;
    margin-bottom: 36px;
  }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.06rem; }
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 17px;
  }
}

/* ============= [FORMS AND INPUTS (universal)] ============ */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.7px solid var(--accent);
  padding: 10px 13px;
  background: var(--secondary);
  transition: border 0.13s, box-shadow 0.12s;
  margin-bottom: 16px;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 1.8px solid var(--fun-blue);
  box-shadow: 0 2px 9px 0 rgba(35,201,255,0.12);
}

button, .cta-btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal-close {
  user-select: none;
}

/* =============== [MICRO-INTERACTIONS & ANIMATIONS] =============== */
.cta-btn, .cookie-btn, .inline-link, .main-nav a, .feature-item, .article-teasers article, .faq-item, .mobile-nav a, .cookie-modal-close {
  transition: background 0.18s, color 0.16s, transform 0.18s, box-shadow 0.18s;
}

/* ============== [PLAYFUL, DYNAMIC ACCENTS] ================ */
.feature-item::before {
  content: '';
  display: block;
  position: absolute;
  bottom: -26px;
  right: -32px;
  width: 90px;
  height: 40px;
  background: var(--fun-pink);
  opacity: 0.11;
  border-radius: 80% 46% 65% 82%;
  transform: rotate(-16deg);
  z-index: 0;
  pointer-events: none;
}
.article-teasers article::after {
  content: '';
  display: block;
  position: absolute;
  top: -18px;
  left: -13px;
  width: 58px;
  height: 17px;
  background: var(--highlight);
  opacity: 0.18;
  border-radius: 50% 40% 80% 62%;
  pointer-events: none;
}

/* ============= [ Z-INDEX LAYERS & FOCUS HANDLING ] ============= */
:focus {
  outline: 2px solid var(--fun-blue);
  outline-offset: 2px;
}

/* ============= [ PRINT SUPPORT: Remove banner & overlay ] ============== */
@media print {
  .cookie-consent-banner, .cookie-modal-overlay, .mobile-menu {
    display: none !important;
  }
}

/* ==================== [ END CSS ] ==================== */
