/* CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #F9FAFB;
  color: #223B67;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 1.3em;
}
a {
  color: #223B67;
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-word;
}
a:hover, a:focus {
  color: #F3D13A;
  outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #223B67;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; letter-spacing: -1px; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }

p { margin-bottom: 14px; }
strong, b { font-weight: 700; }

blockquote {
  font-style: italic;
  color: #223B67;
  background: #F8FAFD;
  border-left: 4px solid #F3D13A;
  padding: 18px 24px;
  margin-bottom: 12px;
  border-radius: 10px;
}
cite {
  font-size: 1rem;
  color: #223B67;
  opacity: 0.8;
  display: block;
  margin-top: 10px;
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

/* HEADER + NAVIGATION */
header {
  background: #FFF;
  padding: 0;
  border-bottom: 1.5px solid #E2E8F0;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 110;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 24px;
}
header nav {
  display: flex;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.07rem;
  color: #223B67;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover,
header nav a:focus {
  background: #E2E8F0;
  color: #223B67;
}

.cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #223B67;
  color: #FFF;
  padding: 10px 26px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 1.5px 8px rgba(34, 59, 103, 0.08);
  transition: background 0.18s, box-shadow 0.24s, color 0.18s, transform 0.13s;
  letter-spacing: 0.5px;
  outline: none;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #F3D13A;
  color: #223B67;
  box-shadow: 0 2px 16px rgba(243, 209, 58, 0.10);
  transform: translateY(-2px) scale(1.031);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #223B67;
  padding: 8px 10px;
  margin-left: 10px;
  cursor: pointer;
  z-index: 121;
  transition: background 0.18s;
  border-radius: 6px;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #E2E8F0;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #FFF;
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.175,1);
  box-shadow: 0 0 40px rgba(34, 59, 103, 0.12);
  padding: 30px 28px 18px 25px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 2.0rem;
  color: #223B67;
  margin-bottom: 16px;
  cursor: pointer;
  z-index: 121;
  transition: background 0.18s;
  border-radius: 6px;
}
.mobile-menu-close:active,
.mobile-menu-close:focus {
  background: #E2E8F0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  color: #223B67;
  padding: 10px 6px;
  border-radius: 5px;
  transition: background 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #E2E8F0;
  color: #223B67;
}

@media (max-width: 992px) {
  header .container nav,
  header .container .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu,
  .mobile-menu-close,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO SECTION STYLES */
.hero {
  background: #F7F8FA;
  display: flex;
  align-items: center;
  min-height: 45vh;
  margin-bottom: 60px;
  padding: 40px 0;
}
.hero .container {
  min-height: 300px;
  justify-content: center;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 24px;
  max-width: 700px;
}
.subheadline {
  font-size: 1.15rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #446199;
  margin-bottom: 24px;
}

/* GENERAL SECTIONS, SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CARD STYLES */
.card-container,
.features-grid,
.testimonials-list,
.resource-list,
.course-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card,
.course,
.resource-item {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(34, 59, 103, 0.07);
  padding: 32px 26px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  min-width: 220px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover,
.course:hover,
.resource-item:hover {
  box-shadow: 0 7px 28px rgba(34, 59, 103, 0.12);
  transform: translateY(-3px) scale(1.012);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}
.features-grid li {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(34, 59, 103, 0.06);
  flex: 1 1 220px;
  min-width: 180px;
  padding: 24px 18px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.14s, transform 0.12s;
}
.features-grid li:hover {
  box-shadow: 0 8px 34px rgba(243, 209, 58,0.08);
  transform: translateY(-3px) scale(1.015);
}
.features-grid img {
  width: 36px;
  margin-bottom: 10px;
}
.features-grid h3 {
  margin-bottom: 10px;
}

.course-cards {
  gap: 24px;
  margin-bottom: 14px;
}
.course {
  border: 1px solid #E2E8F0;
  box-shadow: none;
}

.resource-list {
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.resource-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.download-link {
  display: inline-flex;
  align-items: center;
  background: #F3D13A;
  color: #223B67;
  padding: 8px 16px 8px 10px;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-top: 4px;
  font-size: 1.05rem;
  min-width: 130px;
  transition: background 0.14s, color 0.14s;
  gap: 9px;
}
.download-link:hover {
  background: #223B67;
  color: #F3D13A;
}

.values-list,
.benefit-list {
  list-style: disc inside;
  margin-bottom: 12px;
  color: #223B67;
}
.module-timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.module-timeline li {
  padding: 14px 22px;
  background: #F8FAFD;
  border-radius: 12px;
  box-shadow: 0 1.5px 7px rgba(34,59,103,0.04);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

.faq-item {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(34, 59, 103, 0.06);
  margin-bottom: 20px;
  padding: 22px 20px;
  transition: box-shadow 0.13s;
}
.faq-item h3 {
  margin-bottom: 8px;
}
.faq-item:hover {
  box-shadow: 0 7px 28px rgba(34, 59, 103, 0.13);
}

.address-block {
  background: #F8FAFD;
  padding: 18px 22px;
  border-radius: 11px;
  margin-bottom: 6px;
}

/* TESTIMONIALS */
.testimonials-list {
  margin-bottom: 36px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FFF;
  box-shadow: 0 3px 14px rgba(34, 59, 103, 0.09);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, background 0.13s;
  flex: 1 1 340px;
  min-width: 240px;
}
.testimonial-card:hover {
  background: #E2E8F0;
  box-shadow: 0 8px 32px rgba(243,209,58,0.09);
}
.testimonial-card blockquote {
  border: none;
  background: none;
  font-size: 1.08rem;
  color: #223B67;
  padding: 0;
  margin: 0;
}
.testimonial-card cite {
  margin-top: 0;
  margin-left: 18px;
  color: #446199;
}
@media (max-width: 767px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 12px;
  }
}

.testimonials-preview .testimonial-card {
  max-width: 550px;
}

.client-results ul {
  margin-top: 8px;
  list-style: disc inside;
  color: #223B67;
  line-height: 1.5;
  padding-left: 18px;
}

/* CTA BANNER, NEWSLETTER BANNER */
.cta-banner,
.newsletter-banner {
  background: #F3D13A;
  color: #223B67;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(243,209,58,0.08);
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 20px;
}
.cta-banner.accent,
.newsletter-banner.accent {
  background: #223B67;
  color: #FFF;
}
.cta-banner .cta-btn,
.newsletter-banner .cta-btn {
  margin-top: 18px;
}
.cta-banner h2,
.newsletter-banner h2 {
  color: inherit;
}


/* FOOTER */
footer {
  background: #FFF;
  border-top: 1.5px solid #E2E8F0;
  padding: 42px 0 24px 0;
  margin-top: 40px;
  font-size: 0.96rem;
  color: #223B67;
}
footer .container {
  gap: 20px;
}
footer nav {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
footer nav a {
  color: #223B67;
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.94;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: opacity 0.18s, color 0.22s;
}
footer nav a:hover {
  color: #F3D13A;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #223B67;
  margin-bottom: 10px;
}
.footer-contact img {
  width: 18px;
  margin-right: 5px;
  vertical-align: middle;
}
.footer-contact p {
  margin-bottom: 0;
}
.copyright {
  margin-top: 8px;
  opacity: 0.7;
  font-size: 0.94rem;
}

/* LIST CUSTOMIZATION */
ul, ol {
  margin-bottom: 18px;
}
li {
  margin-bottom: 8px;
}

/* CONTACT DETAILS */
.contact-details {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1.07rem;
  margin-bottom: 12px;
}
.contact-details img {
  width: 20px;
  margin-right: 6px;
  vertical-align: middle;
}

/* ABOUT DETAILS SECTION */
.about-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
}
.about-details > div {
  flex: 1 1 320px;
  min-width: 270px;
  background: #F8FAFD;
  border-radius: 12px;
  padding: 20px 22px;
}

/* SUCCESS STORIES */
.success-stories {
  margin-top: 18px;
}

/* BUTTONS GENERAL */
button,
input[type="button"],
input[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  outline: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  padding: 10px 22px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  font-size: 1rem;
  background: #223B67;
  color: #FFF;
}
button:hover, input[type="submit"]:hover {
  background: #F3D13A;
  color: #223B67;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #FFF;
  color: #223B67;
  box-shadow: 0 -4px 36px rgba(34, 59, 103, 0.11);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 26px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  z-index: 5000;
  animation: cookie-banner-slideup 0.52s cubic-bezier(.7,0,.23,1);
}
@keyframes cookie-banner-slideup {
  0% { transform: translateY(110%); }
  85% { transform: translateY(-7px); }
  100% { transform: translateY(0); }
}
.cookie-banner p {
  flex: 2 1 210px;
  margin-right: 10px;
}
.cookie-banner-btns {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner-btns button {
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  background: #F3D13A;
  color: #223B67;
  font-weight: 700;
  transition: background 0.13s, color 0.13s, box-shadow 0.14s;
  margin-right: 0;
}
.cookie-banner-btns button:hover {
  background: #223B67;
  color: #FFF;
}
.cookie-banner-btns .cookie-banner-settings {
  background: #E2E8F0;
  color: #223B67;
}
.cookie-banner-btns .cookie-banner-settings:hover {
  background: #223B67;
  color: #F3D13A;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5020;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 59, 103, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinmodal 0.25s ease;
}
@keyframes fadeinmodal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 6px 44px rgba(34, 59, 103, 0.17);
  max-width: 380px;
  width: 95vw;
  padding: 32px 26px 24px 26px;
  color: #223B67;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalslidein 0.27s cubic-bezier(.73,0,.27,1.07);
  position: relative;
}
@keyframes modalslidein {
  0% { transform: scale(0.85) translateY(40px); opacity: 0; }
  90% { transform: scale(1.04) translateY(-8px); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.cookie-category input[type=checkbox] {
  width: 20px; height: 20px; accent-color: #F3D13A;
}
.cookie-category label {
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.cookie-category .fixed-label {
  opacity: 0.68;
  font-style: italic;
}
.cookie-modal-btns {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-btns button {
  font-size: 0.97rem;
  padding: 8px 16px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal-close {
  position: absolute;
  right: 10px; top: 10px;
  background: transparent;
  color: #223B67;
  font-size: 1.4rem;
  border: none;
  z-index: 12;
  border-radius: 5px;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #F8FAFD;
}


/* RESPONSIVE LAYOUTS */
@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding: 0 14px;
  }
  .features-grid, .card-container, .testimonials-list, .resource-list, .course-cards {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6vw;
  }
  section, .section {
    padding: 30px 5vw;
    margin-bottom: 44px;
  }
  .about-details {
    flex-direction: column;
    gap: 20px;
  }
  .features-grid,
  .card-container,
  .testimonials-list,
  .resource-list,
  .course-cards {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .card, .course, .resource-item, .testimonial-card {
    min-width: 0;
    width: 100%;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .hero {
    min-height: unset;
    padding: 24px 0 10px 0;
  }
  .cta-banner, .newsletter-banner {
    padding: 28px 5vw;
    min-width: 0;
    border-radius: 12px;
  }
  .footer-contact {
    font-size: 0.98rem;
  }
}
@media (max-width: 520px) {
  .container {
    padding: 0 2vw;
  }
  section, .section {
    padding: 24px 1.5vw;
    margin-bottom: 24px;
  }
  .footer-contact {
    font-size: 0.93rem;
  }
  .cta-btn, .download-link{
    font-size: 0.98rem;
    padding: 8px 14px; 
  }
  .faq-item, .testimonial-card, .card, .course {
    padding: 14px 8px;
  }
}

/* UTILITIES */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }

/* MICRO-ANIMATION */
.card, .course, .resource-item, .testimonial-card, .features-grid li {
  transition: box-shadow 0.17s cubic-bezier(.6,0,.57,1),
    transform 0.15s cubic-bezier(.47,1.64,.41,.8);
}
.cta-btn, .download-link, .cookie-banner-btns button {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.14s;
}
.cta-btn:active, .download-link:active, .cookie-banner-btns button:active {
  transform: scale(0.96);
}

::-webkit-input-placeholder { color: #9baab9; }
::-moz-placeholder { color: #9baab9; }
:-ms-input-placeholder { color: #9baab9; }
::placeholder { color: #9baab9; }

/* No grid, only flex! */