/* --- 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,samp,
small,strike,strong,sub,sup,tt,var,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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  background: #f9fafc;
  color: #1a1a1a;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
ul,ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; display: block; }
button,input,select,textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
}

/* --- BRAND & PLAYFUL DYNAMIC ROOT COLORS --- */
:root {
  --primary: #193052;
  --secondary: #A6B8D8;
  --accent: #F2DCBF;
  --bg1: #ffffff;
  --bg2: #f4f7fa;
  --brand-blue: #4e71e3;
  --brand-violet: #a47ce5;
  --brand-pink: #ff73a1;
  --brand-yellow: #ffe366;
  --shadow1: rgba(25,48,82,0.07);
  --shadow2: rgba(44,44,82,0.10);
  --success-green: #53d29e;
  --danger-red: #ff5a5f;
  --info-blue: #2678e3;
}

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');
h1,h2,h3,h4,h5,.btn-primary,.btn-secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.375rem; color: var(--brand-violet); margin-bottom: 24px; line-height: 1.1; }
h2 { font-size: 1.85rem; color: var(--brand-blue); margin-bottom: 16px; }
h3 { font-size: 1.25rem; color: var(--primary); margin-bottom: 8px; }
h4,h5,h6 { color: var(--primary); }
p,li,div,span { font-family: 'Roboto', Arial, sans-serif; font-weight: 400; font-size: 1rem; }
strong,b { font-weight: 700; }

/* Playful headline bounce */
h1, h2 {
  animation: bounce-in 0.8s cubic-bezier(.58,1.63,.21,1) 0s 1;
}

@keyframes bounce-in {
  0% { transform: scale(.96) translateY(-36px); opacity: 0; }
  70%{ transform: scale(1.06) translateY(10px); opacity: 1; }
  100%{ transform: scale(1) translateY(0); }
}

/* --- CONTAINER & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg1);
  border-radius: 20px;
  box-shadow: 0 6px 36px var(--shadow1);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section:last-child { margin-bottom: 0; }

/* --- HEADER & NAVIGATION --- */
header {
  background: var(--bg1);
  box-shadow: 0 2px 18px var(--shadow1);
  position: sticky;
  top: 0;
  z-index: 120;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 14px 0;
}
.main-nav > a {
  color: var(--primary);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 12px;
  padding: 7px 16px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav > a:hover:not(.btn-primary) {
  background: var(--accent);
  color: var(--brand-pink);
}
.main-nav img {
  height: 42px;
  width: auto;
  margin-right: 6px;
}
/* Burger button */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 32px;
  top: 18px;
  background: var(--brand-yellow);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
  z-index: 205;
  box-shadow: 0 6px 24px var(--shadow1);
  transition: background 0.17s;
}
.mobile-menu-toggle:hover {
  background: var(--brand-pink);
  color: #fff;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: var(--bg1);
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 400;
  transform: translateX(100vw);
  transition: transform 0.34s cubic-bezier(.42,1,.57,1);
  box-shadow: -4px 0 32px var(--shadow2);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: var(--brand-pink);
  color: #fff;
  border: none;
  border-radius: 40px;
  font-size: 2rem;
  width: 44px; height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 502;
  box-shadow: 0 4px 18px var(--shadow1);
}
.mobile-menu-close:hover {
  background: var(--danger-red);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 100px;
  padding-left: 40px;
}
.mobile-nav a {
  color: var(--brand-violet);
  font-size: 1.3rem;
  padding: 7px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 10px;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover {
  background: var(--brand-yellow);
  color: var(--primary);
}

/* --- BUTTONS --- */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  padding: 14px 36px;
  font-size: 1.13rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.22s, color 0.19s, box-shadow 0.26s, transform 0.12s;
  cursor: pointer;
  text-shadow: 0 2px 12px var(--shadow1);
  box-shadow: 0 3px 14px var(--shadow2);
}
.btn-primary {
  background: var(--brand-pink);
  color: #fff;
  border: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-yellow);
  color: var(--primary);
  box-shadow: 0 6px 28px var(--brand-pink), 0 2px 16px var(--shadow2);
  transform: translateY(-2px) scale(1.025);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--primary);
  border: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 6px 28px var(--brand-blue), 0 2px 14px var(--shadow2);
  transform: translateY(-2px) scale(1.03);
}

/* --- HERO SECTIONS --- */
.hero, .hero-coaching, .hero-business, .hero-workshops, .hero-thank-you, .contact-hero {
  background: linear-gradient(93deg, var(--brand-yellow) 0%, var(--accent) 60%, var(--secondary) 100%);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 12px 32px var(--shadow1);
  padding: 36px 0 60px 0;
  margin-bottom: 60px;
  min-height: 320px;
}
.hero .content-wrapper, .hero-coaching .content-wrapper, .hero-business .content-wrapper, .hero-workshops .content-wrapper, .hero-thank-you .content-wrapper, .contact-hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 26px;
}
.hero h1, .hero-coaching h1, .hero-workshops h1, .hero-thank-you h1, .contact-hero h1, .hero-business h1 {
  color: var(--primary);
  text-shadow: none;
}
.hero p, .hero-coaching p, .hero-thank-you p, .hero-business p {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 10px;
}


/* --- FEATURES & SERVICES --- */
.features ul, .services ul, .about-features ul, .about-team .team-list, .courses-list ul, .who-for ul, .coaching-features ul, .services-coaching ul, .business-features ul, .business-solutions ul, .workshop-features ul, .workshops-sessions ul, .how-can-we-help ul, .thank-you-next ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.features ul li, .services ul li, .about-features ul li, .about-team .team-member, .courses-list ul li, .coaching-features ul li, .services-coaching ul li, .business-features ul li, .business-solutions ul li, .workshop-features ul li, .workshops-sessions ul li, .who-for ul li, .how-can-we-help ul li, .thank-you-next ul li {
  background: var(--bg2);
  border-radius: 16px;
  box-shadow: 0 2px 14px var(--shadow1);
  padding: 24px 18px;
  min-width: 230px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.18s, transform 0.14s;
  position: relative;
  z-index: 1;
  border: 2.5px solid var(--accent);
  font-size: 1rem;
}
.features ul li:hover, .services ul li:hover, .about-features ul li:hover, .about-team .team-member:hover, .courses-list ul li:hover, .services-coaching ul li:hover, .business-features ul li:hover, .business-solutions ul li:hover, .workshop-features ul li:hover, .workshops-sessions ul li:hover {
  box-shadow: 0 10px 32px var(--accent), 0 3px 16px var(--shadow2);
  background: var(--brand-yellow);
  transform: translateY(-3px) scale(1.018);
  z-index: 2;
}
.features ul li img, .about-features ul li img {
  height: 48px;
  width: 48px;
}
.features ul li h3, .about-features ul li h3,
.services ul li h3, .courses-list ul li h3,
.coaching-features ul li h3, .services-coaching ul li h3, .business-features ul li h3, .workshop-features ul li h3 {
  color: var(--brand-pink);
  margin-bottom: 2px;
}
.features ul li p, .about-features ul li p,
.services ul li p, .courses-list ul li p,
.coaching-features ul li p, .services-coaching ul li p, .business-features ul li p, .workshop-features ul li p {
  color: var(--primary);
  font-size: 1rem;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: var(--bg2);
  border-radius: 28px;
  padding: 40px 0 48px 0;
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  align-items: flex-start;
  gap: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 24px 26px;
  margin-bottom: 20px;
  box-shadow: 0 3px 22px var(--shadow1);
  position: relative;
  min-width: 260px;
  max-width: 530px;
  border: 2.5px solid var(--brand-yellow);
  z-index: 1;
  transition: box-shadow 0.17s, border 0.17s, transform 0.11s;
}
.testimonial-card:hover {
  border-color: var(--brand-pink);
  box-shadow: 0 15px 40px var(--brand-pink), 0 3px 16px var(--shadow2);
  transform: scale(1.017);
  z-index: 3;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: var(--brand-blue);
}
.testimonial-card img {
  height: 22px;
  width: 22px;
  margin-right: 2px;
}
.testimonial-card div:last-child {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* --- CTAs --- */
.cta {
  background: var(--brand-blue);
  border-radius: 24px;
  padding: 44px 0;
  margin-bottom: 60px;
  box-shadow: 0 4px 40px var(--shadow2);
  color: #fff;
}
.cta .content-wrapper h2 { color: #fff; margin-bottom: 8px; }
.cta .content-wrapper p {
  color: #fff;
}
.cta .btn-primary {
  background: var(--brand-yellow);
  color: var(--primary);
}
.cta .btn-primary:hover {
  background: #fff366;
  color: var(--brand-pink);
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 34px 0 20px 0;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -6px 24px var(--shadow2);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}
.footer-nav a {
  color: var(--brand-yellow);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 10px;
  transition: color 0.15s, background 0.13s;
}
.footer-nav a:hover {
  color: var(--brand-pink);
  background: var(--bg2);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.footer-contact img {
  height: 42px;
  width: 42px;
  margin: 0 8px 8px 0;
}
.footer-contact > div > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  margin-bottom: 4px;
  color: #d5e1fa;
}
.footer-contact > div > div img {
  width: 18px; height: 18px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  transition: background 0.2s, box-shadow 0.18s, transform 0.13s;
  box-shadow: 0 2px 8px var(--shadow1);
}
.footer-social a:hover img {
  background: var(--brand-pink);
  box-shadow: 0 5px 16px var(--brand-pink);
  transform: scale(1.13);
}
.footer-copy {
  font-size: 0.92rem;
  color: #bdcce9;
  margin-top: 8px;
}

/* --- FORMATTING (PRIVACY, LEGALS, ETC.) --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg2);
  border-radius: 20px;
  padding: 32px 24px;
  margin-bottom: 38px;
  box-shadow: 0 3px 22px var(--shadow1);
  font-size: 1.06rem;
}
.text-section a { color: var(--brand-blue); text-decoration: underline; }
.text-section a:hover { color: var(--brand-pink); }

/* --- THANK YOU / MISC --- */
.thank-you-next ul {
  gap: 14px;
}
.thank-you-next h3 {
  margin-top: 20px;
  color: var(--brand-violet);
}
.thank-you-next ul li {
  min-width: 180px;
  padding: 12px 14px;
  background: var(--accent);
}

/* --- FLEXBOX LAYOUTS (CRITICAL) --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--bg2);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 2px 20px var(--shadow1);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- RESPONSIVE DESIGN RULES --- */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .main-nav { flex-wrap: wrap; gap: 6px; }
  .features ul li, .services ul li, .about-features ul li, .courses-list ul li, .services-coaching ul li, .business-features ul li, .workshop-features ul li, .workshops-sessions ul li { min-width: 160px; }
  .about-team .team-member { min-width: 160px; }
}
@media (max-width: 768px) {
  .container { padding-left: 6vw; padding-right: 6vw; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  header { min-height: 64px; }
  .hero, .hero-coaching, .hero-business, .hero-workshops, .hero-thank-you, .contact-hero {
    padding: 22px 0 36px 0;
    min-height: 190px;
  }
  .features ul, .services ul, .about-features ul, .about-team .team-list, .courses-list ul, .services-coaching ul, .business-features ul, .workshop-features ul, .workshops-sessions ul, .who-for ul, .how-can-we-help ul, .thank-you-next ul {
    flex-direction: column;
  }
  .features ul li, .services ul li, .about-features ul li, .about-team .team-member, .courses-list ul li, .coaching-features ul li, .services-coaching ul li, .business-features ul li, .business-solutions ul li, .workshop-features ul li, .workshops-sessions ul li, .who-for ul li, .how-can-we-help ul li, .thank-you-next ul li {
    min-width: 95vw;
    max-width: 98vw;
  }
  .testimonial-card {
    max-width: 99vw;
    min-width: 180px;
  }
  .content-wrapper, .text-section {
    padding: 10px 6px 10px 6px;
    border-radius: 10px;
  }
  .footer-contact, .footer-nav, .footer-social {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-contact img { margin-bottom: 5px; }
}
@media (max-width: 550px) {
  .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .btn-primary, .btn-secondary {
    font-size: 0.98rem;
    padding: 13px 16px;
  }
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 0.97rem; }
}
@media (max-width: 430px) {
  .mobile-menu {
    padding-left: 0!important;
  }
  .mobile-nav {
    padding-left: 14px;
    margin-top: 60px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 8px; right: 8px;
  bottom: 8px;
  background: #fff;
  color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 6px 32px var(--shadow2);
  padding: 26px 20px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  z-index: 10000;
  animation: cookie-slide-in 0.46s cubic-bezier(.47,.97,.64,1);
  font-size: 1.01rem;
}
@keyframes cookie-slide-in {
  from { transform: translateY(90px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner strong { color: var(--brand-pink); }
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
}
.cookie-banner button {
  border-radius: 16px;
  border: none;
  padding: 9px 26px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
.cookie-banner .accept {
  background: var(--success-green);
  color: #fff;
  box-shadow: 0 2px 14px var(--success-green);
}
.cookie-banner .accept:hover {
  background: #26b278;
}
.cookie-banner .reject {
  background: var(--danger-red);
  color: #fff;
  box-shadow: 0 2px 14px var(--danger-red);
}
.cookie-banner .reject:hover {
  background: #cc2229;
}
.cookie-banner .settings {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 2px 10px var(--brand-blue);
}
.cookie-banner .settings:hover {
  background: var(--brand-violet);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 40vh;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  color: var(--primary);
  border-radius: 16px;
  box-shadow: 0 6px 44px var(--shadow2);
  width: 94vw;
  max-width: 380px;
  padding: 36px 24px 30px 24px;
  z-index: 11001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  animation: modal-pop-in 0.35s cubic-bezier(.52,1.73,.53,1);
}
@keyframes modal-pop-in {
  0%{ transform: translate(-50%,30%) scale(.92);
      opacity: 0; }
  100%{ transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.cookie-modal h3 { font-size: 1.1rem; margin-bottom: 4px; color: var(--brand-violet); }
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 5px;
}
.cookie-modal .toggle {
  margin-left: auto;
}
.cookie-modal .toggle input[type="checkbox"] {
  width: 44px;
  height: 24px;
  accent-color: var(--brand-violet);
}
.cookie-modal .save-btn {
  background: var(--brand-blue);
  color: #fff;
  border-radius: 13px;
  border: none;
  padding: 7px 21px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 15px;
  box-shadow: 0 2px 10px var(--secondary);
  transition: background 0.2s;
}
.cookie-modal .save-btn:hover {
  background: var(--brand-pink);
}
.cookie-modal .ess { color: var(--success-green); }
.cookie-modal .close-modal {
  background: none;
  border: none;
  color: var(--danger-red);
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 1.74rem;
  cursor: pointer;
}

/* --- MICRO-ANIMATIONS & FUN EFFECTS --- */
.btn-primary, .btn-secondary, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-modal .save-btn {
  will-change: transform;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.11s;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(.96);
}
.footer-social a:active img,
.mobile-nav a:active {
  transform: scale(.91);
}
.card, .testimonial-card {
  animation: fadeInCard 0.7s cubic-bezier(.47,1.33,.51,.98) both;
}
@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(30px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- ACCESSIBILITY & GENERAL --- */
:focus {
  outline: 2px dashed var(--brand-pink);
  outline-offset: 2px;
}
::-webkit-scrollbar { width: 11px; background: var(--secondary); }
::-webkit-scrollbar-thumb { background: var(--brand-blue); border-radius: 11px; }

/* --- CRITICAL SPACING & ALIGNMENT PATTERNS --- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.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; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }


/* --- Hide cookie/modal initially in JS-enabled environments --- */
.cookie-banner, .cookie-modal { display: none; }

