/* --- CSS 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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  height: 100%;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #204265;
  background: #F2F7FC;
  min-height: 100vh;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #204265;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #6DC8A7;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #204265;
  margin-bottom: 16px;
  line-height: 1.18;
}

h1 {font-size: 2.625rem;margin-bottom: 20px;}
h2 {font-size: 2rem;margin-bottom: 17px;}
h3 {font-size: 1.375rem;margin-bottom: 12px;}
h4 {font-size: 1.125rem;}

p, li, dd {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #204265;
}

strong {
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
}

/* --- STRUCTURED GEOMETRIC SPACING --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(33,54,94, 0.06);
  /* geometric structure edge */
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(32,66,101,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 26px;
  flex: 1 1 280px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: box-shadow .19s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 22px rgba(32,66,101,0.13);
}

.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F2F7FC;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(32,66,101,0.07);
  margin-bottom: 20px;
  border-left: 6px solid #6DC8A7;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(32,66,101,.04);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  position: relative;
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background .17s, color .15s;
  position: relative;
  letter-spacing: 0.02em;
  color: #204265;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E1F2EC;
  color: #178178;
}
.cta-primary {
  color: #fff!important;
  background: #204265;
  border-radius: 10px;
  padding: 10px 26px;
  margin-left: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  box-shadow: 0 2px 5px rgba(32,66,101,.09);
  transition: background .17s;
  border: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #6DC8A7;
  color: #204265!important;
}
.cta-secondary {
  color: #204265;
  background: #fff;
  border: 2px solid #204265;
  border-radius: 10px;
  padding: 10px 26px;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 5px rgba(32,66,101,.04);
  transition: background .18s, color .18s, border .18s;
  display: inline-block;
  margin-top: 16px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #204265;
  color: #fff;
  border: 2px solid #6DC8A7;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #204265;
  cursor: pointer;
  z-index: 222;
  padding: 7px;
  border-radius: 8px;
  transition: background .14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E1F2EC;
  color: #178178;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: #204265;
  z-index: 2010;
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.86,0,.07,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 44px 32px 0 32px;
  box-shadow: -2px 0 20px rgba(32,66,101,0.13);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 14px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 2020;
  border-radius: 7px;
  transition: background .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #6DC8A7;
  color: #204265;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  padding: 12px 0 12px 6px;
  border-radius: 7px;
  transition: background .16s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #6DC8A7;
  color: #204265;
}

/* --- HERO SECTIONS --- */
.hero {
  background: #204265;
  color: #fff;
  border-radius: 0 0 32px 32px;
  padding: 54px 0 44px 0;
  margin-bottom: 42px;
}
.hero h1, .hero h2, .hero p{
  color: #fff;
}
.hero .container {
  z-index: 3;
}

/* --- FEATURES, BENEFITS, GRID LISTS --- */
.features-list, .benefits-list, .features-grid, .steps-list, .contact-info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.features-list li, .benefits-list li, .features-grid li, .steps-list li, .contact-info-list li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 4px rgba(32,66,101,0.07);
  padding: 12px 17px 12px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
  font-size: 1.02rem;
  margin-bottom: 0;
  font-weight: 500;
}

.steps-list {
  flex-direction: column;
  gap: 18px;
}
.steps-list li {
  position: relative;
  padding-left: 52px;
  min-height: 46px;
}
.steps-list li img {
  position: absolute;left:12px;top:calc(50% - 14px);width:28px;height:28px;object-fit:contain;
}

.faq-list {
  margin: 28px 0 0 0;
}
.faq-list dt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-top: 24px;
  font-size: 1.07rem;
}
.faq-list dd {
  margin-left: 0;
  margin-bottom: 18px;
  color: #204265;
}

/* --- TESTIMONIALS --- */
.testimonials {
  padding-top: 18px;
  margin-bottom: 32px;
}
.testimonials h2 {
  margin-bottom: 26px;
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #204265;
  font-family: 'Open Sans', Arial,sans-serif;
  margin-bottom: 11px;
}
.testimonial-info {
  font-size: .98rem;
  font-weight: 600;
  color: #204265;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.star-rating {
  color: #FFD700;
  font-size: 1.3em;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 1.2px;
  font-weight: 600;
}

/* --- BLOG + CARDS --- */
.blog-list, .course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.blog-list article, .course-item {
  background: #fff;
  border-radius: 14px;
  border-left: 5px solid #6DC8A7;
  box-shadow: 0 1px 8px rgba(32,66,101,0.06);
  padding: 23px 22px 20px 22px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 265px;
  flex: 1 1 285px;
  transition: box-shadow .17s;
}
.blog-list article:hover, .course-item:hover {
  box-shadow: 0 4px 20px rgba(32,66,101,0.15);
}
.blog-tag, .course-tag {
  display: inline-block;
  border-radius: 7px;
  background: #6DC8A7;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.92rem;
  padding: 3px 11px;
  letter-spacing: 0.02em;
  font-weight: 700;
}

/* --- FOOTER --- */
footer {
  background: #204265;
  color: #fff;
  padding-top: 34px;
  border-radius: 32px 32px 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.footer-brand img {
  width: 112px; height: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  flex: 1 1 340px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 5px 7px;
  border-radius: 7px;
  transition: background .16s, color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #6DC8A7;
  color: #204265;
}
.footer-contact ul {
  list-style: none;
  color: #fff;
  font-size: .99rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-bottom {
  border-top: 1px solid #355371;
  padding: 17px 0 16px 0;
  text-align: center;
}
.footer-bottom p {
  color: #a9bfd3;
  font-size: .89rem;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* --- CONTACT SECTIONS, MAP --- */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 24px 0 17px 0;
}
.contact-info-extra {
  margin: 17px 0 0 0;
}
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E1F2EC;
  border-radius: 14px;
  padding: 24px;
  font-size: 1.09rem;
  min-height: 82px;
  color: #204265;
}

/* --- LEGAL SECTIONS --- */
.legal-section {
  margin-top: 38px;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(32,66,101,0.08);
}
.legal-section h1, .legal-section h2 {
  color: #204265;
  font-family: 'Montserrat', Arial,sans-serif;
}
.legal-section ul {
  list-style: none;
  margin: 13px 0;
  padding: 0;
  color: #204265;
}
.legal-section ul li {
  padding-left: 0;
  margin-bottom: 9px;
  font-size: 1rem;
}
.legal-section a {
  color: #6DC8A7; text-decoration: underline;
}
.legal-section a:hover,.legal-section a:focus{color:#204265;}

/* --- THANK YOU PAGE --- */
.thank-you-section {
  background: #fff;
  border-radius: 18px;
  padding: 62px 24px 74px 24px;
  margin: 55px 0;
  box-shadow: 0 3px 14px rgba(33,54,94, 0.05);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* --- BLOG FILTERS --- */
.blog-filters {
  margin-top: 32px;
}
.blog-filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 9px;
}
.blog-filters a {
  background: #E1F2EC;
  color: #204265;
  border-radius: 7px;
  padding: 6px 14px;
  font-weight: 600;
  transition: background .14s, color .13s;
}
.blog-filters a:hover, .blog-filters a:focus {
  background: #6DC8A7;
  color: #fff;
}

/* --- ANIMATIONS --- */
.cta-primary, .cta-secondary, .mobile-menu, .mobile-menu-close, .main-nav a, .footer-nav a, .blog-list article, .course-item, .testimonial-card, .card {
  transition: box-shadow .22s, background .17s, color .17s, border .18s, transform .22s;
}
.cta-primary:active, .cta-secondary:active {
  transform: scale(.97);
}
/* Subtle hover lift */
.card:hover, .blog-list article:hover, .course-item:hover, .testimonial-card:hover {
  transform: translateY(-3px) scale(1.02);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
    padding: 0 10px;
  }
  .main-nav {
    gap: 15px;
  }
  .content-wrapper, .footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .footer-nav {
    flex: 1 1 200px;
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
  .section, .legal-section {
    padding: 28px 8px;
    margin-bottom: 39px;
  }
  .hero {
    padding: 40px 0 30px 0;
  }
  .blog-list, .course-list {
    gap: 15px;
  }
  .blog-list article, .course-item {
    min-width: 98%;
    max-width: 100%;
    padding: 17px 11px 16px 13px;
  }
  .faq-list dt {
    margin-top: 18px;
  }
  .testimonial-card {
    padding: 13px;
    gap: 12px;
  }
  .contact-section .container, .contact-main .container, .contact-map .container {
    padding-left: 0;
    padding-right: 0;
  }
  .section, .contact-section, .contact-main, .legal-section, .thank-you-section {
    border-radius: 9px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 540px) {
  html {
    font-size: 15px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .hero { padding: 29px 0 21px 0; }
  .card { padding: 18px 9px; }
  .blog-list article { padding: 12px 4px; }
}

/* --- FLEXBOX MARGIN/PADDING ENFORCEMENTS --- */
.section > *, .contact-section > *, .contact-main > *, .legal-section > * {
  margin-bottom: 18px;
}
.section > *:last-child, .contact-section > *:last-child, .contact-main > *:last-child, .legal-section > *:last-child {
  margin-bottom: 0;
}
.card-container > *, .content-grid > *, .blog-list > *, .course-list > * {
  margin-bottom: 0!important;
}


/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 10600;
  background: #204265;
  color: #fff;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 5px 18px 5px;
  box-shadow: 0 -2px 18px rgba(32,66,101,0.14);
  transition: transform .5s cubic-bezier(.86,0,.07,1);
  gap: 22px;
  flex-wrap: wrap;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner p {
  font-size: 1rem;
  margin-right: 22px;
  color: #fff;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-bottom: 0;
}
.cookie-btn, .cookie-settings-btn {
  border-radius: 9px;
  padding: 7px 22px;
  background: #6DC8A7;
  color: #204265;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size:1rem;
  font-weight: 700;
  border: none;
  margin: 0 4px;
  box-shadow: 0 1px 4px rgba(32,66,101,0.09);
  cursor: pointer;
  transition: background .18s, color .14s;
}
.cookie-btn.reject {
  background: #fff; color: #204265;
  border: 1px solid #6DC8A7;
}
.cookie-btn:hover, .cookie-settings-btn:hover, .cookie-btn:focus, .cookie-settings-btn:focus {
  background: #204265;
  color: #fff;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #E1F2EC;
  color: #204265;
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 10700;
  background: rgba(32,66,101,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #204265;
  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(32,66,101,0.18);
  max-width: 370px;
  width: 94vw;
  padding: 34px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.01rem;
  position: relative;
  animation: modalIn .22s cubic-bezier(.86,0,.07,1);
}
@keyframes modalIn {
  0% {transform: translateY(60px) scale(.97); opacity: 0.3;}
  100% {transform: none; opacity: 1;}
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.21rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
  font-size: 1rem;
}
.cookie-category input[type='checkbox'] {
  accent-color: #6DC8A7;
  width: 17px; height: 17px;
}
.cookie-category .cookie-essential {
  accent-color: #204265;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;top: 14px;right: 17px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #204265;
  cursor: pointer;
  border-radius: 7px;
  padding: 2px 7px;
  transition: background .12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #6DC8A7;
  color: #fff;
}


/* --- UTILITIES & GEOMETRIC DECOR --- */
.round {
  border-radius: 999px !important;
}
.text-center {text-align:center;}
.mt-0 {margin-top:0!important;}
.mb-0 {margin-bottom:0!important;}
.mt-16 {margin-top:16px!important;}
.mb-16 {margin-bottom:16px!important;}

::-webkit-scrollbar {
  width: 9px;
  background: #E1F2EC;
}
::-webkit-scrollbar-thumb {
  background: #20426566;
  border-radius: 7px;
}

/* --- FONT IMPORTS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600;700&display=swap');
