/* CSS RESET & NORMALIZATION */
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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #F6F9FB;
  color: #0A2540;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #0A2540; text-decoration: none; transition: color 0.2s; }
a:focus { outline: 2px solid #6BC1F7; outline-offset: 2px; }
ul, ol { padding-left: 24px; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #0A2540;
  font-weight: 700;
}
hr { border: 0; border-top: 1px solid #EFF3F6; margin: 40px 0; }

/* TYPOGRAPHY SCALE */
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 600; }
h4 { font-size: 1.125rem; margin-bottom: 8px; font-weight: 600; }
p, li, dd { font-size: 1rem; line-height: 1.7; margin-bottom: 12px; }
strong { font-weight: 700; }

/* GLOBAL CONTAINER */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 700px;
  margin: 0 auto;
}

/* SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: #0A2540;
  color: #FFFFFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 36px;
  border: none;
  border-radius: 28px;
  box-shadow: 0 2px 8px rgba(10,37,64, 0.08);
  transition: background 0.22s, box-shadow 0.22s, transform 0.18s;
  cursor: pointer;
  margin-top: 10px;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #6BC1F7;
  color: #0A2540;
  box-shadow: 0 4px 20px rgba(107,193,247,0.20);
  transform: translateY(-2px) scale(1.02);
}
/* Utility btn for cookie banner */
.btn-secondary {
  background: #6BC1F7;
  color: #0A2540;
  font-weight: 700;
  border-radius: 24px;
  padding: 12px 26px;
  border: none;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #0A2540;
  color: #FFFFFF;
}
.btn-tertiary {
  background: #EFF3F6;
  color: #0A2540;
  font-weight: 700;
  border-radius: 24px;
  padding: 12px 26px;
  border: none;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: 1px solid #B6C6D7;
}
.btn-tertiary:hover, .btn-tertiary:focus {
  background: #e1ebf3;
}

/* HEADER & NAVIGATION */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(10,37,64,0.05);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 998;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}
header img {
  height: 38px;
  margin-right: 28px;
  margin-bottom: 0;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #0A2540;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 1rem;
  padding: 8px 4px;
  border-radius: 2px;
  transition: color 0.18s, background 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #6BC1F7;
  background: #EFF3F6;
}

/* Hide burger by default, show on mobile */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #0A2540;
  font-size: 2.1rem;
  border: none;
  margin-left: 12px;
  cursor: pointer;
  align-self: center;
  z-index: 1011;
  padding: 8px 10px;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #6BC1F7;
  background: #EDF5FB;
  border-radius: 8px;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: 0 6px 30px rgba(10,37,64,0.12);
  z-index: 1201;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.88,0,.33,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 28px 6px 0;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #0A2540;
  cursor: pointer;
  z-index: 1202;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #6BC1F7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 40px 24px;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #0A2540;
  padding: 10px 0;
  width: 100%;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EFF3F6;
  color: #6BC1F7;
}

/* HIDE DESKTOP NAV & SHOW BURGER MENU ON MOBILE */
@media (max-width: 1024px) {
  header .container {
    flex-direction: row;
    gap: 5px;
  }
  .main-nav {
    display: none;
  }
  .btn-primary {
    padding: 12px 26px;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 600px) {
  header img {
    height: 28px;
    margin-right: 18px;
  }
  .mobile-menu-close {
    margin: 18px 12px 8px 0;
    font-size: 2rem;
  }
  .mobile-nav {
    padding: 18px 18px 14px;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(rgba(244,249,253,0.96),rgba(255,255,255,0.92)), #EFF3F6;
  padding-top: 54px;
  padding-bottom: 54px;
}
.hero .container {
  align-items: flex-start;
  justify-content: center;
}
.hero .text-section h1 {
  color: #0A2540;
  font-size: 2.7rem;
  margin-bottom: 10px;
}
.hero .text-section p {
  font-size: 1.25rem;
  margin-bottom: 26px;
  color: #28496a;
}

/* CARD & FEATURE GRIDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(10,37,64,0.04);
  padding: 32px 28px 24px 28px;
  min-width: 256px;
  max-width: 320px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.15s;
}
.feature-item img {
  width: 41px;
  height: 41px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 24px rgba(107,193,247,0.17);
  transform: translateY(-3px) scale(1.015);
}

.overview-card, .course-item {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(10,37,64,0.06);
  padding: 28px 20px 18px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.22s;
}
.overview-card:hover, .course-item:hover {
  box-shadow: 0 6px 30px rgba(107,193,247,0.14);
}
.features-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 24px;
}
.benefits-grid div {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F6F9FB;
  border-radius: 8px;
  padding: 14px 20px;
  font-weight: 500;
  color: #1b3c5d;
  min-width: 180px;
}

@media (max-width: 900px) {
  .feature-grid, .features-overview, .course-list, .benefits-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .overview-card, .feature-item { max-width: 100%; min-width: 0; }
}

/* TESTIMONIAL LIST & CARD */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 24px 20px 24px;
  background: #F6F9FB;
  border-radius: 10px;
  box-shadow: 0 1px 7px rgba(10,37,64,0.05);
  max-width: 370px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  color: #162941;
  font-size: 1.05rem;
  min-width: 220px;
  min-height: 143px;
  transition: box-shadow 0.18s;
}
.testimonial-card strong {
  color: #0A2540;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card span {
  color: #6BA2CE;
  font-size: 0.97rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 18px rgba(107,193,247,0.17);
}

/* CARD CONTAINER & ALIGNMENT */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(10,37,64,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  min-width: 220px;
}

/* CONTENT GRID EXAMPLE */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
/* TEXT IMAGE SECTION */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CONTACT CTA */
.contact-cta {
  background: #F6F9FB;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 1px 7px rgba(10,37,64,0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  vertical-align: middle;
}
.location-map {
  margin-top: 15px;
  background: #EDF5FB;
  border-radius: 8px;
  padding: 14px 20px;
}

/* FOOTER */
footer {
  background: #0A2540;
  color: #FFFFFF;
  font-size: 1rem;
  padding: 32px 0 14px 0;
  margin-top: 40px;
}
.footer-menu {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-menu a {
  color: #6BC1F7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #FFFFFF;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
  font-size: 0.99rem;
  opacity: 0.94;
}

/* DOWNLOADS LIST */
.downloads-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.downloads-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #EDF5FB;
  border-radius: 7px;
  padding: 13px 19px;
  font-weight: 500;
  color: #172C4B;
}
.downloads-list img {
  width: 24px;
  height: 24px;
}

/* FAQS */
.faqs {
  margin: 22px 0;
}
.faqs dt {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 18px;
  font-weight: 600;
  color: #28496a;
}
.faqs dd {
  margin-left: 0;
  margin-bottom: 8px;
  color: #0A2540;
}

/* WORKSHOP LIST */
.workshop-list {
  margin-left: 0;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* CALENDAR TEASER & REGISTRATION */
.calendar-teaser, .registration-info {
  background: #EFF3F6;
  border-radius: 8px;
  padding: 16px 22px;
  margin-bottom: 16px;
  color: #1a3956;
}

/* OL, UL RESET */
ol, ul {
  list-style-position: outside;
  margin-bottom: 18px;
  color: #0A2540;
}
.text-section ul, .text-section ol {
  margin-top: 0;
  margin-bottom: 18px;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  section, .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .container {
    padding: 0 10px;
  }
  .feature-grid, .features-overview, .testimonial-list, .course-list, .benefits-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .feature-item, .overview-card, .course-item, .card {
    max-width: 100%;
    min-width: 0;
  }
  .footer-menu {
    gap: 18px;
    font-size: 0.98rem;
  }
  .calendar-teaser, .registration-info {
    padding: 10px 11px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 500px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.13rem; }
  .btn-primary, .btn-secondary, .btn-tertiary {
    font-size: 1rem;
    padding: 12px 18px;
  }
  .hero {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

/* SPACING, CARD, GAP RULES */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0A2540;
  color: #FFFFFF;
  box-shadow: 0 0 16px 1px rgba(10,37,64,0.10);
  padding: 22px 40px 22px 43px;
  font-size: 1.09rem;
  line-height: 1.5;
  border-radius: 16px 16px 0 0;
  max-width: 670px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  transition: opacity 0.38s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px 18px 13px;
    max-width: 99vw;
  }
  .cookie-banner .cookie-actions {
    margin-top: 8px;
    gap: 8px;
  }
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(10,37,64,0.42);
  z-index: 1400;
  display: none;
  transition: opacity 0.26s;
}
.cookie-modal-backdrop.open {
  display: block;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 54%;
  min-width: 310px;
  max-width: 95vw;
  width: 410px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 30px 5px rgba(10,37,64,0.16);
  z-index: 1401;
  padding: 38px 30px 30px 30px;
  transform: translate(-50%,-50%) scale(1);
  opacity: 1;
  transition: opacity 0.32s, transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-46%) scale(0.98);
}
.cookie-modal h2 {
  color: #0A2540;
  font-size: 1.3rem;
  margin-bottom: 9px;
  font-weight: 700;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 13px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #0A2540;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #2dcbe2;
}
@media (max-width: 480px) {
  .cookie-modal {
    min-width: 0;
    width: 98vw;
    padding: 18px 8px 18px 8px;
  }
}

/* COOKIE SWITCH TOGGLE */
.cookie-switch {
  width: 36px;
  height: 20px;
  position: relative;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 36px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #b6c6d7;
  border-radius: 11px;
  transition: background 0.2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #6BC1F7;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background: white;
  border-radius: 50%;
  transition: transform 0.22s;
  box-shadow: 0 1px 2px rgba(16,33,41,0.14);
  display: block;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
}

/* FORM & INPUTS (for possible future forms) */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 10px;
  border: 1px solid #d1e1ef;
  border-radius: 6px;
  background: #F6F9FB;
  transition: border 0.18s;
  margin-bottom: 18px;
  width: 100%;
  color: #0A2540;
}
input:focus, select:focus, textarea:focus {
  border: 1.7px solid #6BC1F7;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 4px;
}

/* ANIMATIONS & TRANSITIONS */
[data-animate], .fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s, transform 0.39s;
}
[data-animate].animated, .fade-in.visible {
  opacity: 1 !important;
  transform: none;
}

/* UTILITY */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* VISUAL HIERARCHY & WHITE SPACE ENHANCEMENT */
.text-section {
  margin-bottom: 18px;
}
.card, .feature-item, .overview-card, .testimonial-card {
  margin-bottom: 20px;
}
.section > *, section > * {
  margin-bottom: 24px;
}
.content-wrapper > *:last-child {
  margin-bottom: 0 !important;
}


/* ACCESSIBILITY: High contrast for main action buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
  outline: none;
}
.btn-primary:focus, .btn-secondary:focus, .btn-tertiary:focus {
  box-shadow: 0 0 0 3px #B2E2F9;
  outline: none;
}

/* Misc */
table { border-collapse: collapse; width: 100%; margin-bottom: 24px; }
th, td { border: 1px solid #EFF3F6; padding: 10px 8px; }
th { background: #F6F9FB; font-weight: 600; }

/* Hide elements not needed */
[hidden] { display: none !important; }

/* END OF STYLE.CSS */