/* ========================
   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, 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #FFF6E0;
  color: #234E70;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
ol, ul {
  list-style: none;
}
a {
  color: #234E70;
  text-decoration: none;
  transition: color .2s;
  position: relative;
}
a:focus {
  outline: 2px solid #FEA500;
  outline-offset: 2px;
}

/* ===============
   VARIABLES
   =============== */
:root {
  --color-primary: #234E70;
  --color-secondary: #AAB8C2;
  --color-accent: #FFF6E0;
  --color-highlight: #FEA500; /* playful pop yellow */
  --color-fun-pink: #FD5A9D;
  --color-fun-blue: #3BC6FF;
  --color-fun-green: #35CE8D;
  --color-fun-orange: #FF965D;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(35,78,112,0.08), 0 2px 8px rgba(253,90,157,0.07);
  --shadow-card: 0 6px 22px rgba(35,78,112,0.10), 0 1.5px 3px rgba(253,90,157,0.11);
  --transition: all 0.25s cubic-bezier(.39,.58,.57,1);
}


/* =================================
   LAYOUT: CONTAINER, SECTION, GRID
   ================================= */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.feature-grid, .team-list, .course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0;
  justify-content: flex-start;
}
.text-section {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px;
  min-width: 270px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.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: 32px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-xl, 28px);
  box-shadow: 0 2px 14px 0 #AAB8C233;
  margin-bottom: 24px;
  position: relative;
  transition: box-shadow .22s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 30px 0 #FEA50033, 0 1px 4px #234E7011;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 190px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px 18px;
  min-width: 230px;
  transition: box-shadow .19s, transform .18s;
  border: 2px solid transparent;
  position: relative;
}
.feature-item:hover {
  box-shadow: 0 6px 32px -3px #3BC6FF2a, 0 2px 4px #234E7012;
  border-color: var(--color-fun-blue);
  transform: translateY(-2px) scale(1.023) rotate(-1deg);
}
.team-member {
  background: #FEA50022;
  border-radius: var(--radius-md);
  padding: 24px 18px;
  box-shadow: 0 2px 12px #fd5a9d12;
  margin-bottom: 20px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  border: 2px solid #FF965D33;
}
.course-item {
  background: #3BC6FF11;
  border-radius: var(--radius-md);
  padding: 28px 16px 22px 16px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  min-width: 230px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  border: 2px solid #3BC6FF33;
  transition: border-color .19s, box-shadow .18s;
}
.course-item:hover {
  border-color: #FD5A9D;
  box-shadow: 0 8px 32px -2px #FD5A9D22;
}

/* ================
   HERO SECTION
   ================ */
.hero {
  width: 100%;
  min-height: 340px;
  padding: 50px 0 48px 0;
  background: linear-gradient(105deg, #FEA500 8%, #3BC6FF 80%, #FFF6E0 100%);
  color: #234E70;
  position: relative;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: #234E70;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.3rem;
  margin-bottom: 10px;
  font-weight: bold;
  letter-spacing: -0.04em;
  word-break: break-word;
}
.hero p {
  font-size: 1.15rem;
  color: #234E70;
  margin-bottom: 16px;
  font-family: 'Roboto', Arial, sans-serif;
}
.hero .btn-primary {
  font-size: 1.06em;
  margin-top: 10px;
}

/* ================
   BUTTONS
   ================ */
.btn-primary {
  background: var(--color-highlight);
  color: #234E70;
  border: 0;
  border-radius: 100px;
  padding: 13px 32px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 2px 14px #FFA50027, 0 2px 12px #234E7015;
  position: relative;
  outline: none;
  transition: var(--transition), box-shadow .25s;
  margin-top: 12px;
  letter-spacing: -0.01em;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FD5A9D;
  color: #fff;
  box-shadow: 0 5px 24px #FD5A9D44, 0 2px 18px #234E7015;
  transform: scale(1.045) rotate(-2deg);
}
.btn-secondary {
  background: #3BC6FF;
  color: #fff;
  border: 0;
  border-radius: 100px;
  padding: 12px 28px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  margin-left: 10px;
  transition: var(--transition);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #234E70;
  color: #fff;
}

/* Style for button-style links */
a.btn-primary {
  display: inline-block;
  text-align: center;
}


/* ================
   TYPOGRAPHY
   ================ */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #234E70;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.14em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #FD5A9D;
  word-break: break-word;
}
h3 {
  font-size: 1.3rem;
  color: #234E70;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.08rem;
  color: #234E70;
}
p, li, address, td, th, table {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #234E70;
}
p, li, blockquote, address {
  line-height: 1.66;
}
.strong, strong {
  color: #234E70;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
}
blockquote {
  background: #3BC6FF0a;
  color: #234E70;
  border-left: 7px solid var(--color-highlight);
  padding: 16px 28px 16px 20px;
  font-style: italic;
  border-radius: 12px;
  margin: 18px 0;
  font-size: 1.08em;
}

/* Fun, playful font for special tags */
.brand-tagline {
  font-family: 'Montserrat', cursive, 'Roboto', Arial, sans-serif;
  font-size: 1.1em;
  color: #FD5A9D;
  margin-top: 16px;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.author {
  font-size: 1.02em;
  font-style: normal;
  color: #234E70;
  margin-top: 8px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* =========================
   NAVIGATION STYLES
   ========================= */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px #AAB8C228;
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 22px;
}
.logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 auto;
}
.main-nav a {
  color: #234E70;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.01em;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: background .15s, color .13s, transform .24s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FD5A9D22;
  color: #FD5A9D;
  transform: scale(1.09) rotate(-2deg);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #FD5A9D;
  padding: 6px 14px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  transition: background .21s, color .18s;
  z-index: 150;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FD5A9D22;
  color: #234E70;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 200;
  transform: translateX(100vw);
  transition: transform 0.32s cubic-bezier(.86,.05,.79,.92);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 32px #FD5A9D18;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FF965D;
  color: #fff;
  border: none;
  font-size: 2.3rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-self: flex-end;
  margin: 18px 14px 4px 0;
  cursor: pointer;
  box-shadow: 0 2px 10px #FEA50033;
  transition: background .18s, color .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FD5A9D;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 18px;
  padding: 24px 30px 0 30px;
}
.mobile-nav a {
  color: #234E70;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12em;
  padding: 12px 0px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  position: relative;
  transition: background .16s, color .16s;
  margin-bottom: 4px;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #3BC6FF22;
  color: #FD5A9D;
}

/* Hide main nav and show burger on mobile */
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===============
   FOOTER
   =============== */
footer {
  width: 100%;
  background: #234E70;
  padding: 32px 0 16px 0;
  color: #fff;
  box-shadow: 0 -2px 12px #AAB8C216;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
footer img {
  height: 44px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #FFF6E0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: color .13s, background .19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FD5A9D22;
  color: #FD5A9D;
}

footer .brand-tagline {
  color: #FFF6E0;
  font-size: 1.08em;
  letter-spacing: -0.02em;
  text-align: center;
}

/* =====================
   PRICING TABLE
   ===================== */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 14px 0 28px 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px #AAB8C222;
  overflow: hidden;
  font-size: 1.06em;
}
.pricing-table th, .pricing-table td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1.5px solid #3BC6FF22;
}
.pricing-table th {
  background: #FEA50033;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #234E70;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* =====================
   FAQ LIST
   ===================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px #3BC6FF19;
  padding: 18px 18px 12px 18px;
  margin-bottom: 6px;
  border-left: 7px solid #F7B53B;
}
.faq-item h2 {
  font-size: 1.19em;
  color: #FD5A9D;
  margin-bottom: 4px;
  font-weight: 700;
}

/* ===============================
   ADDRESS & CONTACT SECTION
   =============================== */
address {
  font-style: normal;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px #FEA50016, 0 1px 3px #234E7011;
  padding: 16px 22px;
  margin: 20px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #234E70;
  min-width: 250px;
  font-size: 1.01em;
}
address img {
  height: 19px;
  width: 19px;
  margin-right: 7px;
}
address a {
  color: #FD5A9D;
  text-decoration: underline;
  font-weight: 600;
  transition: color .16s;
}
address a:hover, address a:focus {
  color: #234E70;
}

/* ==============================
   UL/OL & LISTS
   ============================== */
ul, ol {
  padding-left: 22px;
  margin-bottom: 18px;
  margin-top: 6px;
}
ul li, ol li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 9px;
  color: #234E70;
}
ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #FD5A9D;
  font-size: 1.15em;
  line-height: 1;
}

/* ========================================
   THANK YOU SCREEN / SUCCESS ANIMATION
   ======================================== */
.thank-you-success {
  background: linear-gradient(95deg, #3BC6FF12 55%, #FEA50022 100%);
  border-radius: var(--radius-lg);
  margin-top: 36px;
  min-height: 260px;
}
.thank-you-success h1 {
  font-size: 2.2rem;
  color: #35CE8D;
  margin-bottom: 8px;
}
.next-steps ul {
  padding-left: 18px;
}
.next-steps li {
  color: #234E70;
  margin-bottom: 8px;
}

/* =======================
   ANIMATIONS
   ======================= */
@keyframes playful-bounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-7px); }
  70% { transform: translateY(5px); }
}
.btn-primary, .btn-secondary, .feature-item, .team-member, .course-item {
  will-change: transform, box-shadow;
  transition: box-shadow .19s, transform .16s;
}
.btn-primary:active {
  animation: playful-bounce .3s 1;
}
.logo img {
  animation: playful-bounce .9s infinite;
  animation-delay: .8s;
  will-change: transform;
}
.feature-item img {
  transition: transform .17s;
}
.feature-item:hover img {
  transform: scale(1.13) rotate(-5deg);
}
.team-member img {
  transition: transform .20s;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 10px #3BC6FF11;
}
.team-member:hover img {
  transform: scale(1.11) rotate(2deg);
}

/* =======================
   RESPONSIVE BREAKPOINTS
   ======================= */
@media (max-width: 1000px) {
  .container {
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .content-wrapper, .hero .content-wrapper {
    gap: 22px;
  }
  .feature-grid, .course-list, .team-list {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 5px;
  }
  .section {
    margin-bottom: 38px;
    padding: 22px 5px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .feature-grid, .course-list, .team-list, .content-grid, .card-container, .card-grid {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .team-member, .feature-item, .course-item, .card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 12px;
  }
  header .container {
    gap: 10px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .hero {
    padding: 32px 0 32px 0;
    min-height: 180px;
  }
  .hero h1 {
    font-size: 1.25rem;
  }
  h2 {
    font-size: 1.28rem;
  }
  h1 {
    font-size: 1.55rem;
  }
  .thank-you-success {
    min-height: inherit;
    margin-top: 18px;
  }
  .mobile-menu {
    padding-top: 4px;
  }
}

/* =======================================
   COOKIE BANNER & COOKIE SETTINGS MODAL
   ======================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #234E70;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -2px 16px #FD5A9D22;
  padding: 22px 12px 16px 12px;
  animation: cookieSlideIn .45s cubic-bezier(.82,.17,.49,1.17);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0.5; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
  justify-content: center;
}
.btn-cookie-accept, .btn-cookie-reject, .btn-cookie-settings {
  border: 0;
  border-radius: 100px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1em;
  padding: 10px 22px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, color .14s, box-shadow .18s;
}
.btn-cookie-accept {
  background: #35CE8D;
  color: #fff;
  box-shadow: 0 2px 10px #35CE8D22;
}
.btn-cookie-accept:hover, .btn-cookie-accept:focus {
  background: #234E70;
  color: #fff;
}
.btn-cookie-reject {
  background: #FD5A9D;
  color: #fff;
  box-shadow: 0 2px 10px #FD5A9D19;
}
.btn-cookie-reject:hover, .btn-cookie-reject:focus {
  background: #234E70;
  color: #fff;
}
.btn-cookie-settings {
  background: #FFE082;
  color: #234E70;
  box-shadow: 0 1px 6px #FFA50019;
}
.btn-cookie-settings:hover, .btn-cookie-settings:focus {
  background: #3BC6FF;
  color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  z-index: 350;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #234E7033;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s cubic-bezier(.76,.37,.38,.97);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  padding: 30px 36px;
  min-width: 280px;
  max-width: 98vw;
  box-shadow: 0 8px 44px #FD5A9D28, 0 2px 8px #234E7012;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  background: none;
  border: none;
  color: #FD5A9D;
  font-size: 2rem;
  cursor: pointer;
  transition: color .18s;
  z-index: 1;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #234E70;
}
.cookie-preferences-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.02em;
}
.cookie-preferences-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
}
.cookie-category-toggle {
  width: 38px;
  height: 21px;
  border-radius: 15px;
  background: #AAB8C2;
  position: relative;
  transition: background .18s;
  cursor: pointer;
  outline: none;
  margin-right: 6px;
}
.cookie-category-toggle[aria-checked="true"] {
  background: #35CE8D;
}
.cookie-category-toggle .toggle-knob {
  content: '';
  display: block;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 1px; top: 1px;
  transition: left .19s;
}
.cookie-category-toggle[aria-checked="true"] .toggle-knob {
  left: 18px;
}
.cookie-category-essential {
  font-weight: 700;
  color: #234E70;
}

@media (max-width: 600px) {
  .cookie-modal-content {
    padding: 16px 8px;
    max-width: 96vw;
  }
}

/* ====================
   MISCELLANEOUS
   ==================== */
::-webkit-scrollbar {
  width: 12px;
  background: #FAFAFA;
}
::-webkit-scrollbar-thumb {
  background: #AAB8C2;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FEA500;
}

/* Links in content */
p a, li a, .text-section a {
  color: #FD5A9D;
  border-bottom: 2px dotted #3BC6FF99;
  transition: color .18s, border-color .18s;
}
p a:hover, li a:hover, .text-section a:hover {
  color: #3BC6FF;
  border-bottom: 2px solid #FD5A9D;
}


/* =====================
  PLAYFUL DECOR SHAPES (optional, for brand mood)
  ===================== */
.playful-shape {
  position: absolute;
  z-index: 0;
  width: 120px; height: 120px;
  background: #FEA50044;
  border-radius: 60px 35px 80px 45px/80px 45px 60px 35px;
  filter: blur(8px);
  left: -40px; top: -60px;
  opacity: 0.35;
  pointer-events: none;
}

/* =====================
   VISUAL HIERARCHY SPACING
   ===================== */
.section > .container {
  padding-top: 12px;
  padding-bottom: 12px;
}

.card + .card, .feature-item + .feature-item, .team-member + .team-member, .course-item + .course-item, .testimonial-card + .testimonial-card {
  margin-top: 20px;
}

/* Ensure nothing overlaps, sufficient padding/margins */
.section, .card, .feature-item, .testimonial-card, .team-member, .course-item {
  margin-bottom: 24px;
}

/* =====================
   PRINT/ACCESSIBILITY
   ===================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none!important; }
  main { padding: 0; }
  body { background: #fff; color: #000; }
}


/*****  END ******/
