/* --- RESET & BASICS --- */
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,
main, 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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F7F7F7;
  color: #203060;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  background: #F7F7F7;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- BRAND COLORS --- */
:root {
  --clr-primary: #203060;
  --clr-secondary: #62B6CB;
  --clr-accent: #F7F7F7;
  --clr-electric-pink: #FE0096;
  --clr-electric-yellow: #FFD600;
  --clr-electric-lime: #2BED72;
  --clr-card-bg: #fff;
  --clr-neutral-100: #F7F7F7;
  --clr-neutral-900: #203060;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* --- TYPOGRAPHY: Vibrant, Bold --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #203060;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol, li, blockquote, table {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #2d415c;
}
p {
  margin-bottom: 16px;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
}
blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--clr-primary);
  border-left: 4px solid var(--clr-secondary);
  padding-left: 16px;
  margin-bottom: 18px;
  background: #ecfaff;
}
a {
  color: var(--clr-electric-pink);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--clr-primary);
}

/* --- FLEXBOX LAYOUT PATTERNS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(32,48,96,0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--clr-card-bg);
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(32,48,96,0.10);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 18px 0 rgba(254,0,150,0.18);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}
.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;
  background: #fffbe6;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(255, 214, 0, 0.10);
  margin-bottom: 20px;
  border-left: 6px solid var(--clr-electric-yellow);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- VIBRANT ENERGETIC: Buttons --- */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, var(--clr-secondary), var(--clr-electric-pink));
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 16px 36px;
  margin: 16px 0 4px 0;
  cursor: pointer;
  box-shadow: 0 3px 16px 0 rgba(98,182,203,0.16);
  transition: background 0.22s, transform 0.18s, box-shadow 0.18s;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--clr-electric-pink), var(--clr-secondary));
  color: #fff;
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 6px 36px 0 rgba(254,0,150,0.10);
}
button, .cta-button, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
}

/* --- HEADER & NAVBAR --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(32,48,96,0.09);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
}
header .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
header > a > img {
  width: 153px;
  padding: 18px 0 18px 26px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 18px;
}
header nav a {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.04rem;
  color: var(--clr-primary);
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.18s;
  padding: 5px 4px;
}
header nav a:hover, header nav a:focus, header nav a.active {
  color: var(--clr-electric-pink);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--clr-secondary);
  cursor: pointer;
  padding: 6px 20px 6px 12px;
  border-radius: 6px;
  z-index: 120;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 200;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.79,0.28,0.39,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow-y: auto;
  box-shadow: 2px 0 18px rgba(32,48,96,0.13);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  color: var(--clr-electric-pink);
  font-size: 2.4rem;
  background: none;
  border: none;
  margin: 24px 24px 16px 12px;
  cursor: pointer;
  padding: 6px;
  align-self: flex-end;
  border-radius: 6px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 12px 32px 64px 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--clr-primary);
  padding: 18px 0 8px 0;
  border-bottom: 2px solid #ecebfa;
  transition: color 0.19s;
  border-radius: 4px;
}
.mobile-nav a:active, .mobile-nav a:hover {
  color: var(--clr-electric-pink);
  background: #fff0f8;
}

/* --- MAIN LAYOUT --- */
main {
  min-height: 60vh;
  width: 100%;
}

/* --- FEATURE GRID, TEAM LIST, AWARDS --- */
.feature-grid, .team-list, .workshop-list, .awards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-grid > div, .team-list > div, .workshop-list > div, .awards-grid > div {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(32, 48, 96, 0.05);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.22s, transform 0.18s;
  position: relative;
}
.feature-grid > div:hover, .workshop-list > div:hover, .awards-grid > div:hover {
  box-shadow: 0 8px 24px 0 rgba(98,182,203,0.14);
  transform: translateY(-4px);
  z-index: 1;
}
.feature-grid img, .team-list img, .awards-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
}

/* --- TESTIMONIALS --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.testimonial-card {
  flex: 1 1 310px;
  background: #fffbe6;
  border-left: 6px solid var(--clr-electric-yellow);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(255,214,0,0.07);
  color: var(--clr-primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 10px;
}
.testimonial-card blockquote {
  color: var(--clr-primary);
  font-family: var(--font-display);
  background: transparent;
  border: none;
  padding-left: 0;
  margin-bottom: 10px;
}
.testimonial-card span {
  font-size: 1rem;
  font-weight: bold;
  color: #203060;
}

/* --- TABLES --- */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 10px rgba(98,182,203,0.07);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  font-size: 1rem;
}
thead {
  background: var(--clr-secondary);
  color: #fff;
}
th, td {
  padding: 14px 16px;
  border-bottom: 1px solid #ececec;
}
th {
  text-align: left;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.1rem;
}
tr:last-child td {
  border-bottom: none;
}

/* --- Location Map --- */
.location-map {
  margin-top: 12px;
  background: #ecfaff;
  border-radius: 10px;
  padding: 12px 18px;
  color: var(--clr-primary);
  font-size: 1rem;
}

/* --- INTERACTIVE ELEMENTS --- */
.interactive-elements {
  margin: 28px 0;
  padding: 20px 23px;
  background: var(--clr-secondary);
  color: #fff;
  border-radius: 13px;
  font-family: var(--font-display);
  font-weight: 600;
  box-shadow: 0 1px 8px rgba(98,182,203,0.09);
}

/* --- FOOTER --- */
footer {
  width: 100%;
  background: #203060;
  color: #fff;
  box-shadow: 0 -2px 9px rgba(98,182,203,0.07);
  margin-top: 60px;
  padding: 0 0 0 0;
}
footer .container {
  padding: 0 18px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0 16px 0;
}
footer nav {
  display: flex;
  gap: 28px;
  margin-bottom: 9px;
}
footer nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--clr-electric-yellow);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  font-size: 1rem;
  color: #e7effa;
}
.footer-contact img {
  width: 22px;
  vertical-align: middle;
  margin-right: 6px;
}
footer small {
  color: #ceecf7;
  font-size: 0.98em;
  margin-top: 14px;
  font-family: var(--font-body);
}

/* --- COOKIE BANNER --- */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  color: var(--clr-primary);
  box-shadow: 0 -3px 32px 0 rgba(32,48,96,0.11);
  z-index: 8000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 16px 22px 22px 22px;
  font-family: var(--font-display);
  font-size: 1.09rem;
  transition: transform 0.29s cubic-bezier(0.66,1.13,0.61,0.98), opacity 0.29s;
  transform: translateY(0);
}
#cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
#cookie-banner .cookie-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}
.cookie-btn {
  border: none;
  outline: none;
  border-radius: 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: bold;
  padding: 12px 28px;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.14s;
  box-shadow: 0 2px 8px 0 rgba(98,182,203,0.07);
}
.cookie-btn.accept {
  background: var(--clr-electric-lime);
  color: var(--clr-primary);
}
.cookie-btn.accept:hover {
  background: var(--clr-electric-yellow);
  color: var(--clr-primary);
}
.cookie-btn.reject {
  background: #eee;
  color: var(--clr-electric-pink);
}
.cookie-btn.reject:hover {
  background: #fff0f8;
  color: var(--clr-primary);
}
.cookie-btn.settings {
  background: transparent;
  border: 2px solid var(--clr-secondary);
  color: var(--clr-secondary);
}
.cookie-btn.settings:hover {
  background: var(--clr-secondary);
  color: #fff;
}

/* --- COOKIE SETTINGS MODAL --- */
#cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10001;
  top: 0;
  left: 0; right: 0;
  bottom: 0;
  background: rgba(32,48,96,0.50);
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
}
#cookie-modal-overlay.open {
  display: flex;
}
#cookie-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 400px;
  width: 95vw;
  padding: 38px 26px 30px 26px;
  box-shadow: 0 4px 42px 0 rgba(32,48,96,0.19);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: fadeInModal 0.37s;
}
@keyframes fadeInModal { from { opacity: 0; transform: translateY(24px);} to { opacity:1; transform:translateY(0);} }
#cookie-modal h2 {
  font-size: 1.25rem;
  color: var(--clr-primary);
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-weight: 700;
}
.cookie-category {
  margin-bottom: 13px;
  background: #f8fbfe;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
}
.cookie-category label {
  flex:1;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--clr-primary);
  font-weight: bold;
}
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 23px;
  vertical-align: middle;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #eee;
  transition: background 0.2s;
  border-radius: 12px;
}
.cookie-toggle input:checked + .cookie-slider {
  background-color: var(--clr-secondary);
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 2.5px;
  background-color: white;
  transition: transform 0.2s;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(32,48,96,0.11);
}
.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(19px);
}
#cookie-modal .modal-btn-row {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 14px;
}
#cookie-modal .modal-close-btn {
  background: none;
  border: none;
  color: var(--clr-electric-pink);
  font-size: 1.5rem;
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
}

/* --- MISC --- */
.text-section {
  background: #f6f9fe;
  padding: 24px 22px 20px 22px;
  border-radius: 13px;
  box-shadow: 0 1px 10px rgba(98,182,203,0.05);
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.text-section ul {
  margin-left: 24px;
}
.text-section li {
  margin-bottom: 8px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
  .container {
    max-width: 980px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 800px;
  }
  .feature-grid > div, .testimonial-card, .team-list > div, .workshop-list > div, .awards-grid > div {
    flex: 1 1 100%;
  }
  .feature-grid, .team-list, .workshop-list, .awards-grid, .testimonial-slider {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.36rem;
  }
  header {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 0;
    min-height: 60px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 16px;
    top: 18px;
    background: none;
    border: none;
    z-index: 180;
  }
  .cta-button {
    font-size: 1.02rem;
    padding: 13px 25px;
    margin: 13px 0 3px 0;
  }
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 15px;
    padding: 2px 0;
  }
  .card-container, .feature-grid, .team-list, .workshop-list, .awards-grid, .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .card, .feature-grid > div, .team-list > div, .workshop-list > div, .awards-grid > div, .testimonial-card {
    width: 100%;
    min-width: 0;
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
  .section {
    padding: 28px 6px;
    margin-bottom: 36px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .testimonial-slider {
    gap: 12px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 560px) {
  h1 {
    font-size: 1.34rem;
  }
  h2 {
    font-size: 1.07rem;
  }
  header > a > img {
    width: 116px;
    padding: 12px 0 14px 7px;
  }
  .cta-button {
    padding: 11px 16px;
    font-size: 0.93rem;
  }
  .footer-contact,
  footer nav {
    font-size: 0.91em;
  }
  .section {
    padding: 16px 2px;
  }
  table th, table td {
    padding: 8px 8px;
    font-size: 0.96em;
  }
  .text-section {
    padding: 11px 6px 11px 6px;
    font-size: 0.98em;
  }
}
/* --- MICRO-INTERACTIONS --- */
@media (hover: hover) and (pointer: fine) {
  .feature-grid > div:hover, .workshop-list > div:hover, .awards-grid > div:hover {
    box-shadow: 0 12px 32px 0 rgba(254,0,150,0.12);
    border-color: var(--clr-electric-pink);
    transition: box-shadow 0.13s, border-color 0.22s;
  }
}

/* --- Z-INDEX SAFETY LAYERING --- */
.mobile-menu,
#cookie-banner,
#cookie-modal-overlay {
  z-index: 10000 !important;
}

/* --- NO GRID, NO COLUMNS: FLEX ONLY --- */
/* Compliance: All layouts use only Flexbox, no CSS Grid or columns. */