/* 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #F5F5F2;
  font-family: 'Roboto', Arial, sans-serif;
  color: #232323;
  line-height: 1.68;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, svg {
  max-width: 100%;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2C3E5C;
  font-weight: 900;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol, li {
  font-size: 1.1rem;
  color: #232323;
}
strong {
  color: #3C9C74;
  font-weight: 700;
}

/* Main Structure */
main {
  flex: 1 1 auto;
}
.container {
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(44,62,92,0.035);
}

/* Vibrant/Energetic COLOR PALETTE */
:root {
  --primary: #2C3E5C;
  --secondary: #3C9C74;
  --accent: #F5F5F2;
  --electric-orange: #FB635D;
  --electric-blue: #3995FF;
  --electric-yellow: #FFD600;
  --electric-pink: #FF29AB;
  --electric-green: #32FFA6;
  --dark: #181F2B;
}

/* Utility Spacing */
.mt-32 { margin-top: 32px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.py-16 { padding-top: 16px; padding-bottom: 16px; }

/* Main Navigation */
header {
  background: linear-gradient(90deg, #2C3E5C 80%, #3C9C74 100%);
  box-shadow: 0 2px 10px 0 rgba(44,62,92,0.10);
  padding: 0;
}
.main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
}
.logo img {
  height: 48px;
  width: auto;
  transition: transform 0.15s;
  will-change: transform;
}
.logo img:hover {
  transform: scale(1.08) rotate(-4deg);
}
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.desktop-menu a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s, box-shadow 0.13s;
  position: relative;
}
.desktop-menu a:not(.cta):hover {
  background: var(--electric-yellow);
  color: var(--primary);
}
.cta.primary {
  background: var(--electric-orange);
  color: #fff !important;
  box-shadow: 0 4px 18px 0 rgba(255,99,83,0.11);
  letter-spacing: 0.5px;
  font-size: 1.18rem;
  padding: 10px 22px;
  border-radius: 32px;
  margin-left: 12px;
  font-weight: 900;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.13s, color 0.11s;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--electric-pink);
  color: #fff;
}
.cta.secondary {
  background: var(--electric-blue);
  color: #fff !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 32px;
  margin-left: 12px;
  border: none;
  outline: none;
  box-shadow: 0 4px 18px 0 rgba(57,149,255,0.13);
  transition: background 0.15s, box-shadow 0.14s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--electric-green);
  color: var(--primary) !important;
}
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 700;
  transition: box-shadow 0.14s, transform 0.11s, background 0.13s, color 0.11s;
  margin: 12px 8px 0 0;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: var(--electric-yellow);
  color: var(--primary);
  border: none;
  font-size: 2rem;
  padding: 7px 14px;
  border-radius: 8px;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.13s, color 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--electric-pink);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 32px 0 rgba(44,62,92,0.11);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 24px;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--electric-orange);
  border: none;
  color: #fff;
  font-size: 2.1rem;
  padding: 6px 18px;
  border-radius: 10px;
  position: absolute;
  top: 22px;
  right: 23px;
  cursor: pointer;
  z-index: 10001;
  transition: background 0.13s, color 0.14s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--electric-pink);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 70px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #2C3E5C;
  text-decoration: none;
  padding: 18px 36px 18px 36px;
  width: 100%;
  transition: background 0.13s, color 0.13s;
  border-radius: 0 26px 26px 0;
  margin-bottom: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--electric-yellow);
  color: var(--electric-pink);
}

/* Hide desktop menu on mobile and enable mobile toggle */
@media (max-width: 1024px) {
  .desktop-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}


/* Core Content Sections & Grids (FLEX ONLY) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F9F8FD;
  border-radius: 12px;
  box-shadow: 0 4px 14px 0 rgba(57,149,255,0.08);
  padding: 30px 20px;
  flex: 1 1 230px;
  min-width: 210px;
  transition: box-shadow 0.17s, transform 0.14s;
}
.feature-item:hover {
  box-shadow: 0 4px 28px 0 rgba(255,82,134,0.12), 0 2px 8px var(--electric-yellow);
  transform: translateY(-5px) scale(1.02);
}
.feature-item img {
  width: 48px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px #FFD60033);
}

.team-grid, .course-cards, .workshop-cards, .program-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.team-member, .course-card, .workshop-card, .program-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(44,62,92,0.07);
  padding: 30px 24px 28px 24px;
  min-width: 210px;
  flex: 1 1 280px;
  transition: box-shadow 0.14s, transform 0.10s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 2px solid #F5F5F2;
}
.course-card:hover, .team-member:hover, .workshop-card:hover, .program-card:hover {
  border: 2px solid var(--electric-pink);
  box-shadow: 0 4px 32px 6px #FF29AB22;
  transform: scale(1.018) translateY(-4px);
}

.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;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 14px 0 rgba(44,62,92,0.09);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TESTIMONIALS & REVIEWS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FFFDEA;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(255,214,0,0.07);
  min-width: 232px;
  max-width: 610px;
  color: #232323;
  font-size: 1.13rem;
  border: 2px solid #FFD60055;
}
.testimonial-rating {
  font-size: 1.315rem;
  font-weight: bold;
  color: var(--electric-orange);
  letter-spacing: 3px;
  margin-bottom: 4px;
}
.testimonial-attribution {
  font-size: 1rem;
  font-style: italic;
  color: #3C9C74;
}
.before-after {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1rem;
  width: 100%;
}
.before {
  color: var(--primary);
}
.after {
  color: var(--electric-green);
  font-weight: 700;
}

/* Footer Styles */
footer {
  background: #2C3E5C;
  color: #fff;
  padding-top: 32px;
  padding-bottom: 24px;
  margin-top: 40px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo img {
  width: 48px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.04rem;
  letter-spacing: 0.1px;
  transition: color 0.12s, background 0.1s;
  padding: 4px 14px;
  border-radius: 12px;
}
.footer-menu a:hover {
  color: var(--electric-yellow);
  background: #181F2B;
}
.footer-copy {
  font-size: 0.95rem;
  color: #BFD8E3;
  margin-left: auto;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #232323;
  color: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  box-shadow: 0 -8px 36px 2px rgba(255,99,83,0.20);
  flex-wrap: wrap;
  gap: 24px;
  transition: transform 0.28s, opacity 0.31s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
}
.cookie-banner p {
  margin: 0;
  font-size: 1rem;
  color: #fff;
  flex: 1 1 230px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 10px;
  margin-left: 0;
  margin-right: 0;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.15s, color 0.11s;
}
.cookie-banner .accept {
  background: var(--electric-green);
  color: #232323;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: var(--electric-yellow);
}
.cookie-banner .reject {
  background: var(--electric-pink);
  color: #fff;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: var(--electric-orange);
}
.cookie-banner .settings {
  background: #fff;
  color: var(--electric-blue);
  border: 2px solid var(--electric-blue);
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: var(--electric-blue);
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,62,92,0.28);
  z-index: 100010;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #232323;
  padding: 36px 28px 32px 28px;
  border-radius: 22px;
  box-shadow: 0 8px 48px 2px #FF29AB2b;
  width: 94vw;
  max-width: 410px;
  position: relative;
  z-index: 100011;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInScale 0.3s cubic-bezier(.49,1.6,.23,.89);
}
@keyframes fadeInScale {
  from { transform: scale(0.88); opacity: 0.45; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 800;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--electric-pink);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 1.25rem;
  padding: 5px 14px;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category-label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-category-toggle {
  appearance: none;
  outline: 2px solid var(--electric-blue);
  width: 36px;
  height: 18px;
  border-radius: 15px;
  position: relative;
  background: #e9e9ec;
  cursor: pointer;
  transition: background 0.22s, outline 0.13s;
}
.cookie-category-toggle:checked {
  background: var(--electric-green);
  outline: 2px solid var(--electric-green);
}
.cookie-category-toggle:disabled {
  background: #bce7cd;
  outline: 2px solid #aaa;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 19px;
  border-radius: 10px;
  border: none;
  outline: none;
  cursor: pointer;
  background: var(--electric-blue);
  color: #fff;
  transition: background 0.14s, color 0.11s;
}
.cookie-modal-actions .cancel {
  background: #fff;
  color: var(--electric-blue);
  border: 2px solid var(--electric-blue);
}
.cookie-modal-actions .cancel:hover {
  background: var(--electric-blue);
  color: #fff;
}
.cookie-modal-actions .save {
  background: var(--electric-orange);
}
.cookie-modal-actions .save:hover {
  background: var(--electric-pink);
  color: #fff;
}

/* General Links */
a {
  color: var(--electric-blue);
  text-decoration: underline;
  transition: color 0.13s;
}
a:hover, a:focus {
  color: var(--electric-pink);
}

/* LISTS */
ul, ol {
  margin-left: 24px;
  margin-bottom: 14px;
}
li {
  margin-bottom: 7px;
}

/* Responsive Layout: Mobile First */
@media (max-width: 1024px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .container {max-width: 99vw; padding: 0 7px;}
  .feature-grid,
  .team-grid, .course-cards, .workshop-cards, .program-cards, .card-container, .footer-content, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .feature-item, .team-member, .course-card, .workshop-card, .program-card, .testimonial-card, .card {
    min-width: 0;
    width: 100%;
    margin-bottom: 22px;
    padding: 19px 9px;
  }
  section { padding: 28px 7px; margin-bottom: 38px; }
  .footer-content {padding: 0 0;gap: 18px;}
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; }
  .footer-content { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.07rem; }
  section { padding: 14px 2px; }
  .testimonial-card, .feature-item, .course-card, .workshop-card, .team-member { padding: 11px 3px; }
}

/* Micro-Interactions & Transitions */
section, .feature-item, .team-member, .course-card, .workshop-card, .program-card, .testimonial-card, .card {
  transition: box-shadow 0.18s, transform 0.16s, border 0.12s, background 0.22s;
}
.cta, .cta.primary, .cta.secondary, .footer-menu a, .desktop-menu a, .cookie-banner button, .cookie-modal-actions button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.15s, color 0.14s, transform 0.10s, box-shadow 0.12s;
}
.cta:active, .cta.primary:active, .cta.secondary:active {
  transform: scale(0.97);
}
button, .cta, .cookie-banner button, .cookie-modal-actions button {
  outline: none;
  border: none;
}

/* Custom Scrollbar - High Energy */
::-webkit-scrollbar {
  width: 10px;
  background: #eee;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--electric-pink), var(--electric-green), var(--electric-blue));
  border-radius: 8px;
}

/* Ensuring No Overlaps */
.card, .testimonial-card, .feature-item, .team-member, .course-card, .workshop-card, .program-card {
  margin-bottom: 20px;
}
section + section {
  margin-top: 20px;
}

/* Ensure no content overlaps cookie or mobile menu */
body {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  body { padding-bottom: 110px; }
}

/* End of CSS file */
