/* 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, 
main, 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, main, menu, nav, section {
  display: block;
}

body {
  line-height: 1.6;
  font-family: 'Roboto', serif;
  background-color: #F2F3F8;
  color: #243A64;
  min-height: 100vh;
  min-width: 320px;
  font-size: 16px;
}

img, picture {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul, ol {
  list-style: none;
}

a {
  color: #243A64;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #F6B115;
  outline: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* BRAND TYPOGRAPHY & SCALE */
h1 {
  font-family: 'Montserrat', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Montserrat', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
h3 {
  font-family: 'Montserrat', serif;
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 500;
}

p, li, span, label {
  font-family: 'Roboto', serif;
  font-size: 1rem;
  color: #243A64;
}

strong {
  font-weight: 600;
}

blockquote {
  font-family: 'Montserrat', serif;
  font-style: italic;
  background: #f5f5f9;
  border-left: 4px solid #F6B115;
  margin: 16px 0;
  padding: 16px 20px;
  color: #243A64;
}

/* CONTAINER SYSTEM */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  gap: 20px;
  align-items: flex-start;
}

/* HEADER */
header {
  background: #ffffff;
  width: 100%;
  position: relative;
  z-index: 101;
  box-shadow: 0 1px 6px rgba(36,58,100,0.05);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
header img {
  height: 38px;
  margin-right: 16px;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 4px 0;
  color: #243A64;
  position: relative;
  transition: color .2s;
}
header nav a.active,
header nav a:hover {
  color: #F6B115;
}

.cta-btn {
  display: inline-block;
  background: #F6B115;
  color: #243A64;
  font-family: 'Montserrat', serif;
  font-size: 1.13rem;
  font-weight: 600;
  border-radius: 26px;
  padding: 13px 32px;
  border: none;
  letter-spacing: 0.02em;
  box-shadow: 0 3px 11px rgba(36,58,100,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
  cursor: pointer;
  margin-left: 18px;
  text-align: center;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #243A64;
  color: #F6B115;
  box-shadow: 0 5px 18px 0 rgba(36,58,100,0.20);
}

/* HERO SECTION */
.hero {
  background: #243A64;
  color: #fff;
  text-align: center;
  padding: 60px 0 56px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 18px;
}
.hero h1,
.hero p {
  color: #fff;
}
.hero h1 {
  font-size: 2.4rem;
  letter-spacing: .01em;
  font-weight: 700;
  margin-bottom: 8px;
}
.hero p {
  font-size: 1.13rem;
  margin-bottom: 22px;
}
.hero .cta-btn {
  margin-top: 12px;
}

/* SECTION GENERIC STYLES */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
section:last-child {
  margin-bottom: 0;
}

/* FEATURE/CONTENT FLEX LAYOUTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.feature {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(36,58,100,0.07);
  padding: 28px 26px 22px 26px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  max-width: 310px;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature:hover {
  box-shadow: 0 7px 18px 0 rgba(36,58,100,0.17);
  transform: translateY(-6px) scale(1.03);
}
.feature img {
  height: 44px;
  margin-bottom: 13px;
}
.feature h3 {
  color: #243A64;
  margin-bottom: 12px;
  font-size: 1.21rem;
  font-weight: 700;
}
.feature p {
  margin-bottom: 0;
  color: #344060;
  font-size: 1rem;
}

/* TESTIMONIALS FLEX LAYOUT */
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(36,58,100,0.09);
  padding: 28px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 240px;
  max-width: 380px;
  flex: 1 1 220px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 22px 0 rgba(36,58,100,0.20);
  transform: translateY(-5px) scale(1.02);
}
.testimonial-rating {
  color: #F6B115;
  font-family: 'Montserrat', serif;
  font-size: 1.23rem;
  font-weight: 600;
}
.testimonial-card p {
  font-size: 1rem;
  color: #243A64;
  margin-bottom: 0;
}
.testimonial-author {
  font-size: 0.98rem;
  color: #6b7190;
  font-style: italic;
  align-self: flex-end;
}

/* COURSE LISTS, FAQ, TEAM BIOS */
.course-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.course-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(36,58,100,0.07);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}
.course-list h2 {
  font-size: 1.28rem;
  color: #243A64;
  font-family: 'Montserrat', serif;
  margin-bottom: 6px;
}
.course-list span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.98rem;
  color: #243A64;
  opacity: .96;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.faq-list h3 {
  font-size: 1.08rem;
  margin-bottom: 3px;
}
.faq-list p {
  font-size: 0.99rem;
}

.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.team-bio {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(36,58,100,0.06);
  padding: 24px 20px 20px 20px;
  flex: 1 1 185px;
  min-width: 165px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team-bio h3 {
  font-size: 1.13rem;
}
.team-bio p {
  font-size: 0.97rem;
  color: #344060;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
  font-size: 1.04rem;
}
.contact-details a {
  color: #243A64;
  text-decoration: underline;
}
.contact-details a:hover,
.contact-details a:focus {
  color: #F6B115;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1007;
  background: #fff;
  color: #243A64;
  box-shadow: 0 -3px 15px 0 rgba(36,58,100,0.09);
  padding: 24px 20px 20px 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-direction: row;
  transition: transform .35s cubic-bezier(.55,.14,.32,1.09);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-message {
  font-size: 1.05rem;
}
.cookie-banner .cookie-controls {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  border: none;
  border-radius: 20px;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 22px;
  background: #F6B115;
  color: #243A64;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  margin-right: 4px;
}
.cookie-btn:focus,
.cookie-btn:hover {
  background: #243A64;
  color: #F6B115;
}
.cookie-btn.secondary {
  background: #F2F3F8;
  color: #243A64;
  border: 1px solid #CED2DF;
}
.cookie-btn.secondary:focus,
.cookie-btn.secondary:hover {
  background: #F6B115;
  color: #243A64;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1050;
  background: rgba(36,58,100,0.18);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .26s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 36px 0 rgba(36,58,100,0.19);
  max-width: 355px;
  width: 100%;
  padding: 32px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modalPopIn .38s cubic-bezier(0.5,1.2,0.4,1);
}
@keyframes modalPopIn {
  0% { transform: scale(0.82) translateY(38px); opacity: 0; }
  70% { transform: scale(1.04) translateY(-10px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.33rem;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.cookie-category label {
  font-size: 1.04rem;
  color: #243A64;
}
.cookie-toggle {
  width: 34px;
  height: 18px;
  background: #CED2DF;
  border-radius: 9px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  transition: background .14s;
}
.cookie-toggle input[type='checkbox'] {
  display: none;
}
.cookie-toggle span {
  position: absolute;
  top: 2px; left: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(36,58,100,0.10);
  transition: left .19s;
}
.cookie-toggle input[type='checkbox']:checked + span {
  left: 18px;
  background: #F6B115;
}
.cookie-modal .cookie-btn {
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #B6BACC;
  cursor: pointer;
  transition: color .15s;
}
.cookie-modal-close:hover {
  color: #243A64;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 18px;
  width: 44px; height: 44px;
  background: #fff;
  border: 1px solid #CED2DF;
  border-radius: 50%;
  color: #243A64;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  z-index: 1140;
  transition: background .18s, color .18s, box-shadow .22s;
  box-shadow: 0 3px 11px rgba(36,58,100,0.09);
  cursor: pointer;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F6B115;
  color: #243A64;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: #fff;
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.75,.2,.3,1.17);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  box-shadow: 2px 0 30px 0 rgba(36,58,100,0.17);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 24px 0 0;
  background: none;
  border: none;
  font-size: 2rem;
  color: #243A64;
  cursor: pointer;
  transition: color .17s;
}
.mobile-menu-close:hover {
  color: #F6B115;
}
.mobile-nav {
  margin: 32px 30px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', serif;
  font-size: 1.2rem;
  color: #243A64;
  padding: 12px 0;
  border-bottom: 1px solid #F2F3F8;
  transition: color .18s, background .18s;
  border-radius: 6px;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: #F6B115;
  background: #F2F3F8;
}

/* MAIN FLEX WRAPPERS FOR SECTIONS */
.section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px !important;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(36,58,100,0.09);
  padding: 20px 18px 14px 18px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 25px 0 rgba(36,58,100,0.16);
  transform: translateY(-6px) scale(1.03);
}
.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 !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 20px !important;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FOOTER */
footer {
  background: #243A64;
  color: #fff;
  padding: 0 0 0 0;
  margin-top: 64px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 32px 0 10px 0;
  border-bottom: 1px solid #37548E;
  gap: 18px;
}
.footer-top a img {
  height: 35px;
}
.footer-top nav {
  display: flex;
  gap: 16px;
}
.footer-top nav a {
  color: #F2F3F8;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color .17s;
}
.footer-top nav a:focus, .footer-top nav a:hover {
  color: #F6B115;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 28px 0 16px 0;
  gap: 22px;
}
.contact-brief {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  color: #fff;
  font-size: 0.97rem;
  opacity: 0.94;
}
.contact-brief img {
  width: 17px;
  height: 17px;
  margin-right: 5px;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: filter .14s;
}
.social-links a:focus,
.social-links a:hover {
  filter: brightness(1.35) drop-shadow(0 2px 5px #F6B11533);
}
.social-links img {
  width: 26px;
  height: 26px;
  background: #F6B115;
  border-radius: 7px;
  padding: 3px;
}

/* GENERAL UTILITIES & EFFECTS */
.rounded {
  border-radius: 16px !important;
}
.shadow {
  box-shadow: 0 5px 18px 0 rgba(36,58,100,0.14) !important;
}
.bg-accent {
  background: #F2F3F8 !important;
}
.text-muted {
  color: #6b7190 !important;
}

/* SPACING HELPERS */
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mt-24 { margin-top: 24px !important; }
.pt-40 { padding-top: 40px !important; }
.pb-32 { padding-bottom: 32px !important; }

/*******************************
 *        RESPONSIVENESS        *
 *******************************/
@media (max-width: 1100px) {
  .container { max-width: 92vw; }
}
@media (max-width: 900px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.5rem; }
  .feature, .testimonial-card, .team-bio {
    max-width: 100%;
    min-width: 130px;
    flex: 1 1 140px;
  }
}
@media (max-width: 780px) {
  header .container, .footer-bottom, .footer-top {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .feature-grid, .testimonials-list, .team-bios {
    flex-direction: column;
    gap: 18px;
  }
  .footer-bottom {
    gap: 12px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .hero {
    padding: 40px 0 28px;
  }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.15rem; }
  header .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }

  /* main content wrappers for flex layout */
  .content-wrapper {
    gap: 16px;
  }
  section {
    padding: 25px 8px;
    margin-bottom: 32px;
  }
  .feature, .testimonial-card, .team-bio, .card {
    max-width: 100%;
    padding: 18px 10px 14px 10px;
  }
  .feature-grid, .testimonials-list, .team-bios, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .card-container, .content-grid {
    gap: 14px;
  }
  .contact-brief {
    gap: 7px 10px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 18px 8px 14px 8px;
  }
  .mobile-nav {
    margin: 23px 10px 0 16px;
    gap: 16px;
  }
  .cookie-modal {
    max-width: 95vw;
    padding: 20px 10px 12px 10px;
  }
  .testimonial-card {
    gap: 10px;
    padding: 10px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 16px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  html, body {
    font-size: 15px;
  }
}

/************************************
 * ANIMATIONS & TRANSITIONS
 ************************************/
.cta-btn, .feature, .testimonial-card, .card, .mobile-menu-toggle {
  transition: box-shadow .18s, transform .18s, background .15s, color .18s;
}
.testimonial-card, .feature, .card {
  will-change: transform, box-shadow;
}

.mobile-menu,
.mobile-menu.open {
  transition: transform 0.38s cubic-bezier(.75,.2,.3,1.17);
}

.cookie-banner, .cookie-modal {
  transition: transform .35s, opacity .22s;
}

/************************************
 * SCROLLBAR (subtle, classic)
 ************************************/
html {
  scrollbar-width: thin;
  scrollbar-color: #F6B115 #f1f1f1;
}
::-webkit-scrollbar {
  width: 7px; background: #f1f1f1; border-radius: 12px; }
::-webkit-scrollbar-thumb {
  background: #F6B115; border-radius: 12px; }
 
/************************************
 * END OF CSS                      *
 ************************************/