/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body { line-height: 1; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; border: 0; }
button, input, select, textarea {
  font-family: inherit; font-size: 100%; line-height: 1.15;
  margin: 0; border: none;  background: none;
}
button { cursor: pointer; outline: none; }
:root {
  --primary: #283468;
  --secondary: #4EC19B;
  --accent: #F5F7FB;
  --pink: #F06292;
  --yellow: #FFEE58;
  --orange: #FFB300;
  --purple: #9459DB;
  --text-dark: #222134;
  --text-light: #fff;
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --shadow-md: 0 3px 24px 0 rgba(40,52,104,0.13);
  --shadow-lg: 0 8px 32px 0 rgba(40,52,104,0.23);
  --gradient-playful: linear-gradient(90deg, #4EC19B 30%, #FFEE58 70%);
}

/* WEB FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Open+Sans:400,600,700&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: var(--primary);
  background: var(--accent);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
main {
  background: var(--accent);
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.8rem;
  color: var(--secondary);
  text-shadow: 2px 4px 0 #FFEE58, 0 1px 6px rgba(74,191,148,0.16);
  margin-bottom: 18px;
}
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--primary); }
h4, h5, h6 { font-size: 1.1rem; }
p, li, ul, ol {
  color: var(--primary);
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 1rem;
}
strong, b { font-weight: 700; }

/* ----- LAYOUT CONTAINERS & SECTIONS ----- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.section, .hero, .features, .services, .about, .about-brief, .contact-cta, .about-section { 
  margin-bottom: 60px; 
  padding: 40px 20px; 
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.hero {
  background: var(--gradient-playful), var(--accent);
  color: var(--primary);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 240px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  z-index: 2;
  position: relative;
}
.hero.thank-you {
  background: var(--secondary);
  color: var(--text-light);
}

.subheadline {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 600;
}

.section:last-child, .last-cta {
  margin-bottom: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ----- NAVIGATION [DESKTOP + MOBILE BURGER MENU] ----- */
header {
  background: #fff;
  box-shadow: 0 3px 18px rgba(40,52,104,0.09);
  padding-top: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 18px 12px 6px;
}
.main-nav .logo {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main-nav li {
  display: flex;
}
.main-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
  position: relative;
  color: var(--primary);
  letter-spacing: 0.01rem;
  line-height: 1.1;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--text-light);
}
.cta.primary {
  background: var(--secondary);
  color: var(--text-light);
  font-weight: 800;
  border-radius: 40px;
  padding: 12px 36px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px rgba(78,193,155,0.14);
  border: 2px solid var(--secondary);
  transition: background 0.18s, color 0.18s, transform 0.18s, border 0.18s;
  margin-left: 16px;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--primary);
  color: var(--yellow);
  border: 2px solid var(--yellow);
  transform: scale(1.04) rotate(-1deg);
}
.cta.secondary {
  background: var(--pink);
  color: var(--text-light);
  font-weight: bold;
  border-radius: 32px;
  padding: 10px 28px;
  border: 2px solid var(--pink);
  font-size: 1rem;
  margin-right: 0;
  margin-top: 8px;
  display: inline-block;
  transition: background 0.14s, color 0.18s, border 0.18s, transform 0.18s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--yellow);
  color: var(--primary);
  border: 2px solid var(--primary);
  transform: scale(1.04) rotate(2deg);
}

/* --- Mobile Menu Toggle Button --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 16px;
  background: var(--secondary);
  color: var(--text-light);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.9rem;
  z-index: 101;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(78,193,155,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.13s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--yellow);
  box-shadow: 0 2px 24px rgba(40,52,104,0.13);
}

/* ----- Mobile Nav Menu (hidden by default) ----- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 320px;
  max-width: 85vw;
  padding: 36px 24px 24px 24px;
  z-index: 9999;
  box-shadow: 4px 0 48px rgba(40,52,104,0.19);
  transform: translateX(-120%);
  transition: transform 0.32s cubic-bezier(.79,.14,.15,.86);
  will-change: transform;
  min-height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.32s cubic-bezier(.79,.14,.15,.86);
}
.mobile-menu-close {
  position: absolute;
  right: 14px;
  top: 14px;
  background: var(--pink);
  color: var(--text-light);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.3rem;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 12px;
  margin-top: 64px;
}
.mobile-nav a {
  width: 100%;
  padding: 14px 6px 14px 6px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  border-radius: var(--radius-md);
  transition: background 0.18s, color 0.14s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: var(--secondary);
  color: var(--yellow);
}

/*----- Responsive Nav / Hide-Show Elements -----*/
@media (max-width: 992px) {
  .main-nav ul, .main-nav .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 993px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ----- FLEXBOX LAYOUTS & SPACING ----- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { 
  margin-bottom: 20px; 
  position: relative; 
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.20s;
}
.card:hover { box-shadow: 0 8px 36px rgba(40,52,104,0.16); }

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  background: #F5F7FB;
  box-shadow: 0 3px 16px 0 rgba(40,52,104,0.10);
  border-left: 6px solid var(--secondary);
  transition: box-shadow 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(40,52,104,0.15);
  border-left: 6px solid var(--pink);
  transform: translateY(-3px) scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ----- FEATURES & VALUE BLOCKS ----- */
.features .feature-grid, .features .value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features .feature-block, .features .value-block {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 32px 22px 26px 22px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.20s;
  border-bottom: 7px solid var(--yellow);
}
.features .feature-block:hover, .features .value-block:hover {
  box-shadow: 0 10px 28px rgba(78,193,155,0.16);
  border-bottom: 7px solid var(--pink);
  transform: scale(1.04) rotate(-1.5deg);
}
.features .feature-block img, .features .value-block img {
  width: 48px; height: 48px; margin-bottom: 6px;
  filter: drop-shadow(2px 4px 0 var(--yellow)) drop-shadow(0 2px 8px rgba(78,193,155,0.06));
}

/* ----- SERVICE/PROGRAMS ----- */
.service-list, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.service-item {
  background: var(--accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 24px 20px 20px 20px;
  margin-bottom: 20px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.17s;
  position: relative;
  border-bottom: 7px solid var(--purple);
}
.service-item:hover {
  box-shadow: 0 6px 22px rgba(148,89,219,0.16);
  border-bottom: 7px solid var(--secondary);
  transform: scale(1.03) rotate(2.5deg);
}
.service-price {
  font-weight: bold;
  color: var(--pink);
  margin-top: 4px;
  background: var(--yellow);
  padding: 2px 10px 2px 10px;
  border-radius: 14px;
  font-size: 1rem;
  display: inline-block;
}
.training-overview {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 12px;
}
.package-details ul {
  margin-left: 16px;
  margin-bottom: 0;
  margin-top: 10px;
}
.package-details li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}
.package-details li:before {
  content: '•';
  color: var(--secondary);
  position: absolute;
  left: 0; top: 0;
  font-size: 1.15em;
}

/***** TESTIMONIALS & REVIEWS *****/
.testimonials, .impact {
  background: var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.client-logos {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  margin-top: 18px;
}
.client-logos img {
  width: 48px;
  filter: grayscale(60%) brightness(1.2) drop-shadow(2px 2px 0 var(--secondary));
}
.client-name {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  color: var(--primary);
  margin-top: 6px;
  font-size: 1.1rem;
}

.before-after {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}
.before, .after {
  background: #fff9e5;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(255,238,88,0.12);
  padding: 16px 18px;
  flex: 1 1 240px;
  min-width: 190px;
  margin-bottom: 10px;
}
.before strong, .after strong {
  color: var(--primary);
  font-weight: 700;
  font-family: 'Montserrat';
}

.impact-stats, .success-metrics ul {
  display: flex;
  flex-direction: row;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 10px;
}
.impact-stats li, .success-metrics li {
  background: var(--secondary);
  color: var(--text-light);
  border-radius: 12px;
  padding: 8px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(78,193,155,0.07);
}

/* ----- RESOURCE LIST & TOOL SECTIONS ----- */
.resource-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.resource-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 1.08rem;
  color: var(--text-dark);
}
.resource-list img {
  width: 28px; margin-right: 7px;
  filter: drop-shadow(1px 2px 0 #FFEE58);
}
.tools-overview p {
  margin-top: 8px;
  color: var(--primary);
}

.newsletter-signup {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}
.newsletter-signup input[type="email"] {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--secondary);
  font-size: 1rem;
  width: 210px; max-width: 100%;
  margin-right: 6px;
  transition: border 0.15s;
}
.newsletter-signup input[type="email"]:focus {
  border: 2px solid var(--pink);
}

.newsletter-signup button[type="submit"] {
  margin: 0;
}

/* ---- LEGAL PAGES & CONTENT ---- */
.legal {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.legal h1 { color: var(--secondary); }
.legal h2 { color: var(--primary); margin-top: 30px; }
.legal ul {
  margin-left: 16px;
}
.legal li {
  margin-bottom: 12px;
  font-size: 1rem;
}

/* --- ADDRESS, ABOUT, FOOTER --- */
.address-block, .footer-address {
  margin-bottom: 20px;
  color: var(--primary);
}
.footer-address p { margin-bottom: 6px; }
.about-section, .about-brief, .about.newsletter {
  background: #f0f8f7;
  border-radius: var(--radius-lg);
  box-shadow: none;
  padding: 44px 24px;
}
.founder-section {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 18px;
}
.founder-section img {
  width: 68px; height: 68px; border-radius: 50%; background: var(--accent); box-shadow: var(--shadow-md);
}

/* ---- Footer ---- */
footer {
  background: var(--primary);
  color: var(--text-light);
  padding: 38px 0 12px 0;
  margin-top: 45px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: var(--yellow);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 14px;
  padding: 6px 14px;
  transition: background 0.15s, color 0.15s;
  letter-spacing: .04em;
}
.footer-menu a:hover {
  background: var(--yellow);
  color: var(--primary);
}
.footer-contact {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  margin-bottom: 15px;
}
.footer-contact img {
  width: 54px; height: 54px;
  filter: drop-shadow(2px 2px 0 var(--secondary));
  margin-right: 10px;
}
.footer-address { max-width: 340px; }
.footer-credit {
  text-align: center;
  color: #fff8;
  font-size: 0.97rem;
  margin-top: 6px;
}

/* ---- BUTTONS & INTERACTIVE ELEMENTS ---- */
button, .cta, .newsletter-signup button {
  transition: background 0.16s, color 0.16s, transform 0.12s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(40,52,104,0.10);
}
button:focus, .cta:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}
button:active, .cta:active {
  transform: scale(0.98) rotate(-1deg);
}

/* ---- ANIMATIONS ---- */
@keyframes floaty {
  0% { transform: translateY(0); }
  55% { transform: translateY(-10px) scale(1.04); }
  100% { transform: translateY(0); }
}
.features .feature-block:hover img,
.features .value-block:hover img,
.service-item:hover h3,
.testimonial-card:hover {
  animation: floaty 0.7s linear;
}

/* --- decorative SVG bubbles for hero --- */
.hero:before, .hero:after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.23;
}
.hero:before {
  left: -80px; top: -40px;
  width: 180px; height: 180px;
  background: var(--yellow);
  filter: blur(4px);
  animation: floaty 4s infinite ease-in-out;
}
.hero:after {
  right: -60px; bottom: -60px;
  width: 120px; height: 120px;
  background: var(--pink);
  filter: blur(6px);
  animation: floaty 5s 0.7s infinite cubic-bezier(.4,.44,.28,.76);
}

/* ----- RESPONSIVE LAYOUTS ----- */
@media (max-width: 1020px) {
  .main-nav, .container {
    max-width: 98vw;
    padding-left: 15px; padding-right: 15px;
  }
}
@media (max-width: 900px) {
  .features .feature-grid, .features .value-grid, .service-list, .service-cards, .content-grid {
    gap: 16px;
    flex-wrap: wrap;
  }
  .client-logos {
    gap: 20px; flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  body, main, .section, .hero, .features, .services, .about, .about-brief, .contact-cta, .about-section, .legal {
    padding-left: 3vw; padding-right: 3vw;
  }
  .features .feature-grid, .features .value-grid, .service-list, .service-cards {
    flex-direction: column;
    gap: 18px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .testimonial-slider { gap: 12px; }
  .hero .container { min-height: 120px; }
  .hero {
    padding: 35px 3vw 32px 3vw;
    min-height: 170px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
}
@media (max-width: 650px) {
  .section, .about-brief, .about.newsletter, .contact-cta, .legal {
    padding: 26px 4vw;
    margin-bottom: 34px;
    border-radius: 18px;
  }
  .feature-block, .value-block, .service-item, .testimonial-card, .before, .after {
    padding: 18px 11px 15px 11px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .newsletter-signup {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
}
@media (max-width: 560px) {
  .main-nav, .container { padding: 0 3vw; }
  .footer-menu {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .hero, .section, .about-brief, .about.newsletter, .contact-cta, .legal {
    margin-bottom: 24px;
  }
  .hero .content-wrapper { gap: 14px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.08rem; }
}

/* --- FLEXBOX COLUMN ON MOBILE FOR CERTAIN SECTIONS --- */
@media (max-width: 800px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .founder-section {
    flex-direction: column; align-items: flex-start; gap: 9px;
  }
  .newsletter-signup input[type="email"] { width: 100%; }
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background-color: #fffbe3;
  color: var(--primary);
  padding: 18px 24px 14px 18px;
  z-index: 99999;
  box-shadow: 0 -3px 12px rgba(40,52,104,0.07);
  border-top: 4px solid var(--yellow);
  transition: transform 0.22s cubic-bezier(.39,.58,.57,1);
  gap: 24px;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-banner-message {
  font-size: 1rem;
  color: var(--primary);
  flex: 1 1 220px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.cookie-banner button {
  padding: 8px 25px;
  border-radius: 16px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-right: 0;
  border: 2px solid var(--yellow);
  color: var(--primary);
  background: var(--yellow);
  box-shadow: 0 1px 7px rgba(255,238,88,0.10);
  transition: background 0.17s, color 0.13s, border 0.15s;
}
.cookie-banner button:hover {
  background: var(--secondary);
  color: var(--text-light);
  border-color: var(--secondary);
}
.cookie-banner .cookie-settings-btn {
  background: var(--pink);
  color: #fff;
  border: 2px solid var(--pink);
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--purple);
  border-color: var(--purple);
}

/***** COOKIE MODAL POPUP ******/
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(40,52,104,0.18);
  align-items: center;
  justify-content: center;
  z-index: 200000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.31s cubic-bezier(.67,.13,.35,1.02);
}
.cookie-modal .cookie-modal-dialog {
  background: #fff;
  box-shadow: 0 6px 44px rgba(40,52,104,0.17);
  border-radius: 24px;
  padding: 36px 32px;
  min-width: 290px;
  max-width: 90vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: floaty 0.6s linear;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  background: var(--secondary);
  color: var(--text-light);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.07rem;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 10px rgba(78,193,155,0.08);
}
.cookie-modal .cookie-modal-title { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.3rem; color: var(--primary); }
.cookie-modal .cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid #EFF2F7;
  padding-bottom: 12px;
}
.cookie-modal .cookie-modal-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--secondary);
  margin-right: 8px;
}
.cookie-modal .cookie-modal-category label {
  font-family: 'Montserrat'; font-weight: 600;
}
.cookie-modal .cookie-category-essential {
  opacity: 0.7;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-modal-actions button {
  background: var(--yellow);
  border: 2px solid var(--yellow);
  color: var(--primary);
  padding: 8px 22px;
  border-radius: 12px;
  font-family: 'Montserrat'; font-size: 1rem; font-weight: 800;
  transition: background 0.16s, border 0.14s, color 0.17s;
}
.cookie-modal .cookie-modal-actions button:hover {
  background: var(--secondary); color: #fff; border: 2px solid var(--secondary);
}

/***** OTHER UTILITY CLASSES ******/
.mt-18 { margin-top: 18px; }
.mb-32 { margin-bottom: 32px; }
.hide { display: none !important; }

/***** COLORFUL, PLAYFUL DYNAMIC FONTS (HEADERS) *****/
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  word-spacing: 2px;
}
h1 strong, h2 strong { color: var(--pink); }
h1 span, h2 span { color: var(--secondary); }

/***** END CSS *****/
