/* 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F6F6F4;
  color: #1a243d;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  border-style: none;
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
  background: none;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #123072;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #123072;
}
p, ul li, ol li {
  color: #3C4A5B;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(28,40,60,0.05);
}

/* HEADER & NAVIGATION */
header {
  background: #FFF;
  box-shadow: 0 2px 8px rgba(18,48,114,0.04);
  position: relative;
  z-index: 10;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 0;
  justify-content: flex-start;
}
.logo-link img {
  width: 160px;
  margin-right: 14px;
}
.main-nav a {
  font-size: 1rem;
  color: #123072;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.85;
  padding: 8px 6px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F3BE3C;
  color: #123072;
  opacity: 1;
}
.main-nav .cta-btn {
  background: #123072;
  color: #FFF;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 28px;
  box-shadow: 0 1px 4px rgba(18,48,114,0.08);
  margin-left: 18px;
  transition: background 0.2s, transform 0.2s;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: #F3BE3C;
  color: #123072;
  transform: translateY(-2px) scale(1.05);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 23px;
  background: #FFF;
  font-size: 2.2rem;
  color: #123072;
  border-radius: 8px;
  padding: 6px 12px;
  box-shadow: 0 2px 8px rgba(18,48,114,0.04);
  z-index: 1010;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #F3BE3C;
  color: #0E2450;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F6F6F4;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.7,.1,.4,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: #123072;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 20px 24px 0 0;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F3BE3C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
  width: 100%;
  padding-left: 28px;
}
.mobile-nav a {
  color: #123072;
  font-size: 1.3rem;
  padding: 12px 22px;
  letter-spacing: 0.01em;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3BE3C;
  color: #123072;
}

/* HERO SECTION */
.hero-section {
  padding: 60px 0 40px 0;
  background: #F6F6F4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-section h1 {
  color: #123072;
  font-size: 2.8rem;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}
.hero-section p {
  max-width: 600px;
  font-size: 1.16rem;
  margin-bottom: 28px;
  color: #3C4A5B;
}
.hero-section .cta-btn {
  background: #F3BE3C;
  color: #123072;
  padding: 14px 36px;
  font-size: 1.12rem;
  font-weight: 700;
  border-radius: 32px;
  transition: background 0.18s, color 0.18s, transform 0.2s;
  box-shadow: 0 3px 12px rgba(243,190,60,0.08);
}
.hero-section .cta-btn:hover, .hero-section .cta-btn:focus {
  background: #123072;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* SECTION & CARD LAYOUTS */
.features-section, .services-section, .courses-section, .team-section, .testimonials-section, .cta-section, .info-section, .privacy-section, .gdpr-section, .cookies-section, .terms-section, .thank-you-section, .contact-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(28,40,60,0.05);
}

.feature-grid, .course-grid, .testimonial-grid, .instructor-grid, .levels-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 0 0;
}
.feature-item, .course-card, .testimonial-card, .instructor-profile, .level-item {
  background: #F6F6F4;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 2px 8px rgba(36,35,30,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  min-width: 210px;
  flex: 1 1 250px;
}
.feature-item img, .level-item img, .unique-points-list img, .experience-highlights img {
  width: 40px;
  margin-bottom: 0;
}

.course-card ul {
  margin-top: 14px;
}

.level-item {
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border: 1.5px solid #E1E4EA;
  background: #FFF;
}

/* Testimonials */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 24px 20px 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(36,50,90,0.07);
  min-width: 250px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(36,50,90,0.13);
  transform: translateY(-4px) scale(1.015);
}
.testimonial-stars {
  color: #F3BE3C;
  font-size: 1.25rem;
  letter-spacing: 1.5px;
  line-height: 1;
  font-weight: 700;
}
.testimonial-author {
  color: #123072;
  font-size: 0.98rem;
  font-weight: 700;
  margin-top: 8px;
}

/* CTA Section */
.cta-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #123072;
  color: #fff;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(18,48,114,0.05);
}
.cta-section h2 {
  color: #fff;
  margin-bottom: 18px;
}
.cta-section p {
  color: #F6F6F4;
  margin-bottom: 32px;
}
.cta-section .cta-btn {
  background: #F3BE3C;
  color: #123072;
  font-weight: 700;
  padding: 12px 38px;
  font-size: 1.1rem;
  border-radius: 28px;
  box-shadow: 0 2px 8px rgba(243,190,60,0.14);
  margin-top: 8px;
  transition: background 0.17s, color 0.17s, transform 0.17s;
}
.cta-section .cta-btn:hover, .cta-section .cta-btn:focus {
  background: #fff;
  color: #123072;
  transform: translateY(-2px) scale(1.04);
}

/* Cards & Lists */
.values-list, .unique-points-list, .experience-highlights, .skill-gain-list, .service-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.unique-points-list li, .experience-highlights li {
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  color: #3C4A5B;
  gap: 13px;
}

/* Text Section */
.text-section {
  margin-top: 12px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Instructors */
.instructor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}
.instructor-profile {
  flex: 1 1 320px;
  min-width: 230px;
  background: #F6F6F4;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(36,35,30,0.04);
  padding: 26px 22px;
  margin-bottom: 20px;
}
.instructor-qualifications {
  margin-top: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Forms/Contact */
.contact-section, .info-section {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 3px 12px rgba(120,130,130,0.06);
}
.contact-details {
  margin-top: 10px;
  font-size: 1.09rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details img {
  width: 19px;
  vertical-align: -3px;
  margin-right: 7px;
  display: inline;
}
.office-hours-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.office-hours-text img {
  width: 18px;
  margin-right: 7px;
  vertical-align: -3px;
}

/* Misc. Section Lists */
.skill-gain-list, .step-by-step-process {
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}
.step-by-step-process li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #123072;
  font-size: 1.08rem;
}
.step-by-step-process li img {
  width: 28px;
  margin-top: 0.5px;
}

/* FOOTER */
footer {
  background: #FFF;
  border-top: 1.5px solid #F3BE3C;
  padding: 0;
  margin-top: 40px;
  position: relative;
}
.footer-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 20px 24px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}
.footer-logo img {
  width: 64px;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #123072;
  font-size: 1rem;
  opacity: 0.8;
  transition: color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F3BE3C;
  opacity: 1;
}
.footer-contact {
  font-size: 0.95rem;
  color: #3C4A5B;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact img {
  width: 17px;
  margin-right: 5px;
  vertical-align: -3px;
  display: inline;
}
.footer-tagline {
  margin-top: 10px;
  color: #F3BE3C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  text-align: left;
}

/* BUTTONS */
.cta-btn {
  background: #123072;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 32px;
  border-radius: 32px;
  border: none;
  outline: none;
  box-shadow: 0 2.5px 8px rgba(18,48,114,0.085);
  margin-top: 6px;
  margin-bottom: 4px;
  display: inline-block;
  transition: background 0.18s, color 0.18s, transform 0.17s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F3BE3C;
  color: #123072;
  transform: translateY(-2px) scale(1.03);
}

button, .button {
  font-family: inherit;
  border-radius: 8px;
  border: none;
  padding: 10px 22px;
  font-size: 1rem;
  background: #F3BE3C;
  color: #123072;
  font-weight: 700;
  transition: background 0.17s, color 0.17s, box-shadow 0.18s;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: #123072;
  color: #fff;
  box-shadow: 0 4px 20px rgba(18,48,114,0.10);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 11000;
  background: #fff;
  border-top: 2px solid #F3BE3C;
  box-shadow: 0 -2px 18px rgba(18,48,114,0.06);
  padding: 22px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s, transform 0.45s;
}
.cookie-banner.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(80px);
}
.cookie-banner-text {
  color: #123072;
  font-size: 1rem;
  flex: 1 1 0;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn, .cookie-settings-btn {
  padding: 8px 20px;
  font-size: 0.98rem;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.16s, color 0.18s;
}
.cookie-btn.accept {
  background: #F3BE3C;
  color: #123072;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #123072;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #123072;
  border: 1px solid #E1E4EA;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #123072;
  color: #fff;
  border: 1px solid #F3BE3C;
}
.cookie-settings-btn {
  background: #F6F6F4;
  color: #123072;
  border: 1px solid #F3BE3C;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #F3BE3C;
  color: #123072;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(18,48,114,0.13);
  z-index: 12000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  visibility: hidden;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 440px;
  width: 92vw;
  padding: 36px 28px 24px 28px;
  box-shadow: 0 6px 52px rgba(18,48,114,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}
.cookie-modal h2 {
  margin-bottom: 0;
  color: #123072;
  font-size: 1.36rem;
}
.cookie-modal-category {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal-category label {
  margin-left: 4px;
  font-size: 1rem;
  color: #3C4A5B;
}
.cookie-toggle {
  width: 44px; height: 24px;
  background: #E1E4EA;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.2s;
}
.cookie-toggle[data-checked="true"] {
  background: #F3BE3C;
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(36,30,18,0.09);
  position: absolute;
  left: 1px;
  top: 1px;
  transition: left 0.16s;
}
.cookie-toggle[data-checked="true"]::before {
  left: 21px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  font-size: 1.2rem;
  color: #123072;
  border: none;
  padding: 4px 8px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F3BE3C;
}

/* Utility */
.hide {
  display: none !important;
}

/* RESPONSIVE DESIGN: MOBILE FIRST */
@media (max-width: 1119px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .footer-main {
    gap: 18px;
    padding: 36px 10px 22px 10px;
  }
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  /* NAVIGATION */
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    max-width: 98vw;
  }
  header {
    min-height: 65px;
  }
  .section, .features-section, .courses-section, .services-section, .team-section,
  .testimonials-section, .cta-section, .privacy-section, .gdpr-section, .terms-section,
  .thank-you-section, .info-section, .contact-section {
    margin-bottom: 42px;
    padding: 24px 8px;
    border-radius: 15px;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 25px 6px 19px 6px;
  }
  /* FLEX WRAPPED SECTIONS */
  .feature-grid, .course-grid, .testimonial-grid, .instructor-grid, .levels-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .course-card, .testimonial-card, .instructor-profile, .level-item {
    min-width: 0;
    width: 100%;
    border-radius: 10px;
    gap: 10px;
    padding: 17px 12px;
  }
  .testimonial-card {
    padding: 16px 10px 15px 10px;
  }
  .team-section .content-wrapper, .features-section .content-wrapper {
    align-items: flex-start;
  }
  .cta-section {
    padding: 22px 4px;
    border-radius: 14px;
  }
}
@media (max-width: 600px) {
  .hero-section h1 {
    font-size: 1.7rem;
    margin-bottom: 12px;
  }
  .hero-section p {
    font-size: 1rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.15rem;
    margin-bottom: 13px;
  }
  h3 {
    font-size: 1.05rem;
    margin-bottom: 7.5px;
  }
  h4 {
    font-size: 0.99rem;
    margin-bottom: 7px;
  }
}

/* FLEXBOX SPECIALS FOR REQUIRED ALIGNMENTS */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* MICRO-INTERACTIONS */
.cta-btn, button, .cookie-btn, .cookie-settings-btn {
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.16s;
}
.cta-btn:active, button:active, .cookie-btn:active {
  transform: scale(0.98);
  background: #F3BE3C;
  color: #123072;
}

/* SCANDINAVIAN-CLEAN DETAILS */
.section, .features-section, .courses-section, .team-section, .testimonials-section, .cta-section, .privacy-section, .gdpr-section, .terms-section, .thank-you-section, .contact-section, .info-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3.5px 16px rgba(50,70,80,0.06);
}
@media (max-width: 600px) {
  .section, .features-section, .courses-section, .team-section, .testimonials-section, .cta-section, .privacy-section, .gdpr-section, .terms-section, .thank-you-section, .contact-section, .info-section {
    border-radius: 8px;
    padding: 11px 5px;
  }
}

/* SELECTION & FOCUS */
*:focus {
  outline: 2px solid #F3BE3C;
  outline-offset: 1.5px;
}
::selection {
  background: #F3BE3C;
  color: #123072;
}

/* ACCESSIBILITY/CONTRAST IMPROVEMENTS */
.testimonial-card p, .testimonial-card .testimonial-author {
  color: #203158 !important;
  background: none;
}

/**** END ****/
