/* ----------------------------------------------------------------- */
/* CSS RESET & BASE STYLES                                           */
/* ----------------------------------------------------------------- */
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,
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #152447;
  background: #F3F7FA;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
a {
  color: #29A19C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #152447;
}
ul, ol {
  margin-left: 20px;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* ----------------------------------------------------------------- */
/* TYPOGRAPHY
/* ----------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  color: #152447;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
h1 { font-size: 2.75rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.2rem; margin-bottom: 8px; }
.section h2 { font-size: 2rem; margin-bottom: 26px; }
p, li, .text-section {
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.text-section {
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
  color: #152447;
}

/* ----------------------------------------------------------------- */
/* LAYOUT BASE CLASSES
/* ----------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-container, .services-cards-grid, .feature-benefit-list, .benefits-list, .solutions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card, .service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 24px rgba(21,36,71,0.05);
  margin-bottom: 20px;
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
}
.card:last-child, .service-card:last-child { margin-bottom: 0; }

.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;
}
.testimonials-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 24px rgba(21,36,71,0.08);
  min-width: 280px;
  flex: 1 1 340px;
  justify-content: space-between;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(21,36,71,0.14);
}
.testimonial-card strong {
  font-size: 1.05rem;
}

.cta-block {
  align-items: center;
  text-align: center;
  background: #fff;
  box-shadow: 0 2px 24px rgba(21,36,71,0.06);
  border-radius: 12px;
  padding-top: 48px;
  padding-bottom: 48px;
  margin-top: 12px;
  gap: 16px;
}

.features-list, .values-list, .benefit-list, .feature-benefit-list, .solutions-list, .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.features-list li, .values-list li, .benefit-list li, .feature-benefit-list li, .solutions-list li, .benefits-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(21,36,71,0.04);
  padding: 18px 16px;
  min-width: 210px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow 0.2s;
  margin-bottom: 0;
}
.features-list li:hover, .feature-benefit-list li:hover, .solutions-list li:hover, .benefit-list li:hover {
  box-shadow: 0 4px 24px rgba(21,36,71,0.12);
}
.features-list img, .feature-benefit-list img, .solutions-list img, .benefit-list img {
  width: 32px; height: 32px; border-radius: 0; margin-bottom: 6px;
}

/* For .course-types-list and .schedule-table */
.course-types-list {
  padding-left: 20px;
  margin-top: 16px;
}
.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(21,36,71,0.05);
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 1rem;
}
.schedule-table th, .schedule-table td {
  padding: 16px 13px;
  text-align: left;
  border-bottom: 1px solid #F3F7FA;
}
.schedule-table tbody tr:last-child td {
  border-bottom: none;
}
.schedule-table th {
  background: #F3F7FA;
  color: #152447;
  font-weight: 600;
}
.level {
  background: #29A19C;
  color: #fff;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 0.95em;
  font-family: 'Roboto', Arial, sans-serif;
}

.map-embed {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0 0 0;
}
.map-embed img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
}

.contact-details {
  margin-top: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
}

/*******************************
  HEADER / NAVIGATION
*******************************/
header {
  padding: 0;
  background: #fff;
  box-shadow: 0 2px 18px rgba(21,36,71,0.06);
  width: 100%;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  max-height: 37px;
  width: auto;
  display: block;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 3px;
  color: #152447;
  position: relative;
  transition: color 0.18s;
}
header nav a:hover,
header nav a:focus {
  color: #29A19C;
}
.cta-primary {
  display: inline-block;
  background: #29A19C;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(41,161,156,0.06);
  margin-left: 10px;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  position: relative;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #152447;
  color: #fff;
  box-shadow: 0 7px 22px rgba(21,36,71,0.13);
}

/*******************************
  HERO SECTION
*******************************/
.hero {
  display: flex;
  align-items: center;
  min-height: 350px;
  background: #F3F7FA;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
  align-items: flex-start;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}
.hero h1 {
  font-size: 2.5rem;
}
.hero p {
  font-size: 1.16rem;
}

/*******************************
  SERVICE CARD GRID
*******************************/
.services-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(21,36,71,0.07);
  padding: 28px 22px 22px 22px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 220px;
  flex: 1 1 260px;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.service-card img {
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
  display: block;
}
.service-card h2 {
  font-size: 1.22rem;
  margin-bottom: 5px;
  color: #152447;
  margin-top: 0px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
}
.service-card .service-price {
  margin-top: 6px;
  font-weight: bold;
  color: #29A19C;
  font-size: 1.01rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.service-card:hover {
  box-shadow: 0 6px 28px rgba(41,161,156,0.16);
  transform: translateY(-3px) scale(1.025);
}

/*******************************
  FOOTER
*******************************/
footer {
  background: #fff;
  border-top: 1px solid #F3F7FA;
  padding-top: 34px;
  padding-bottom: 34px;
  margin-top: 44px;
  box-shadow: 0 -2px 22px rgba(21,36,71,0.07);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  text-align: left;
}
footer nav {
  display: flex;
  gap: 16px;
}
footer nav a {
  color: #29A19C;
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
}
footer nav a:hover, footer nav a:focus {
  color: #152447;
}
footer img {
  max-height: 30px;
  width: auto;
}
footer .text-section {
  font-size: 0.97rem;
  color: #49597B;
}

/*******************************
  BUTTONS & MICRO-INTERACTIONS
*******************************/
button, .cta-primary {
  outline: none;
  border: none;
}
button:focus-visible, .cta-primary:focus-visible {
  outline: 2px solid #29A19C;
  outline-offset: 2px;
}

/*******************************
  UTILITY CLASSES
*******************************/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.commitment p {
  font-size: 1rem;
  color: #152447;
  margin-top: 14px;
}

/*******************************
  RESPONSIVE DESIGN
*******************************/
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
  }
  .services-cards-grid, .feature-benefit-list, .benefits-list, .solutions-list, .testimonials-wrapper, .features-list {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 12px;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  header nav {
    gap: 9px;
    flex-wrap: wrap;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero .container { min-height: 200px; }
  .section, .cta-block {
    padding: 28px 8px;
  }
  .content-wrapper, .features-list, .values-list, .testimonials-wrapper, .services-cards-grid, .feature-benefit-list {
    flex-direction: column;
    gap: 16px;
  }
  .solutions-list, .benefits-list {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card, .service-card, .features-list li {
    min-width: 0;
    width: 100%;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 13px;
    padding: 16px 10px;
  }
  .cta-block {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
  .map-embed {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.15rem; }
  .services-cards-grid, .features-list, .feature-benefit-list, .solutions-list, .benefits-list {
    gap: 8px;
  }
  .section { margin-bottom: 34px; padding: 17px 4px; }
  .testimonial-card, .service-card, .features-list li {
    padding: 13px 7px;
  }
}

/*******************************
  MOBILE NAVIGATION
*******************************/
.mobile-menu-toggle {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 9999;
  background: #fff;
  color: #29A19C;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  border: none;
  box-shadow: 0 2px 16px rgba(41,161,156,0.08);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:focus-visible {
  outline: 2px solid #29A19C;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 10px 60px rgba(21,36,71,0.18);
  z-index: 10000;
  transform: translateX(100vw);
  transition: transform 0.36s cubic-bezier(.5,.2,.3,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: #29A19C;
  font-size: 2.2rem;
  border: none;
  align-self: flex-end;
  margin: 22px 22px 8px 0px;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.18s;
}
.mobile-menu-close:hover {
  background: #29A19C;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 44px 0 0 36px;
  width: 88vw;
}
.mobile-nav a {
  color: #152447;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  text-decoration: none;
  padding: 12px 8px;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F3F7FA;
  color: #29A19C;
}

@media (max-width: 1024px) {
  header nav, header .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  header nav,
  header .cta-primary {
    display: flex !important;
  }
}

/*******************************
  COOKIE CONSENT BANNER
*******************************/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #fff;
  color: #152447;
  box-shadow: 0 -3px 34px rgba(21,36,71,0.14);
  padding: 20px 16px 20px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 11000;
  gap: 15px;
  font-size: 1rem;
  opacity: 1;
  transition: opacity 0.28s, transform 0.26s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120px);
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 999px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 9px rgba(41,161,156,0.06);
  font-weight: 600;
  margin-right: 4px;
  transition: background 0.14s, color 0.14s;
}
.cookie-banner .accept {
  background: #29A19C;
  color: #fff;
}
.cookie-banner .accept:hover { background: #152447; color: #fff; }
.cookie-banner .reject {
  background: #fff;
  color: #29A19C;
  border: 1.5px solid #29A19C;
}
.cookie-banner .reject:hover { background: #F3F7FA; color: #152447; border-color: #152447; }
.cookie-banner .settings {
  background: #F3F7FA;
  color: #152447;
}
.cookie-banner .settings:hover { background: #29A19C; color: #fff; }

/*******************************
  COOKIE SETTINGS MODAL
*******************************/
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(21,36,71,0.28);
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.26s;
}
.cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 46px rgba(21,36,71,0.16);
  max-width: 430px;
  width: 90vw;
  padding: 44px 28px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 12001;
  opacity: 1;
  transform: translateY(0);
  animation: cookieModalIn 0.42s cubic-bezier(.6,.2,.3,1);
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translateY(100px) scale(.93); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F3F7FA;
  padding: 10px 16px;
  border-radius: 8px;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1rem;
  color: #152447;
}
.cookie-category input[type="checkbox"] {
  accent-color: #29A19C;
  width: 20px; height: 20px;
}
.cookie-category .essential {
  opacity: 0.65;
  pointer-events: none;
}
.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal-buttons button {
  font-size: 1rem;
}

/*******************************
  MISCELLANEOUS & UTILITY
*******************************/
.faq-section {
  padding: 18px 16px;
  background: #F3F7FA;
  border-radius: 10px;
  margin-top: 18px;
  font-size: 1rem;
}
.text-section {
  margin-bottom: 24px;
}
.commitment {
  margin-top: 18px;
  background: #F3F7FA;
  border-radius: 8px;
  padding: 14px 14px 14px 16px;
}
.service-overview {
  background: #F3F7FA;
  border-radius: 10px;
  padding: 18px 14px;
  margin-top: 14px;
  color: #374A6B;
}
::-webkit-input-placeholder { color: #8FA2B6; }
::-moz-placeholder { color: #8FA2B6; }
:-ms-input-placeholder { color: #8FA2B6; }
::placeholder { color: #8FA2B6; }

/*******************************
  SCANDINAVIAN SUBTLE SHADOWS
*******************************/
.card, .service-card, .testimonial-card,
.features-list li, .feature-benefit-list li, .solutions-list li {
  box-shadow: 0 2px 16px rgba(21,36,71,0.06);
  border: 1px solid #E1E6EF;
}
.card:hover, .service-card:hover,
.features-list li:hover, .feature-benefit-list li:hover {
  box-shadow: 0 6px 27px rgba(41,161,156,0.10);
  border-color: #29A19C20;
}

/*******************************
  SCROLLBAR (Modern look)
*******************************/
body::-webkit-scrollbar { width: 9px; background: #F3F7FA; }
body::-webkit-scrollbar-thumb { background: #E1E6EF; border-radius: 7px; }
