/* --------------------------------------------------------- */
/* 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #f5f7fa;
  color: #162132;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
ol, ul {
  list-style: inside disc;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #23518C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FF9800;
  text-decoration: underline;
}

/* --------------------------------------------------------- */
/* BRAND TYPOGRAPHY                                         */
/* --------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1C4170;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #162132;
}
strong {
  font-weight: 700;
  color: #1C4170;
}

/* --------------------------------------------------------- */
/* LAYOUT & CONTAINER                                       */
/* --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 16px 0 rgba(32,56,89,0.06), 0 0.5px 2px 0 rgba(44, 67, 116, 0.03);
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
}

/* --------------------------------------------------------- */
/* HEADER & NAVIGATION                                      */
/* --------------------------------------------------------- */
header {
  background: #ffffff;
  box-shadow: 0 2px 12px 0 rgba(35, 81, 140, .09);
  position: sticky;
  top: 0;
  z-index: 1100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 32px;
}
header img {
  height: 48px;
  width: auto;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #23518C;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
nav a:hover,
nav a:focus {
  background: #e7ecf3;
  color: #FF9800;
}
.cta {
  background: #23518C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 26px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  transition: box-shadow 0.2s, background 0.15s, color 0.16s;
  box-shadow: 0 2px 12px 0 rgba(32,56,89,0.10);
  display: inline-block;
  cursor: pointer;
  border: none;
}
.cta:hover, .cta:focus {
  background: #1C4170;
  color: #F6F8FC;
  box-shadow: 0 4px 18px 0 rgba(32,56,89,0.15);
  text-decoration: none;
}

/* --------------------------------------------------------- */
/* MOBILE NAVIGATION & HAMBURGER MENU                       */
/* --------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}
@media (max-width: 1020px) {
  header .container nav, header .container .cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 28px;
    top: 20px;
    z-index: 2100;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: #23518C;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.14s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #f0f6fe;
    outline: 2px solid #FF9800;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85vw;
    max-width: 360px;
    background: #fff;
    box-shadow: -7px 0 32px 0 rgba(44, 67, 116, 0.20);
    transform: translateX(105%);
    transition: transform 0.32s cubic-bezier(.61,-0.19,.53,1.19);
    z-index: 3000;
    padding: 24px 20px 24px 24px;
  }
  .mobile-menu.open {
    transform: translateX(0%);
  }
  .mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 2rem;
    color: #162132;
    margin-bottom: 18px;
    cursor: pointer;
    transition: color 0.18s;
    border-radius: 6px;
    padding: 2px;
  }
  .mobile-menu-close:hover, .mobile-menu-close:focus {
    color: #FF9800;
    outline: 2px solid #FF9800;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
    margin-top: 25px;
  }
  .mobile-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.13rem;
    color: #23518C;
    font-weight: 600;
    padding: 10px 0;
    border-radius: 4px;
    width: 100%;
    transition: background 0.21s, color 0.22s;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: #F5F7FA;
    color: #FF9800;
  }
  body.mobile-menu-open {
    overflow: hidden;
    position: relative;
  }
}

/* --------------------------------------------------------- */
/* FOOTER                                                   */
/* --------------------------------------------------------- */
footer {
  background: #1C4170;
  color: #fff;
  padding: 36px 0 19px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  font-size: 0.95rem;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 6px;
  margin-top: 7px;
}
footer nav a {
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  padding: 3px 2px;
  font-size: 0.97rem;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #FF9800;
  text-decoration: underline;
}
footer div {
  color: #bfd5f0;
}
footer > .container > div:last-child {
  color: #b0c6dc;
  font-size: 0.88em;
  margin-top: 5px;
}

@media (min-width: 900px) {
  footer .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }
  footer nav {
    margin-bottom: 0;
    margin-top: 0;
  }
  footer > .container > div {
    text-align: left;
  }
}

/* --------------------------------------------------------- */
/* CARDS, CONTENT MODULES, FLEX GRIDS                       */
/* --------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 14px 0 rgba(32,56,89,0.07), 0 1px 4px 0 rgba(44, 67, 116, 0.03);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 370px;
  gap: 14px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(44, 67, 116, 0.21), 0 1px 8px 0 rgba(44, 67, 116, 0.06);
  transform: translateY(-3px) scale(1.025);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
  margin-bottom: 32px;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex: 1 1 260px;
  min-width: 240px;
}

@media (max-width: 950px) {
  .content-grid, .card-container {
    gap: 15px;
  }
  .card {
    padding: 18px 8px;
    min-width: 180px;
    max-width: 100%;
  }
  .text-image-section {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .feature-grid, .service-list, .course-list {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .text-section {
    min-width: 0;
    width: 100%;
  }
}

/* --------------------------------------------------------- */
/* FEATURES & ICONIZED GRIDS                                */
/* --------------------------------------------------------- */
.feature-grid, .service-list, .course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 20px;
}
.feature-grid > div, .service-list > div, .course-list > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f5f7fa;
  border-radius: 12px;
  padding: 24px 18px;
  min-width: 220px;
  flex: 1 1 225px;
  transition: box-shadow 0.14s, background 0.2s;
  box-shadow: 0 1px 6px 0 rgba(35,81,140,0.06);
}
.feature-grid > div:hover, .service-list > div:hover, .course-list > div:hover {
  background: #E7ECF3;
  box-shadow: 0 4px 18px 0 rgba(35,81,140,0.11);
}
.feature-grid img, .service-list img, .course-list img {
  height: 44px;
  width: 44px;
  margin-bottom: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-icons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin: 8px 0 18px 0;
}
.feature-icons img {
  width: 48px;
  height: 48px;
  opacity: 0.95;
  transition: filter 0.15s;
}
.feature-icons img:hover {
  opacity: 1;
  filter: drop-shadow(0 2px 8px #ccd6e7);
}

/* --------------------------------------------------------- */
/* TESTIMONIALS / QUOTES                                    */
/* --------------------------------------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 22px;
  background: #F6F8FC;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(44,67,116,0.07);
  font-size: 1.15rem;
  color: #18304d;
  margin-bottom: 20px;
  max-width: 750px;
  transition: box-shadow 0.18s, background 0.22s;
}
.testimonial-card strong {
  color: #1C4170;
  font-size: 1rem;
}
.testimonial-card p {
  margin-right: 12px;
  line-height: 1.6;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(44,67,116,0.13);
  background: #E7ECF3;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    gap: 11px;
    padding: 16px 9px;
  }
}

/* --------------------------------------------------------- */
/* FAQ / ACCORDION STYLE                                    */
/* --------------------------------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.faq-accordion h3 {
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23518C;
  margin-bottom: 8px;
}
.faq-accordion p {
  font-size: 1rem;
  color: #162132;
}

/* --------------------------------------------------------- */
/* MAP SECTION (icon only for now)                          */
/* --------------------------------------------------------- */
.map {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  background: #E7ECF3;
  border-radius: 14px;
  padding: 32px 0;
  margin: 0 auto;
}
.map img {
  width: 82px;
  height: 82px;
}

/* --------------------------------------------------------- */
/* MISCELLANEOUS                                            */
/* --------------------------------------------------------- */
ul {
  margin-left: 24px;
  margin-bottom: 12px;
}
ol {
  margin-left: 28px;
  margin-bottom: 14px;
}
li {
  margin-bottom: 7px;
}
hr {
  border: none;
  border-top: 1px solid #e2e6ef;
  margin: 22px 0;
}

/* --------------------------------------------------------- */
/* BUTTONS & INTERACTION                                    */
/* --------------------------------------------------------- */
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  border: none;
  border-radius: 22px;
  padding: 11px 26px;
  background: #23518C;
  color: #fff;
  transition: background 0.17s, color 0.16s, box-shadow 0.15s;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: #FF9800;
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(35,81,140,0.13);
  outline: none;
}

/* --------------------------------------------------------- */
/* RESPONSIVENESS                                           */
/* --------------------------------------------------------- */
@media (max-width: 600px) {
  .container, .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  h1 {
    font-size: 1.85rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  h3 {
    font-size: 1.03rem;
  }
  .section {
    padding: 12px 2px;
    margin-bottom: 22px;
    border-radius: 9px;
  }
}

/* --------------------------------------------------------- */
/* COOKIE CONSENT BANNER & MODAL                            */
/* --------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4900;
  background: #fff;
  box-shadow: 0 -2px 24px 0 rgba(35,81,140,0.12);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  font-size: 1rem;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  animation: banner-slide-up 0.4s cubic-bezier(.61,-0.19,.53,1.19);
}
@keyframes banner-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  color: #1C4170;
  font-family: 'Roboto', Arial, sans-serif;
  flex: 1 1 60%;
}
.cookie-banner__actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-banner__button {
  border-radius: 19px;
  font-size: 0.98rem;
  padding: 8px 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  transition: background 0.15s, color 0.18s;
}
.cookie-banner__button.accept {
  background: #23518C;
  color: #FFF;
}
.cookie-banner__button.reject {
  background: #CCCCCC;
  color: #1C4170;
}
.cookie-banner__button.settings {
  background: #FF9800;
  color: #fff;
}
.cookie-banner__button:hover, .cookie-banner__button:focus {
  opacity: .94;
  filter: brightness(1.08);
}
@media (max-width:600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 17px 9px;
    font-size: 0.98rem;
  }
  .cookie-banner__actions {
    gap: 7px;
  }
}

.cookie-modal {
  display: none;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(44,67,116,0.31);
  z-index: 5000;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .35s;
}
@keyframes fadeInModal { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal__content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px 0 rgba(35,81,140,0.11);
  padding: 36px 40px 30px 40px;
  max-width: 430px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-pop .39s cubic-bezier(.7,-0.3,.53,1.29);
}
@keyframes modal-pop {
  from { transform: scale(0.91); opacity: 0; } to { transform: scale(1); opacity: 1; }
}
.cookie-modal__close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #18304d;
  margin-bottom: 6px;
  cursor: pointer;
  border-radius: 6px;
  padding: 2px 8px;
  transition: color 0.15s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #FF9800;
  outline: 2px solid #FF9800;
}
.cookie-modal__header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #1C4170;
  margin-bottom: 10px;
}
.cookie-modal__group {
  margin-bottom: 15px;
}
.cookie-modal__group label {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #162132;
  font-size: 1.015rem;
}
.cookie-switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.cookie-switch input[type="checkbox"] {
  display: none;
}
.cookie-switch .slider {
  display: inline-block;
  width: 34px;
  height: 20px;
  background: #E7ECF3;
  border-radius: 13px;
  position: relative;
  transition: background 0.15s;
}
.cookie-switch input:checked + .slider {
  background: #23518C;
}
.cookie-switch .slider:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(40,70,130,0.07);
  transition: transform 0.18s;
}
.cookie-switch input:checked + .slider:before {
  transform: translateX(14px);
}
.cookie-modal__footer {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
@media (max-width: 650px) {
  .cookie-modal__content {
    padding: 18px 7vw 20px 7vw;
  }
}

/* --------------------------------------------------------- */
/* UTILITIES                                                */
/* --------------------------------------------------------- */
.text-center {
  text-align: center;
}
.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.flex-row {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.flex-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}

/* --------------------------------------------------------- */
/* Scrollbar Styling                                        */
/* --------------------------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #f2f3f6;
}
::-webkit-scrollbar-thumb {
  background: #CCCCCC;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ABC0D8;
}

/* --------------------------------------------------------- */
/* Animations/Micro-interactions                            */
/* --------------------------------------------------------- */
.cta, .button, .cookie-banner__button {
  transition: background 0.2s, color 0.18s, box-shadow 0.15s, transform 0.12s;
}
.cta:hover, .button:hover, .cookie-banner__button:hover {
  transform: translateY(-2px) scale(1.025);
}
.card, .testimonial-card, .feature-grid > div {
  transition: box-shadow 0.19s, transform 0.12s;
}
.card:active, .feature-grid > div:active {
  transform: scale(.99);
}

/* --------------------------------------------------------- */
/* ACCESSIBILITY: Focus outline                             */
/* --------------------------------------------------------- */
:focus {
  outline: 2px solid #FF9800 !important;
  outline-offset: 2px;
}

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