/* 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  line-height: 1.6;
  color: #222;
  background: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  min-width: 320px;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #1D3557;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #457B9D;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font: inherit;
  outline: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}
:focus {
  outline: 2px solid #457B9D;
  outline-offset: 2px;
}

/* MAIN LAYOUT: CONTAINERS & SPACING */
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  color: #1D3557;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol, li {
  color: #222;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
strong {
  font-weight: 600;
  color: #1D3557;
}
small {
  font-size: 0.89rem;
  color: #888;
}

/* HERO SECTIONS */
.hero-section {
  padding-top: 56px;
  padding-bottom: 56px;
  align-items: center;
  justify-content: center;
}
.hero-section h1, .hero-section h2 {
  text-align: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.02em;
}
.hero-section p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* BUTTONS (CTA PRIMARY) */
.cta-primary {
  display: inline-block;
  background: #1D3557;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 26px;
  box-shadow: 0 2px 10px rgba(29,53,87,0.05);
  transition: background 0.18s, color 0.16s, box-shadow 0.18s, transform 0.12s;
  border: none;
  margin: 18px 0 0 0;
}
.cta-primary:hover, .cta-primary:focus {
  background: #457B9D;
  color: #F1FAEE;
  box-shadow: 0 5px 20px rgba(29,53,87,0.12);
  transform: translateY(-1px);
}

/* HEADER and NAVIGATION */
header {
  width: 100%;
  box-shadow: 0 2px 16px rgba(29,53,87,0.04);
  background: #fff;
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 20px 16px 20px;
}
header img {
  height: 44px;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
nav a {
  color: #1D3557;
  font-weight: 500;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 7px 14px;
  border-radius: 18px;
  transition: background 0.15s;
}
nav a:hover, nav a:focus {
  background: #F1FAEE;
  color: #457B9D;
}

header .cta-primary {
  margin: 0 0 0 8px;
}

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 18px;
  background: #fff;
  border: 2px solid #1D3557;
  color: #1D3557;
  font-size: 2.2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 198;
  transition: border-color 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  border-color: #457B9D;
  color: #457B9D;
  background: #F1FAEE;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 40px rgba(29,53,87,0.12);
  padding: 28px 32px 0 32px;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.55, .1, .33, 1);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: #1D3557;
  background: none;
  border: none;
  align-self: flex-end;
  margin-bottom: 24px;
  transition: color .17s;
}
.mobile-menu-close:hover {
  color: #457B9D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.12rem;
  color: #1D3557;
  padding: 14px 0;
  font-weight: 600;
  border-radius: 16px;
  transition: background 0.15s, color 0.16s;
  box-sizing: border-box;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F1FAEE;
  color: #457B9D;
}

@media (max-width: 992px) {
  header .container nav {
    display: none;
  }
  header .container .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 993px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* SECTIONS & FLEX LAYOUTS */
.features-section, .about-section, .faqs-section, .cta-section, .testimonials-section, .resources-section, .services-section, .values-section, .thankyou-section, .legal-section, .schedule-section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.feature-grid > div {
  background: #fff;
  padding: 32px 24px 28px 24px;
  border-radius: 19px;
  box-shadow: 0 1px 12px rgba(29,53,87,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  min-width: 230px;
  max-width: 340px;
  flex: 1 0 225px;
}
.feature-grid img {
  height: 42px;
  margin-bottom: 3px;
}
.feature-grid h3 {
  margin-bottom: 4px;
}

/* TESTIMONIALS */
.testimonials-section, .testimonials-section .content-wrapper {
  align-items: center;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 22px 20px 22px;
  border-radius: 18px;
  background: #F1FAEE;
  color: #1D3557;
  box-shadow: 0 2px 8px rgba(29,53,87,0.06);
  font-size: 1.06rem;
  max-width: 340px;
  min-width: 230px;
  flex: 1 0 220px;
  margin-bottom: 20px;
  border: 1px solid #e5ecf2;
  position: relative;
}
.testimonial-card p {
  color: #1D3557;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.testimonial-card .star-rating {
  font-size: 1.17rem;
  color: #457B9D;
}
.testimonial-card span {
  color: #444;
  font-size: 0.98rem;
  font-style: italic;
  opacity: 0.87;
}

.before-after {
  background: #fff;
  border-radius: 15px;
  padding: 17px 20px;
  box-shadow: 0 1px 10px rgba(29,53,87,0.06);
  margin-top: 27px;
}

/* FAQ SECTION */
.faq-section, .faq-list {
  margin-top: 0px;
  margin-bottom: 0px;
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: flex-start;
}
.faq-list > div {
  flex: 1 1 250px;
  min-width: 210px;
  background: #fff;
  border-radius: 16px;
  padding: 22px 18px 18px 18px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px rgba(29,53,87,0.06);
  border: 1px solid #e5ecf2;
}
.faq-list h3 {
  margin-bottom: 6px;
  color: #1D3557;
  font-size: 1.08rem;
}

/* VALUES LIST */
.values-section ul, .about-section ul {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.values-section li, .about-section li {
  background: #F1FAEE;
  padding: 8px 13px;
  border-radius: 9px;
  color: #222;
  font-size: 1rem;
}

/* COURSE LIST */
.course-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 22px;
}
.course-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: #fff;
  border-radius: 12px;
  padding: 15px 16px;
  box-shadow: 0 1px 8px rgba(29,53,87,0.04);
  border: 1px solid #e7ecee;
}
.course-list img {
  width: 34px;
  height: 34px;
}

.highlights ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #F1FAEE;
  padding: 13px 14px;
  border-radius: 9px;
  margin-top: 8px;
}
.highlights li {
  color: #444;
  font-size: 1rem;
}

/* ROADMAP/PROGRAMME STEPS */
.programme-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.programme-steps li {
  padding: 7px 10px;
  background: #F1FAEE;
  border-radius: 8px;
  color: #1D3557;
}
.expected-outcomes ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 6px;
}
.milestones {
  margin-top: 17px;
  font-size: 1rem;
  color: #1D3557;
  background: #F1FAEE;
  border-radius: 7px;
  padding: 9px 14px;
}

/* BLOG SNIPPETS */
.blog-snippets ul {
  margin-top: 7px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 0;
  margin-bottom: 9px;
  align-items: flex-start;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  background: #F1FAEE;
  border-radius: 8px;
  padding: 8px 14px;
}
.contact-details strong {
  font-weight: 550;
  min-width: 68px;
}
.map {
  margin: 26px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.map img {
  width: 180px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 14px rgba(29,53,87,0.09);
}

/* TRUSTED BY */
.trusted-by {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.trusted-by strong {
  color: #1D3557;
}
.trusted-by span {
  color: #888;
}

/* FOOTER */
footer {
  background: #F1FAEE;
  padding: 30px 0 0 0;
  border-top: 1px solid #e6e6e6;
  width: 100%;
  margin-top: 50px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  font-size: 0.98rem;
  align-items: center;
  margin-bottom: 11px;
}
.footer-nav a {
  color: #1D3557;
  transition: color .16s;
}
.footer-nav a:hover {
  color: #457B9D;
  text-decoration: underline;
}
.contact-snippet {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.98rem;
  color: #1D3557;
  align-items: flex-start;
}
.contact-snippet img {
  width: 17px;
  height: 17px;
  vertical-align: middle;
}
.social-media-icons {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 12px;
}
.social-media-icons img {
  width: 30px;
  height: 30px;
  transition: filter .15s, transform .14s;
  filter: grayscale(0.40);
}
.social-media-icons img:hover {
  filter: grayscale(0.10) brightness(1.18);
  transform: scale(1.13);
}
footer .cta-primary {
  margin-top: 6px;
}
.copyright {
  text-align: center;
  padding: 20px 0 14px 0;
  color: #888;
  font-size: 0.98rem;
  border-top: 1px solid #e6e6e6;
}

/* LEGAL & THANK YOU SECTIONS */
.legal-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 10px rgba(29,53,87,0.04);
  padding: 40px 24px;
}
.thankyou-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.confirmation-message, .next-steps {
  font-size: 1.09rem;
  color: #1D3557;
  margin-top: 6px;
}

/* COOKIE CONSENT BANNER + MODAL */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #1D3557;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 1101;
  padding: 20px 16px;
  box-shadow: 0 -4px 24px rgba(29,53,87,0.17);
  min-height: 48px;
  transition: transform 0.35s cubic-bezier(.37,.11,.31,1);
  transform: translateY(0%);
}
#cookie-banner.hide {
  transform: translateY(110%);
}
#cookie-banner .cookie-banner-content {
  flex: 1 1 auto;
  margin-right: 18px;
  font-size: 1rem;
}
#cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#cookie-banner button {
  border-radius: 25px;
  padding: 8px 20px;
  font-size: 0.99rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  border: none;
  transition: background 0.16s, color 0.14s, box-shadow 0.12s;
  margin: 0;
}
#cookie-banner .cookie-accept {
  background: #F1FAEE;
  color: #1D3557;
}
#cookie-banner .cookie-accept:hover, #cookie-banner .cookie-accept:focus {
  background: #457B9D;
  color: #fff;
}
#cookie-banner .cookie-reject {
  background: transparent;
  color: #F1FAEE;
  border: 1px solid #F1FAEE;
}
#cookie-banner .cookie-reject:hover, #cookie-banner .cookie-reject:focus {
  background: #F1FAEE;
  color: #1D3557;
}
#cookie-banner .cookie-settings {
  background: transparent;
  color: #F1FAEE;
  border: 1px solid #F1FAEE;
}
#cookie-banner .cookie-settings:hover, #cookie-banner .cookie-settings:focus {
  background: #457B9D;
  color: #fff;
}

#cookie-modal-overlay {
  position: fixed;
  z-index: 1102;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(29,53,87, 0.37);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(.55, .1, .33, 1);
}
#cookie-modal-overlay.open { opacity: 1; pointer-events: auto; }
#cookie-modal {
  background: #fff;
  color: #1D3557;
  border-radius: 19px;
  box-shadow: 0 4px 32px rgba(29,53,87,.15);
  padding: 38px 26px 30px 26px;
  max-width: 420px;
  width: 92vw;
  min-width: 272px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: stretch;
  position: relative;
  transform: translateY(32px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.28s;
}
#cookie-modal-overlay.open #cookie-modal {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 8px;
  color: #1D3557;
}
#cookie-modal .modal-close {
  position: absolute;
  right: 14px; top: 11px;
  font-size: 1.45rem;
  background: none;
  color: #1D3557;
  border: none;
  transition: color .14s;
  z-index: 5;
}
#cookie-modal .modal-close:hover { color: #457B9D; }
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 7px 0;
  font-size: 1rem;
}
#cookie-modal .cookie-category input[type='checkbox'] {
  accent-color: #457B9D;
  width: 18px;
  height: 18px;
}
#cookie-modal .cookie-category.essential input[type='checkbox'] {
  accent-color: #ACC1D7;
}
#cookie-modal .cookie-category.essential span {
  color: #bbb;
  font-style: italic;
}
#cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 12px;
}
#cookie-modal .modal-actions button {
  min-width: 110px;
  border-radius: 21px;
  padding: 9px 0;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
#cookie-modal .modal-accept {
  background: #1D3557;
  color: #fff;
}
#cookie-modal .modal-accept:hover {
  background: #457B9D;
  color: #fff;
}
#cookie-modal .modal-reject {
  background: #fff;
  color: #1D3557;
  border: 1px solid #1D3557;
}
#cookie-modal .modal-reject:hover {
  background: #F1FAEE;
  color: #457B9D;
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
  .container {
    max-width: 98vw;
    padding: 0 13px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .testimonial-slider, .testimonial-list, .faq-list, .contact-details {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .feature-grid > div, .testimonial-card, .faq-list > div {
    max-width: 100%;
    min-width: 0;
  }
  .hero-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }
  .section, .features-section, .about-section, .faqs-section, .cta-section, .testimonials-section, .resources-section, .services-section, .values-section, .thankyou-section, .legal-section, .schedule-section  {
    margin-bottom: 38px;
    padding: 27px 6px;
  }
  h1 {
    font-size: 1.55rem;
    margin-bottom: 10px;
  }
  h2 {
    font-size: 1.22rem;
    margin-bottom: 8px;
  }
  .about-section {
    margin-bottom: 26px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .map img {
    width: 95vw;
    min-width: 0;
  }
  #cookie-modal {
    max-width: 96vw;
    padding: 21px 7px 20px 7px;
  }
}
@media (max-width: 500px) {
  nav a, .footer-nav a {
    font-size: 0.96rem;
    padding: 4px 8px;
  }
  .testimonial-card {
    padding: 14px 8px 17px 10px;
    font-size: 0.99rem;
  }
}

/* HOVER EFFECTS & MICRO-INTERACTIONS */
.feature-grid > div:hover,
.faq-list > div:hover,
.course-list li:hover,
.highlights ul:hover,
.values-section li:hover,
.card:hover {
  box-shadow: 0 5px 25px rgba(29,53,87,0.13);
  transform: translateY(-2px) scale(1.025);
  transition: transform 0.15s, box-shadow 0.19s;
}

.cta-primary:active {
  transform: scale(0.98);
  box-shadow: 0 1px 4px rgba(29,53,87,0.08);
}
footer a.cta-primary:active {
  transform: scale(0.97);
}

/* MISCELLANEOUS UTILS */
::-webkit-input-placeholder { color: #adb6c6; opacity:1; }
::-moz-placeholder          { color: #adb6c6; opacity:1; }
:-ms-input-placeholder      { color: #adb6c6; opacity:1; }
::placeholder              { color: #adb6c6; opacity:1; }

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 10px rgba(29,53,87,0.06);
  padding: 24px 20px;
}

.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: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* END OF CSS */
