/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  background: #f8f9fa;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* FONT IMPORTS: Montserrat for headlines, Roboto for body */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

html {
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #23395d;
  background: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: #23395d;
  letter-spacing: 0.01em;
  margin-bottom: .7em;
}
h1 {
  font-size: 2.75rem; /*44px*/
  line-height: 1.15;
}
h2 {
  font-size: 2rem; /*32px*/
  margin-top: 16px;
}
h3 {
  font-size: 1.5rem; /*24px*/
}
h4 {
  font-size: 1.2rem;
}

.subheadline, .confirmation-message {
  font-size: 1.25rem;
  font-weight: 500;
  color: #4ea1d3;
  margin-bottom: 20px;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(78,161,211,0.08);
  padding: 40px 28px;
  margin-bottom: 40px;
  animation: fadeInUp 0.72s cubic-bezier(.23,1.25,.32,1) 0.12s both;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: none; }
}

main > section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEXBOX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(34,57,93,0.07), 0 1.5px 5px rgba(78,161,211,0.06);
  transition: transform .19s cubic-bezier(.29,.99,.55,1.01), box-shadow .22s;
  overflow: hidden;
  position: relative;
}
.card:hover {
  transform: translateY(-8px) scale(1.03) rotate(-1.5deg);
  box-shadow: 0 6px 24px rgba(34,57,93,0.11), 0 4px 12px rgba(78,161,211,0.09);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fefdfb;
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 20px 26px 20px 20px;
  box-shadow: 0 2px 12px 0 rgba(34,57,93,0.07);
  position: relative;
  border-left: 5px solid #f7b801;
}
.testimonial-card p {
  color: #23395d;
  font-size: 1.11rem;
  line-height: 1.65;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.testimonial-card span {
  color: #555b6e;
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Navigation */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(34,57,93,0.05);
  position: relative;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #23395d;
  font-size: 1.06em;
  padding: 7px 13px;
  border-radius: 8px;
  transition: background .19s, color .19s;
  font-weight: 700;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: #4ea1d3;
  color: #fff;
  outline: none;
}
.cta-primary {
  display: inline-block;
  background: #f7b801;
  color: #23395d;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  padding: 12px 28px;
  border-radius: 99px;
  margin-left: 20px;
  box-shadow: 0 2.5px 14px rgba(247,184,1,0.25);
  transition: background .18s, color .18s, transform .22s;
  letter-spacing: 1px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #23395d;
  color: #fff;
  transform: scale(1.065) rotate(-2deg);
}
.cta-secondary {
  display: inline-block;
  background: #4ea1d3;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 24px;
  margin-top: 24px;
  cursor: pointer;
  box-shadow: 0 2px 11px rgba(78,161,211,0.18);
  transition: background .17s, color .17s, transform .20s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #f7b801;
  color: #23395d;
  transform: scale(1.05) rotate(1.5deg);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #f7b801;
  color: #23395d;
  width: 44px;
  height: 44px;
  font-size: 2.3rem;
  border-radius: 50%;
  outline: none;
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 110;
  box-shadow: 0 4px 10px rgba(247,184,1,0.14);
  transition: background .19s, color .16s, transform .18s;
}
.mobile-menu-toggle:active {
  transform: scale(1.09) rotate(-8deg);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #fff;
  box-shadow: -4px 0 32px -2px rgba(34,57,93,0.18);
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 0;
  overflow: hidden;
  z-index: 220;
  transition: width .33s cubic-bezier(.66,1.15,.33,1);
  border-radius: 16px 0 0 16px;
}
.mobile-menu.open {
  width: 84vw;
  max-width: 345px;
  transition: width .33s cubic-bezier(.66,1.15,.33,1);
}
.mobile-menu-close {
  background: #23395d;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-self: flex-end;
  margin: 15px 16px 0 0;
  box-shadow: 0 2px 8px rgba(34,57,93,0.07);
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #4ea1d3;
  color: #fff72c;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 26px 0 26px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #23395d;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 12px 0;
  border-radius: 7px;
  transition: background .13s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #4ea1d3;
  color: #fff;
  padding-left: 10px;
}

/* HERO LAYOUT */
.content-wrapper > .cta-primary {
  margin-top: 24px;
}

/* FEATURE GRIDS, LISTS, AND SHOWCASES */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.feature-grid li, .feature-grid > div {
  flex: 1 1 240px;
  min-width: 190px;
  background: #f7fbff;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 1.5px 7px rgba(78,161,211,0.10);
  padding: 22px 10px 20px 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  color: #23395d;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .18s;
}
.feature-grid li strong, .feature-grid > div strong {
  margin-top: 14px;
  font-size: 1.13rem;
  color: #4ea1d3;
}
.feature-grid li:hover, .feature-grid > div:hover {
  box-shadow: 0 8px 24px rgba(78,161,211,0.18), 0 2px 4px rgba(247,184,1,0.08);
  transform: translateY(-3px) scale(1.04) rotate(3deg);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 30px 0;
  padding: 0;
}
.service-list li {
  background: #fffdfa;
  border-left: 8px solid #4ea1d3;
  border-radius: 13px;
  box-shadow: 0 1.5px 6px rgba(247,184,1,0.09);
  padding: 19px 18px 18px 24px;
  font-size: 1.10rem;
  color: #23395d;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin-bottom: 6px;
  transition: box-shadow .16s, border .18s;
  position: relative;
}
.service-list li strong {
  color: #f7b801;
}
.price-highlight, .service-list li span {
  display: inline-block;
  background: #eaf8ff;
  color: #4ea1d3;
  font-size: 1.00rem;
  font-weight: 700;
  margin-top: 6px;
  padding: 2px 13px 3px 13px;
  border-radius: 99px;
  position: relative;
  left: 0;
}

/* USP & impact lists */
.usp-list, .impact-statistics, .discovery-descriptions, .directions, .core-values {
  margin: 20px 0;
}
.usp-list ul, .impact-statistics ul, .discovery-descriptions ul, .direction ul, .core-values ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0;
  padding: 0;
}

.benefit-list, .workshop-benefits {
  margin-top: 23px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1.10rem;
}

@media (min-width: 900px) {
  .feature-grid {
    flex-direction: row;
    gap: 28px;
  }
  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .service-list li {
    flex: 1 1 270px;
    max-width: 340px;
    min-width: 230px;
  }
  .card-container {
    flex-direction: row;
  }
}

/* Project Showcase */
.project-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.project-showcase > div {
  background: #eaf8ff;
  border-radius: 14px;
  min-width: 220px;
  flex: 1 1 262px;
  padding: 18px 18px 17px 18px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(78,161,211,0.075);
  transition: transform .16s;
}
.project-showcase > div:hover {
  transform: scale(1.025) rotate(-2deg);
}
.project-showcase h3 {
  color: #23395d;
  margin-bottom: 7px;
  font-size: 1.21rem;
}

.impact-metrics strong {
  color: #f7b801;
  font-weight: 900;
  display: inline-block;
  margin-bottom: 10px;
}
.impact-metrics ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Timeline (about page) */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  border-left: 5px solid #f7b801;
  padding-left: 22px;
}
.timeline li {
  position: relative;
  padding-bottom: 10px;
  color: #23395d;
  font-size: 1.06rem;
}
.timeline li strong {
  color: #4ea1d3;
  margin-right: 6px;
}
.timeline li:before {
  content: '';
  display: block;
  position: absolute;
  left: -28px;
  top: 5px;
  width: 13px;
  height: 13px;
  background: #f7b801;
  border: 2.5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(78,161,211,0.15);
}

/* Discovery lists */
.discovery-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 28px;
  font-size: 1.09rem;
}

.discovery-descriptions ul {
  gap: 9px;
}

/* Contact & Detail Lists */
.contact-details-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 30px 0 32px 0;
}
.contact-detail {
  background: #f7fbff;
  color: #23395d;
  border-radius: 11px;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.04rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.contact-detail img {
  width: 32px;
  height: 32px;
}

.map-placeholder {
  margin: 24px 0 18px 0;
}

.directions ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Footer */
footer {
  background: #23395d;
  color: #fff;
  padding: 40px 0 0 0;
  font-size: 1.02rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
}
footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
footer nav a {
  color: #4ea1d3;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: color .14s;
}
footer nav a:hover, footer nav a:focus {
  color: #f7b801;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #fff;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  opacity: .78;
}
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: .99rem;
  padding: 20px 0 0 0;
  color: #b9c9e2;
  opacity: .62;
}

/* Animations for playful_dynamic - subtle wiggles, pop, etc */
.cta-primary, .cta-secondary, .card, .feature-grid li {
  will-change: transform;
  transition: box-shadow .20s, background .18s, color .18s, transform .20s;
}
.cta-primary:hover, .cta-secondary:hover {
  animation: pop 0.26s cubic-bezier(.17,1.35,.43,1.13);
}
@keyframes pop {
  0% { transform: scale(1) rotate(0deg); }
  70% { transform: scale(1.08) rotate(2deg); }
  100% { transform: scale(1.01) rotate(-2deg); }
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #fffdfa;
  border-top: 5px solid #f7b801;
  box-shadow: 0 -1.5px 11px rgba(34,57,93,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  justify-content: center;
  padding: 23px 16px 23px 16px;
  font-size: 1.08rem;
  animation: bannerPop .32s cubic-bezier(.18,.99,.31,1);
}
@keyframes bannerPop {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: none; }
}
.cookie-banner__actions {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}
.cookie-banner button {
  background: #4ea1d3;
  color: #fff;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 9px 22px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background .16s, color .16s, transform .18s;
}
.cookie-banner button.cookie-reject {
  background: #e87979;
  color: #fff;
}
.cookie-banner button.cookie-settings {
  background: #f7b801;
  color: #23395d;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  transform: scale(1.05) rotate(-4deg);
  opacity: 0.92;
}

/* Cookie pref modal */
#cookie-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,57,93,0.31);
  z-index: 12000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: modalAppear .20s cubic-bezier(.24,1.23,.45,.98);
}
#cookie-modal.open {
  display: flex;
}
@keyframes modalAppear {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal__dialog {
  background: #fffdfa;
  border-radius: 21px;
  padding: 36px 30px 28px 32px;
  min-width: 275px;
  max-width: 420px;
  box-shadow: 0 10px 32px rgba(78,161,211,0.13);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: fadeInUp .22s cubic-bezier(.23,1.25,.32,1) both;
}
.cookie-modal__dialog h2 {
  font-size: 1.40rem;
  color: #23395d;
  margin-bottom: 12px;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.08rem;
}
.cookie-modal__toggle {
  width: 44px;
  height: 26px;
  background: #e4e4e4;
  border-radius: 13px;
  position: relative;
  transition: background .13s;
  margin-left: 10px;
}
.cookie-modal__toggle input {
  opacity: 0;
  width: 44px;
  height: 26px;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  cursor: pointer;
}
.cookie-modal__toggle .slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  background: #4ea1d3;
  border-radius: 50%;
  box-shadow: 0 1.5px 5px rgba(78,161,211,0.12);
  transition: left .18s cubic-bezier(.42,1,.37,1.06), background .14s;
}
.cookie-modal__toggle input:checked + .slider {
  background: #f7b801;
  left: 22px;
}
/* "Always enabled" state */
.cookie-modal__category[data-essential] .cookie-modal__toggle {
  opacity: 0.35;
  pointer-events: none;
}
.cookie-modal__close {
  position: absolute;
  top: 11px;
  right: 14px;
  background: #e87979;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.3rem;
  text-align: center;
  line-height: 34px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background .15s;
  box-shadow: 0 1.5px 6px rgba(34,57,93,0.07);
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #4ea1d3;
  color: #fffdfa;
}
.cookie-modal__actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal__actions button {
  padding: 8px 24px;
}

/* PLAYFUL DYNAMIC - FUN VISUAL TOUCHES */
section .container:before {
  content: '';
  display: block;
  position: absolute;
  top: -28px;
  left: -32px;
  width: 70px;
  height: 70px;
  background: #f7b801;
  border-radius: 40% 53% 40% 74% / 68% 59% 79% 28%;
  filter: blur(18px);
  opacity: 0.14;
  z-index: 1;
  pointer-events: none;
}
.content-wrapper {
  position: relative;
  z-index: 2;
}

/* Extra fun icon wiggle for accents */
.feature-grid li img, .contact-detail img, .project-showcase > div img {
  animation: wiggle 2.3s infinite ease-in-out;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(-7deg) scale(1.05); }
  15%  { transform: rotate(3deg) scale(1.11); }
  30%  { transform: rotate(-3deg) scale(1.07); }
  45%  { transform: rotate(1.3deg) scale(1.13); }
  60%  { transform: rotate(-1.5deg) scale(1.08); }
  75% { transform: rotate(4deg) scale(1.05); }
}

/****** RESPONSIVE STYLES ******/
@media (max-width: 1120px) {
  .container {
    max-width: 97vw;
  }
  .service-list li {
    flex: 1 1 175px;
    min-width: 140px;
  }
}
@media (max-width:900px) {
  .footer-contact {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}
@media (max-width: 768px) {
  /* Switch to column layout where needed */
  .feature-grid,
  .content-grid,
  .card-container,
  .project-showcase,
  .contact-details-list {
    flex-direction: column !important;
    gap: 20px;
  }
  .timeline, .benefit-list, .workshop-benefits {
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
  .service-list {
    flex-direction: column !important;
    gap: 16px;
  }
  .section {
    margin-bottom: 38px;
    padding: 27px 9px;
  }
  .content-wrapper {
    padding: 26px 7px;
  }
  html {
    font-size: 15px;
  }
  footer .container {
    gap: 15px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  p, .subheadline, .confirmation-message {
    font-size: 1.09rem;
  }
}

@media (max-width: 650px) {
  header .container nav, .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .footer-contact {
    flex-direction: column;
    align-items: center;
    font-size: .95rem;
  }
  .content-wrapper {
    padding: 12px 1.5vw;
  }
}

/***** Extra touch: Hide cookie banner/modal on print *****/
@media print {
  .cookie-banner, #cookie-modal {
    display: none!important;
  }
}