/* =======================================================
   CSS RESET & BASE
======================================================== */
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: #f6fbff;
  color: #234073;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =======================================================
   BRAND TYPOGRAPHY & COLORS
======================================================== */
:root {
  --color-primary: #234073;
  --color-secondary: #59A3D6;
  --color-accent: #F9F8F6;
  --color-info: #4cd7ee;
  --color-fun1: #f2cb60;
  --color-fun2: #f7786b;
  --color-fun3: #8ae768;
  --color-dark: #16223a;
  --color-light-bg: #FAFCFF;
  --color-white: #fff;
  --color-shadow: rgba(35,64,115,0.12);
  --font-display: 'Montserrat', Verdana, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  text-shadow: 0 2px 8px rgba(89,163,214,0.10);
  letter-spacing: 0.01em;
  line-height: 1.13;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
h4, h5 {
  font-size: 1rem;
}
p, ul, ol, li, label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark);
}
strong, b {
  font-weight: 700;
  color: var(--color-secondary);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 24px;
  box-shadow: 0 4px 24px var(--color-shadow);
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* =======================================================
   HEADER & NAVIGATION
======================================================== */
header {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 0;
  box-shadow: 0 4px 16px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 1020;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
}
.logo {
  height: 52px;
  margin-right: 32px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--color-accent);
  box-shadow: 0 2px 8px rgba(89,163,214,0.10);
  transition: box-shadow 0.2s;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-left: 32px;
}
header nav a {
  padding: 8px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-accent);
  font-size: 1.05rem;
  border-radius: 21px;
  position: relative;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-info);
  color: var(--color-dark);
}
.cta-header {
  padding: 10px 28px;
  background: var(--color-fun2);
  border-radius: 32px;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: bold;
  border: none;
  margin-left: 32px;
  box-shadow: 0 2px 12px rgba(247,120,107,0.14);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.12s;
  outline: none;
}
.cta-header:hover, .cta-header:focus {
  background: var(--color-secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.mobile-menu-toggle {
  display: none;
  background: var(--color-fun1);
  color: var(--color-primary);
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  padding: 5px 14px;
  cursor: pointer;
  margin-left: 24px;
  box-shadow: 0 2px 8px rgba(242,203,96,0.13);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-fun2);
  color: #fff;
}

/* =======================================================
   MOBILE MENU
======================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,64,115,0.93);
  z-index: 1600;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.94,.13,.35,.97);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  transition: transform 0.34s cubic-bezier(.94,.13,.35,.97);
}
.mobile-menu-close {
  margin: 24px 0 0 24px;
  align-self: flex-start;
  background: var(--color-fun2);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  border-radius: 22px;
  padding: 5px 16px;
  cursor: pointer;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-fun1);
  color: var(--color-primary);
}
.mobile-nav {
  margin-top: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding: 0 36px;
}
.mobile-nav a {
  font-size: 1.24rem;
  font-family: var(--font-display);
  color: #fff;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  width: 100%;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, border-color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-info);
  color: var(--color-dark);
  border-bottom: 2px solid var(--color-fun1);
}

@media (max-width: 1024px) {
  header nav {
    gap: 16px;
  }
  .cta-header {margin-left: 12px;}
}
@media (max-width: 880px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .logo { height: 44px; }
  nav a { font-size: 0.98rem; }
  .cta-header {
    padding: 8px 18px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  header nav, .cta-header {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    padding: 10px 7px;
    flex-direction: row;
    align-items: center;
  }
}

/* =======================================================
   HERO SECTIONS & CTA
======================================================== */
.hero-section {
  background: linear-gradient(100deg,var(--color-fun1) 0%,var(--color-secondary) 40%, var(--color-fun2) 95%);
  position: relative;
  padding: 70px 0 40px 0;
  margin-bottom: 60px;
  overflow: hidden;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 6px 42px var(--color-shadow);
}
.hero-section .container {
  align-items: center;
  justify-content: center;
}
.hero-section h1 {
  color: var(--color-white);
  text-shadow: 0 6px 30px rgba(35,64,115,0.14);
  font-size: 2.8rem;
}
.hero-section p {
  color: #fffdf6;
  font-size: 1.18rem;
  margin-bottom:10px;
}
.cta-main {
  display: inline-block;
  background: var(--color-fun2);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.27rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  padding: 16px 44px;
  border-radius: 44px;
  box-shadow: 0 8px 28px rgba(247,120,107,0.11);
  transition: background 0.16s, color 0.16s, transform 0.13s box-shadow 0.13s;
  margin-top:24px !important;
  margin-bottom: 10px;
  border: none;
  outline: none;
  cursor: pointer;
  animation: wiggle 2.6s infinite cubic-bezier(.68,.59,.31,1.33);
  will-change: transform;
}
.cta-main:hover, .cta-main:focus {
  background: var(--color-fun1);
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 28px #59A3D6;
}
@keyframes wiggle {
  0%,100% { transform: rotate(-1.5deg) scale(1); }
  7% { transform: rotate(2deg) scale(1.03); }
  14% { transform: rotate(-2deg) scale(1.04); }
  21% { transform: rotate(1deg) scale(1.05); }
  28% { transform: rotate(-1deg) scale(1.03); }
  35% { transform: rotate(0.2deg) scale(1.01); }
  42%, 100% { transform: rotate(-1.2deg) scale(1); }
}

.cta-section {
  background: var(--color-fun3);
  border-radius: 24px;
  padding: 50px 20px;
  margin-bottom: 60px;
  box-shadow: 0 2px 22px rgba(145,239,110,0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section .content-wrapper {
  align-items: center;
}
.cta-section h2 {
  color: var(--color-primary);
  font-size: 2rem;
}
.cta-section p {
  color: var(--color-dark);
  font-size: 1.14rem;
}

@media (max-width: 690px) {
  .hero-section {padding: 40px 0 24px 0;}
  .hero-section h1 {font-size: 2.02rem;}
}

/* =======================================================
   FEATURES & GRID FLEX LAYOUTS
======================================================== */
.feature-grid, .testimonial-slider, .testimonial-grid, .faq-list, .team-bio-list, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 18px;
  justify-content: flex-start;
}
.feature-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(89,163,214,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 32px 26px 24px 26px;
  min-width: 240px;
  flex: 1 1 270px;
  max-width: 340px;
  transition: box-shadow 0.17s, transform 0.14s;
  position: relative;
  margin-bottom: 20px;
  border: 2.4px solid var(--color-fun1);
}
.feature-item img {
  width: 48px; height: 48px;
  margin-bottom: 9px;
}
.feature-item h3 {
  color: var(--color-secondary);
  font-size: 1.13rem;
}
.feature-item p {
  color: var(--color-dark);
}
.feature-item:hover {
  box-shadow: 0 8px 40px 0 rgba(35,64,115,0.13);
  transform: translateY(-3px) scale(1.025);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 22px rgba(35,64,115,0.08);
  position: relative;
  padding: 20px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.18s, transform 0.12s;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(35,64,115,0.14);
  transform: translateY(-4px) scale(1.02);
}

.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;
  margin-bottom: 28px;
}
.text-image-section .text {
  flex: 2 1 240px;
}
.text-image-section img {
  flex: 1 1 160px;
  max-width: 200px;
  border-radius: 12px;
  box-shadow: 0 4px 24px var(--color-shadow);
}

@media (max-width: 1023px) {
  .feature-grid, .testimonial-slider, .testimonial-grid, .faq-list, .team-bio-list, .card-container, .content-grid {
    gap: 16px;
  }
  .feature-item, .card {
    min-width: 180px;
    flex-basis: 220px;
  }
  .text-image-section {gap: 18px;}
}
@media (max-width: 768px) {
  .feature-grid, .testimonial-slider, .testimonial-grid, .card-container, .team-bio-list, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .feature-item, .card {
    max-width: 100%;
  }
}

/* =======================================================
   TESTIMONIALS, FAQ, TEAM ITEMS etc
======================================================== */
.testimonial-section {
  background: linear-gradient(94deg,var(--color-accent) 70%,var(--color-fun1) 100%);
  border-radius: 24px;
  padding: 40px 20px;
  margin-bottom: 60px;
  box-shadow: 0 2px 24px rgba(247,120,107,0.09);
}
.testimonial-slider, .testimonial-grid {
  gap: 32px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 24px 20px 18px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(35,64,115,0.06);
  min-width: 220px;
  flex: 1 1 270px;
  border-left: 4.2px solid var(--color-fun2);
  transition: transform 0.13s, box-shadow 0.13s;
  position: relative;
  color: var(--color-dark);
}
.testimonial-card img {
  width:34px;height:34px;margin-bottom:3px;
  animation: pop-in 1.7s cubic-bezier(.56,1.45,.39,.95) infinite alternate;
}
@keyframes pop-in {
  0%{ transform: scale(0.98);}
  50%{transform: scale(1.13);}
  100%{transform: scale(0.98);}
}
.testimonial-card p {
  color: #28314A;
  font-size: 1.03rem;
  text-align: center;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: var(--color-secondary);
}
.testimonial-card:hover {
  box-shadow: 0 8px 41px rgba(89,163,214,0.17);
  transform: translateY(-6px) scale(1.025);
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-item {
  background: var(--color-accent);
  border-radius: 14px;
  padding: 22px 20px 18px 20px;
  flex: 1 1 270px;
  min-width: 180px;
  box-shadow: 0 2px 10px rgba(89,163,214,0.08);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.14s, transform 0.13s;
}
.faq-item h3 {
  color: var(--color-fun2);
  margin-bottom: 8px;
}
.faq-item:hover {
  box-shadow: 0 8px 30px rgba(242,203,96,0.13);
  transform: translateY(-2px) scale(1.01);
}

.team-bio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.team-bio-list > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(35,64,115,0.06);
  padding: 26px 20px;
  min-width:230px;
  flex: 1 1 280px;
  margin-bottom: 20px;
}
.team-bio-list h3 {
  color: var(--color-fun1);
  font-size: 1.09rem;
  margin-bottom: 8px;
}

.learning-outcomes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
.learning-outcomes-list li {
  display: flex;
  align-items: center;
  background: #f1f8fb;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.01rem;
  font-weight: 500;
  min-width:180px;
  box-shadow: 0 1px 4px rgba(89,163,214,0.05);
  margin-bottom: 12px;
  color: var(--color-secondary);
}
.learning-outcomes-list img {
  width: 26px; height: 26px; margin-right: 10px;
}

/* =======================================================
   LISTS & GENERAL CONTENT
======================================================== */
ul, ol, .content-section ul {
  padding-left: 18px;
  margin-bottom: 22px;
  margin-top: 6px;
}
li {
  margin-bottom: 12px;
  position: relative;
  font-family: var(--font-body);
  font-size: 1rem;
}
ul li:before {
  content: '•';
  color: var(--color-fun2);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.content-section {
  padding: 40px 20px;
  margin-bottom:60px;
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(35,64,115,0.06);
}

ol li:before {
  content: "";
  margin-right: 0;
  display: none;
}

/* =======================================================
   FOOTER
======================================================== */
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 0;
  font-size: 0.95rem;
  margin-top: 64px;
  position: relative;
  z-index: 2;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 14px 20px 14px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
  margin-bottom: 18px;
}
.logo-footer {
  height: 38px;
  background: var(--color-accent);
  border-radius: 10px;
  padding: 2px 6px;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(89,163,214,0.09);
}
footer nav {
  display: flex;
  flex-direction: row;
  gap:20px;
  flex-wrap: wrap;
}
footer nav a {
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  padding: 5px 10px;
  transition: background 0.13s, color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-fun1);
  color: var(--color-dark);
}
.footer-contact {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  color: var(--color-accent);
}
.footer-contact img {
  width: 21px; height: 21px; margin-right: 2px;
}
.footer-social {
  display: flex;
  gap: 22px;
  margin-bottom: 14px;
}
.footer-social a {
  display: flex;
  align-items: center;
  background: var(--color-accent);
  border-radius: 50%;
  width: 36px; height: 36px;
  justify-content: center;
  box-shadow: 0 2px 7px rgba(89,163,214,0.08);
  transition: background 0.16s, transform 0.13s;
  outline: none;
}
.footer-social a:hover, .footer-social a:focus {
  background: var(--color-fun2);
  transform: scale(1.10);
}
.footer-social img {
  width: 22px; height: 22px; }
.footer-legal {
  text-align: center;
  font-size: 0.95rem;
  color: #d2ebfc;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .footer-main {
    flex-direction:column;
    gap:20px;
  }
  .footer-contact p, .footer-social {
    font-size: 0.98rem;
  }
}

/* =======================================================
   BUTTONS, FORMS & GENERAL INTERACTIVES
======================================================== */
button, .btn, .cta-main, .cta-header {
  font-family: var(--font-display);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.12s;
}
button:active, .btn:active, .cta-main:active {
  transform: scale(0.97);
}
input, textarea, select {
  font-family: var(--font-body);
  padding: 12px 14px;
  border-radius: 9px;
  border: 1.5px solid var(--color-secondary);
  background: #fff;
  margin-bottom: 18px;
  transition: border 0.11s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-fun2);
  outline: 2px solid var(--color-fun2);
}
::-webkit-input-placeholder { color: #aaa; }
::-moz-placeholder { color: #aaa; }
:-ms-input-placeholder { color: #aaa; }
::placeholder { color: #aaa; }

/* =======================================================
   COOKIE CONSENT BANNER & MODALS
======================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg,var(--color-fun1) 85%,var(--color-fun2) 100%);
  color: var(--color-dark);
  z-index: 3000;
  padding: 26px 20px 20px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -2px 34px rgba(35,64,115,0.13);
  border-radius: 16px 16px 0 0;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.27s cubic-bezier(.58,.57,.46,1.19), transform 0.27s cubic-bezier(.58,.57,.46,1.19);
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .banner-message {
  font-size: 1.09rem;
  flex: 2 1 240px;
}
.cookie-banner .banner-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  min-width: 112px;
  font-size: 1.05rem;
  border-radius: 25px;
  padding: 8px 18px;
  box-shadow: 0 2px 9px rgba(247,120,107,0.09);
  background: var(--color-secondary);
  color: #fff;
  transition: background 0.15s, color 0.14s, transform 0.11s;
  font-weight: 600;
}
.cookie-banner button.accept {
  background: var(--color-fun3);
  color: var(--color-primary);
}
.cookie-banner button.reject {
  background: var(--color-fun2);
  color: #fff;
}
.cookie-banner button.settings {
  background: var(--color-light-bg);
  color: var(--color-dark);
  border: 2px solid var(--color-primary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-fun1);
  color: var(--color-primary);
  transform: scale(1.04) translateY(-2px);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,64,115,0.51);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s cubic-bezier(.55,.11,.44,1.3);
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  max-width: 430px;
  width:90vw;
  padding: 38px 24px 28px 24px;
  box-shadow: 0 6px 48px rgba(35,64,115,0.12);
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  animation: pop-in-modal 0.36s cubic-bezier(.61,.37,.45,1.39);
}
@keyframes pop-in-modal {
  0%{opacity:0;transform:scale(0.85) translateY(32px)}
  100%{opacity:1;transform:scale(1) translateY(0)}
}
.cookie-modal h2 {
  color: var(--color-secondary);
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid #f2f6f9;
}
.cookie-category label {
  font-size: 1.01rem;
  color: var(--color-dark);
  font-weight: 500;
}
.cookie-category input[type=checkbox]{
  width:28px;height:28px;
  accent-color: var(--color-fun1);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 15px;
}
.cookie-modal button {
  min-width: 96px;
  border-radius: 19px;
  padding: 8px 16px;
  font-weight: 600;
  background: var(--color-fun3);
  color: var(--color-primary);
  transition: background 0.13s, color 0.13s;
  border: none;
}
.cookie-modal button.close {
  background: var(--color-fun2);
  color: #fff;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--color-fun1);
  color: var(--color-primary);
}

.cookie-modal .essential {
  opacity: 0.7;
}
.cookie-modal .essential input[type=checkbox] {
  pointer-events: none;
}

@media (max-width: 570px) {
  .cookie-banner{
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px 18px 10px;
  }
  .cookie-banner .banner-actions {
    margin-top: 13px;
    gap: 10px;
    flex-wrap: wrap;
  }
}

/* =======================================================
   PLAYFUL & DYNAMIC - VISUAL MICRO ANIMATIONS
======================================================== */
.card, .feature-item, .faq-item, .testimonial-card, .team-bio-list > div {
  animation: float-pop 2.7s ease-in-out infinite alternate;
}
@keyframes float-pop {
  0% {box-shadow:0 2px 14px var(--color-shadow);transform:translateY(0) scale(1.00);}
  48%{box-shadow: 0 8px 26px rgba(89,163,214,0.12);transform: translateY(-4px) scale(1.02);}
  100% {box-shadow: 0 4px 28px rgba(89,163,214,0.09);transform: translateY(0) scale(1.01);}
}

.card:hover, .feature-item:hover, .faq-item:hover, .testimonial-card:hover, .team-bio-list>div:hover {
  animation: none;
}

h1, h2, h3 {
  animation: fade-pop 0.6s cubic-bezier(.22,1.27,.54,.89);
}
@keyframes fade-pop {
  0% {transform: scale(0.92) translateY(18px); opacity: 0;}
  100% {transform: scale(1) translateY(0); opacity: 1;}
}

/* Fun colored underline on headings for playfulness */
h2:after {
  content: '';
  display: block;
  width: 48px;
  height: 7px;
  background: var(--color-fun1);
  border-radius: 8px;
  margin-top: 5px;
  margin-bottom: 8px;
  opacity: 0.65;
  animation: underline-swing 2.5s infinite alternate ease-in;
}
@keyframes underline-swing {
  0% {transform: translateX(0) scaleX(1);}
  100% {transform: translateX(7px) scaleX(1.09);}
}

/* Fun font on some headings */
h1, .cta-main, .cta-header {
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
}

/* =======================================================
   RESPONSIVE UTILITIES
======================================================== */
@media (max-width: 600px) {
  .section, .content-section, .cta-section, .testimonial-section {
    padding: 28px 4vw;
  }
  .container {
    padding: 0 4vw;
  }
  .hero-section {padding: 28px 0 18px 0;}
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.09rem; }
  .cta-main, .cta-header {
    font-size: 1.07rem;
    padding: 11px 15vw;
  }
}

/* Ensure all layouts keep gap and spacing */
.section, .content-section, .testimonial-section, .cta-section {
  margin-bottom: 60px;
}

/* Extra: Hide visually only utility */
.sronly {
  position: absolute;
  left: -10000px;
  width: 1px; height: 1px;
  overflow: hidden;
}
