/* 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 {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}
body {
  background: #FAF9F6;
  color: #1A1735;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #29387D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #F4B400;
  outline: none;
}
ul, ol {
  margin-left: 24px;
}
button {
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}
strong {
  font-weight: 700;
}

/* BRAND TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  color: #29387D;
  margin-bottom: 0.75em;
  letter-spacing: 0.015em;
  text-shadow: 2px 6px 0 #F4B40018;
}
h2 {
  font-size: 2rem;
  color: #29387D;
  margin-bottom: 0.5em;
}
h3 {
  font-size: 1.35rem;
  color: #F4B400;
  margin-bottom: 0.35em;
}
h4, h5, h6 {
  font-size: 1.15rem;
}
p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
blockquote {
  font-style: italic;
  background: #F4B40011;
  border-left: 5px solid #F4B400;
  margin: 0 0 12px 0;
  padding: 18px 22px 14px 26px;
  color: #29387D;
  border-radius: 12px 24px 12px 24px;
}

/* LAYOUT: CONTAINER & SECTIONS */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 22px;
  padding-right: 22px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 24px 0 #29387D18;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.content-grid, .features-grid, .service-list, .course-list, .testimonial-slider, .service-teaser-cards, .testimonial-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 20px 0 #F4B40021;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 12px 32px 0 #29387D20;
  transform: translateY(-5px) scale(1.01);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 26px 20px 26px;
}

/* HERO & CALL TO ACTION */
.hero {
  margin-bottom: 60px;
  padding: 70px 0 60px;
  background: linear-gradient(97deg, #DFE2F2 55%, #F4B400 80%, transparent 100%);
  border-radius: 0 0 64px 64px;
  box-shadow: 0 8px 36px -14px #29387D33;
  position: relative;
}
.hero .container {
  justify-content: center;
  align-items: center;
}
.hero h1 {
  font-size: 2.6rem;
  line-height: 1.18;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 32px;
}
.cta {
  display: inline-block;
  background: #F4B400;
  color: #29387D;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 14px 36px;
  border-radius: 32px;
  box-shadow: 0 2px 16px 0 #F4B40045;
  letter-spacing: 0.025em;
  border: none;
  margin-top: 6px;
  cursor: pointer;
  transition: background 0.23s, color 0.18s, transform 0.18s, box-shadow 0.22s;
  position: relative;
}
.cta:after {
  content: '';
  position: absolute;
  left: 10%;
  bottom: 10%;
  width: 80%;
  height: 60%;
  background: #F4B40033;
  border-radius: 30px;
  filter: blur(12px);
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cta:hover,
.cta:focus {
  background: #29387D;
  color: #fff;
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
  box-shadow: 0 6px 30px #F4B40065;
}
.cta:hover:after,
.cta:focus:after{
  opacity: 0.5;
}

/* FEATURE (ICON) GRID */
.features-grid > div,
.service-list > div,
.course-list > div,
.service-teaser-cards > div {
  background: #DFE2F2;
  border-radius: 24px;
  box-shadow: 0 1.5px 8px #29387D11;
  padding: 28px 26px 22px 26px;
  min-width: 210px;
  max-width: 340px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.16s, background 0.23s;
  position: relative;
  border: 2.2px solid #F4B40011;
}
.features-grid > div:hover,
.service-list > div:hover,
.course-list > div:hover,
.service-teaser-cards > div:hover {
  box-shadow: 0 6px 22px 0 #29387D23;
  background: #fffbe7;
  transform: scale(1.025) rotate(-1.5deg);
  z-index: 1;
}
.features-grid img, .features-grid svg {
  width: 44px;
  height: auto;
  margin-bottom: 12px;
  filter: drop-shadow(3px 5px 0 #F4B40016);
}
.features-grid h3, .service-list h3, .course-list h3, .service-teaser-cards h3 {
  font-family: 'Montserrat', sans-serif;
  color: #29387D;
  font-size: 1.1rem;
  margin-bottom: 0.4em;
}
.features-grid p, .service-list p, .course-list p{
  color: #373463;
}

/* TESTIMONIALS */
.testimonial-slider,
.testimonial-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2.5px 14px #29387D10;
  border: 1.5px solid #DFE2F2;
  min-width: 240px;
  max-width: 460px;
  flex: 1 1 300px;
  transition: box-shadow 0.18s, transform 0.16s, background 0.13s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  background: #FFFDE6;
  box-shadow: 0 8px 30px #F4B40021;
  transform: scale(1.02) rotate(1deg);
  z-index: 1;
}
.testimonial-card blockquote {
  background: #DFE2F2;
  border-radius: 18px 33px 18px 33px;
  border-left: 4px solid #29387D;
  color: #29387D;
  margin-bottom: 10px;
  padding: 16px 20px 14px 22px;
  font-size: 1rem;
}
.testimonial-card p,
.testimonial-card strong {
  color: #29387D;
  font-weight: 600;
  font-size: 0.95em;
}

/* CONTACT HINT / FOOTER INFO */
.contact-hint {
  margin-top: 18px;
  padding: 12px 22px;
  background: #DFE2F2;
  border-radius: 20px 28px 22px 24px;
  color: #29387D;
  font-size: 1.01em;
}
.footer-info {
  color: #6A6988;
  font-size: 0.96em;
  margin-top: 18px;
  text-align: center;
}

/* HEADER + NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 12px #29387D11;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 74px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header img {
  height: 42px;
  margin-right: 28px;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #29387D;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 22px;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  position: relative;
}
nav a.cta {
  margin-left: 22px;
}
nav a:hover,
nav a:focus {
  background: #DFE2F2;
  color: #F4B400;
  box-shadow: 0 2.5px 6px #F4B40011;
}

/* HAMBURGER MOBILE MENU */
.mobile-menu-toggle {
  background: #F4B400;
  color: #29387D;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 2.1em;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  box-shadow: 0 2px 9px #F4B40017;
  border: none;
  z-index: 102;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #29387D;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #29387D;
  color: #fff;
  z-index: 200;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(0.81,0.38,0.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 48px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 32px;
  background: #F4B400;
  color: #29387D;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.6em;
  z-index: 210;
  box-shadow: 0 2px 9px #F4B40027;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: #F4B400;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 70px;
  align-items: flex-start;
  padding-left: 34px;
  padding-right: 34px;
}
.mobile-nav a {
  display: block;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35em;
  background: none;
  padding: 14px 10px 14px 0;
  border-radius: 0 22px 22px 0;
  box-shadow: none;
  letter-spacing: 0.01em;
  transition: background 0.16s, color 0.16s;
  margin-bottom: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4B40025;
  color: #F4B400;
}
@media (max-width: 1024px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 600px) {
  header .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .mobile-nav {
    padding-left: 16px;
    padding-right: 16px;
  }
  .mobile-menu-close {
    right: 12px;
    top: 12px;
  }
}

/* FOOTER */
footer {
  background: #DFE2F2;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 8px #29387D07;
  padding: 38px 0 25px 0;
  margin-top: 70px;
  font-size: 1em;
}
footer nav {
  gap: 18px;
  font-size: 1em;
  color: #29387D;
  justify-content: center;
}
footer a {
  color: #29387D;
  font-weight: 500;
}
footer a:hover, footer a:focus {
  color: #F4B400;
  text-decoration: underline;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #29387D;
  color: #fff;
  padding: 30px 20px 25px 20px;
  box-shadow: 0 -2.5px 18px #29387D40;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(.8,.2,.25,1);
  transform: translateY(0);
  font-size: 1em;
}
.cookie-banner a {
  color: white;
}
.cookie-banner.hide {
  transform: translateY(160%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 19px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  border: none;
  padding: 10px 28px;
  border-radius: 21px;
  background: #F4B400;
  color: #29387D;
  font-size: 1rem;
  margin: 0 6px;
  box-shadow: 0 2px 5px #F4B40010;
  cursor: pointer;
  transition: background 0.20s, color 0.15s, transform 0.13s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff;
  color: #29387D;
}
.cookie-banner .cookie-settings {
  background: #DFE2F2;
  color: #29387D;
  margin-left: 7px;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #F4B400;
  color: #29387D;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 10001;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  background: #29387D77;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeInModalBg 0.25s;
}
@keyframes fadeInModalBg {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -8px 36px #29387D27;
  padding: 36px 24px 30px 24px;
  color: #29387D;
  width: 100%;
  max-width: 410px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: slideModalUp 0.34s cubic-bezier(.61,.01,.4,1);
}
@keyframes slideModalUp {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.4em;
  margin-bottom: 6px;
  color: #F4B400;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.cookie-category label {
  flex: 2 1 auto;
  font-weight: 600;
  font-size: 1.03em;
  color: #29387D;
}
.cookie-category-toggle {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.toggle-switch {
  width: 42px;
  height: 22px;
  background: #DFE2F2;
  border-radius: 12px;
  position: relative;
  transition: background 0.22s;
}
.toggle-switch[aria-checked="true"] {
  background: #F4B400;
}
.toggle-switch .switch-knob {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.17s;
}
.toggle-switch[aria-checked="true"] .switch-knob {
  transform: translateX(20px);
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .modal-buttons button {
  background: #F4B400;
  color: #29387D;
  border-radius: 21px;
  padding: 10px 24px;
  font-weight: 600;
  border: none;
  font-size: 1rem;
  transition: background 0.2s, color 0.13s;
}
.cookie-modal .modal-buttons button:hover,.cookie-modal .modal-buttons button:focus {
  background: #29387D;
  color: #fff;
}

/* FORM ELEMENTS BASIC STYLES */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1em;
  padding: 11px 13px;
  border: 1.7px solid #DFE2F2;
  border-radius: 18px;
  background: #fff;
  transition: border 0.2s, box-shadow 0.13s;
  margin-bottom: 18px;
}
input:focus, select:focus, textarea:focus {
  border-color: #F4B400;
  outline: none;
}
label {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #29387D;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
  font-size: 1em;
}

/* BUTTON DEFAULTS */
button,
input[type="submit"] {
  transition: background 0.18s, color 0.14s, transform 0.12s;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 18px;
}

/* SECTIONS & FLEXBOX GAPS ADHERENCE */
.section, .content-wrapper, .container, .features-grid, .service-list, .course-list, .service-teaser-cards, .testimonial-slider, .testimonial-gallery {
  gap: 24px;
}
.section:not(:last-child) {
  margin-bottom: 60px;
}
.section:last-child {
  margin-bottom: 30px;
}
/* MANDATORY gap/spacing between cards */
.features-grid > div,
.service-list > div,
.course-list > div,
.service-teaser-cards > div,
.testimonial-card {
  margin-bottom: 20px;
}

/* RESPONSIVENESS */
@media (max-width: 900px) {
  .hero {
    padding: 48px 0 35px;
  }
  .container {
    max-width: 97vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .features-grid, .service-list, .course-list, .service-teaser-cards, .testimonial-slider, .testimonial-gallery {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .section {
    padding: 28px 10px;
    border-radius: 24px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 2rem;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
  .hero p {
    font-size: 1.06rem;
  }
  .section {
    margin-bottom: 38px;
    padding: 22px 4vw;
  }
  .features-grid > div,
  .service-list > div,
  .course-list > div,
  .service-teaser-cards > div {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  header img {
    height: 32px;
  }
  .hero {
    padding: 24px 0 14px 0;
    border-radius: 0 0 38px 38px;
  }
  .section {
    border-radius: 14px;
    padding: 14px 2vw;
  }
  .footer-info {
    font-size: 0.90em;
  }
}

/* CREATIVE ARTISTIC STYLE UNIQUE ELEMENTS */
.hero {
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: '';
  position: absolute;
  left: -90px; top: 25%;
  width: 210px; height: 210px;
  background: #F4B40055;
  filter: blur(60px);
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}
.hero:after {
  content: '';
  position: absolute;
  right: -70px; bottom: 15%;
  width: 115px; height: 115px;
  background: #29387D66;
  filter: blur(30px);
  z-index: 1;
  border-radius: 64% 38% 60% 80%;
  pointer-events: none;
}
.hero .content-wrapper {
  position: relative;
  z-index: 3;
}
.features-grid > div:before {
  content: '';
  display: block;
  position: absolute;
  left: 7px; top: 11px;
  width: 36px;
  height: 22px;
  background: #F4B40021;
  border-radius: 50% 80% 44% 88%;
  filter: blur(10px);
  z-index: 0;
}
.features-grid > div {
  position: relative;
  z-index: 2;
}

/* VISUAL MICRO-INTERACTIONS */
.cta, button, .features-grid > div, .testimonial-card {
  transition: background 0.17s, color 0.18s, box-shadow 0.18s, transform 0.17s;
}
.cta:active, .features-grid > div:active, .testimonial-card:active {
  transform: scale(0.98);
}

/* UNIQUE ACCENTS FOR CREATIVE_ARTISTIC FEEL */
.features-grid > div, .service-list > div, .course-list > div, .service-teaser-cards > div {
  border: 2px dashed #F4B40044;
  box-shadow: 0 4px 20px #F4B4000C;
}
.features-grid > div:after {
  content: '';
  display: block;
  position: absolute;
  right: -14px; top: -16px;
  width: 28px;
  height: 18px;
  background: #29387D13;
  border-radius: 78% 34% 63% 65%;
  z-index: 1;
  pointer-events: none;
}

/* TABLES (if any appear) */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1em;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1.5px 8px #29387D13;
}
th, td {
  padding: 12px 18px;
  border: 1.2px solid #DFE2F2;
}
th {
  background: #F4B40018;
  text-align: left;
}

/* FORMS (if found) */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}

/* Misc. Utilities */
.hide { display: none !important; }
.show { display: flex !important; }

/* --- END CSS --- */

/* FONTS LOAD (REQUIRED for Montserrat/Roboto) You need to load via HTML, but safe fallback here */
