/* --- CSS Reset & Normalize (mobile-first) --- */
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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F5F6FA;
  font-family: 'Roboto', Arial, sans-serif;
  color: #18314a;
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-size: 1rem;
  position: relative;
}
img, picture, video {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: #204A70;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #C05B00;
  outline: none;
}
button, input, select, textarea {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
}

/* --- Container, Section, Responsive wrappers --- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section, section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* --- Typography (Scandinavian clean) --- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #204A70;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li, .policy ul li, .text-section p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #18314a;
}
ul, ol {
  margin-left: 18px;
  margin-bottom: 16px;
}
strong {
  color: #204A70;
  font-weight: 700;
}
.secondary-cta-text, .enrollment-info, .confirmation-message p, .section .tip-summaries p, .section .tip-summaries li {
  color: #496180;
  font-size: 1rem;
}

/* --- Header & Navigation --- */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(32,74,112,0.04);
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 18px;
}
header img {
  height: 40px;
  margin-right: 18px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
}
header nav a {
  color: #204A70;
  padding: 4px 7px;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
header nav a:hover,
header nav a:focus {
  background: #F5F6FA;
  color: #C05B00;
}
.cta-primary {
  padding: 11px 24px;
  background: #204A70;
  color: #fff;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(32,74,112,0.09);
  letter-spacing: .01em;
  font-size: 1.07rem;
  margin-left: 12px;
  transition: background .18s, box-shadow .2s, color .15s;
  border: 1px solid transparent;
  text-align: center;
  cursor: pointer;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #C05B00;
  color: #fff;
  box-shadow: 0 2px 18px rgba(192,91,0,.13);
  border: 1px solid #C05B00;
}
.cta-secondary {
  background: #F5F6FA;
  color: #204A70;
  border-radius: 22px;
  padding: 10px 20px;
  border: 1px solid #D8DEE9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background .18s, color .18s, box-shadow .15s;
  cursor: pointer;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #204A70;
  color: #fff;
  box-shadow: 0 3px 14px rgba(32,74,112,0.14);
}

/* --- Mobile Menu Styles --- */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}
.mobile-menu-close {
  display: none;
}
@media (max-width: 1020px) {
  header nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #204A70;
    background: #F5F6FA;
    border-radius: 7px;
    width: 44px;
    height: 44px;
    border: 1px solid #e4e7ed;
    cursor: pointer;
    position: relative;
    z-index: 51;
  }
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px 28px 28px;
    transform: translateX(-110%);
    transition: transform .3s cubic-bezier(.45,.08,.52,1);
    box-shadow: 0 4px 34px rgba(32,74,112,0.12);
    width: 85vw;
    max-width: 370px;
    height: 100vh;
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 18px;
    right: 15px;
    font-size: 2rem;
    color: #204A70;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 61;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    gap: 18px;
  }
  .mobile-nav a {
    color: #204A70;
    font-size: 1.17rem;
    padding: 7px 0 7px 0;
    border-radius: 6px;
    transition: background .17s, color .13s;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: #F5F6FA;
    color: #C05B00;
  }
}

/* --- Hero Section --- */
.hero {
  background: #ffffff;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(32,74,112,0.07);
}
.hero h1 {
  font-size: 2.30rem;
  color: #204A70;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.14rem;
  margin-bottom: 24px;
  color: #314961;
}

/* --- Features Section --- */
.features {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(32,74,112,0.07);
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 30px;
}
.feature {
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 295px;
  background: #F5F6FA;
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: 0 2px 9px rgba(32,74,112,0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .17s;
  border: 1px solid #e8ecf2;
}
.feature:hover {
  box-shadow: 0 10px 26px rgba(32,74,112,0.11);
  transform: translateY(-2px) scale(1.015);
  border-color: #dde4ef;
}
.feature img {
  height: 42px;
}
.feature h3 {
  font-size: 1.11rem;
}
.feature p {
  color: #637493;
  font-size: 1rem;
}

/* --- Cards, Card containers, Grids, Flex Rules --- */
.card-container, .tools-grid, .ebooks-list, .modules-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .case-study, .about .text-section, .team .text-section, .why-us .text-section {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 13px rgba(32,74,112,0.07);
  padding: 28px 22px;
  margin-bottom: 20px;
}
.card {
  position: relative;
  margin-bottom: 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;
}

/* --- Testimonials --- */
.testimonials {
  background: #F5F6FA;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(32,74,112,0.06);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(32,74,112,0.07);
  border: 1px solid #e7ecf2;
  transition: box-shadow .16s;
}
.testimonial-card p {
  color: #18314a;
  font-size: 1.07rem;
  font-style: italic;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.01rem;
}
.star-rating {
  color: #EF8A24;
  font-size: 1.17rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 2px;
}

/* --- Process / Steps / Timeline --- */
.process {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 15px rgba(32,74,112,0.09);
}
.step-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 0;
}
.step-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 13px 16px;
  background: #F5F6FA;
  border-radius: 11px;
  box-shadow: 0 2px 7px rgba(32,74,112,0.03);
  font-size: 1rem;
}
.step-list li span {
  background: #204A70;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.09rem;
  margin-right: 10px;
}

.progress-timeline {
  margin-top: 38px;
  background: #f5f6fa;
  border-radius: 12px;
  padding: 24px 20px;
}
.progress-timeline h3 {
  font-size: 1.04rem;
  margin-bottom: 11px;
  color: #204A70;
}
.progress-timeline ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #315377;
}

/* --- FAQ / Accordion --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 22px 18px;
  box-shadow: 0 2px 7px rgba(32,74,112,0.03);
  border: 1px solid #e6ecf4;
  margin-bottom: 12px;
  transition: box-shadow .12s;
}
.faq-item h2 {
  font-size: 1.16rem;
  margin-bottom: 11px;
  color: #204A70;
  cursor: pointer;
  user-select: none;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-item .text-section {
  font-size: 1rem;
}

.contact-prompt {
  margin-top: 26px;
  font-size: 1rem;
}

/* --- Ebooks, Resources, Tools Grid --- */
.ebooks-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.ebooks-list li strong {
  color: #C05B00;
}
.ebooks-list li span {
  color: #4F5E6E;
  font-size: .99rem;
  display: block;
  margin-top: 6px;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
 }
.tools-grid > div {
  flex: 1 1 235px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(32,74,112,0.06);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  border: 1px solid #e5eaf0;
  transition: box-shadow .15s, transform .13s;
}
.tools-grid > div:hover {
  box-shadow: 0 4px 16px rgba(32,74,112,0.11);
  transform: translateY(-3px) scale(1.016);
}
.tools-grid img {
  height: 38px;
}

.tip-summaries ul {
  margin-left: 15px;
  color: #637493;
  font-size: 0.99rem;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

/* --- Contact Info block --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  font-size: 1.02rem;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #314961;
}
.contact-info a {
  color: #204A70;
  font-weight: 500;
  text-decoration-skip-ink: auto;
}
.quick-contact-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin: 18px 0;
}
.quick-contact-icons img {
  height: 28px;
}

.map-embed {
  margin-top: 20px;
}

/* --- CTA Section --- */
.cta {
  background: #204A70;
  color: #fff;
  border-radius: 18px;
  padding: 36px 24px;
  box-shadow: 0 3px 17px rgba(32,74,112,0.09);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cta h2 {
  color: #fff;
  margin-bottom: 14px;
}
.cta p, .cta .secondary-cta-text {
  color: #f7f7f7;
  font-size: 1.01rem;
}
.cta-primary {
  margin: 12px 0;
}

/* --- Footer --- */
footer {
  background: #fff;
  border-top: 1px solid #e8ecf2;
  padding: 36px 0 18px 0;
  box-shadow: 0 -3px 14px rgba(32,74,112,0.04);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
footer img {
  height: 36px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: #204A70;
  font-size: 0.97rem;
  padding: 3px 0;
  border-radius: 4px;
  transition: color .18s, background .112s;
}
footer nav a:hover, footer nav a:focus {
  color: #C05B00;
  background: #F5F6FA;
}
.contact-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #637493;
  font-size: 0.97rem;
  margin-top: 7px;
}
.contact-footer img {
  height: 20px;
  margin-right: 9px;
  vertical-align: middle;
  display: inline;
}

/* --- Policy Pages & Legal / Privacy / Terms --- */
.policy .text-section {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 9px rgba(32,74,112,0.07);
  padding: 26px 19px;
}
.policy ul {
  margin: 14px 0 16px 24px;
}
.policy ul li {
  padding-left: 10px;
  margin-bottom: 7px;
}

/* --- Thank You / Confirmation --- */
.thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(32,74,112,.06);
  padding: 46px 20px;
  margin-top: 80px;
}
.confirmation-message {
  margin-bottom: 18px;
  color: #3B536C;
  font-size: 1.05rem;
}

/* --- Utility / Responsive Classes --- */
@media (max-width: 800px) {
  .footer .container, .container {
    padding: 0 8vw;
  }
  .feature-grid, .tools-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .section, section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
  .content-wrapper {
    gap: 21px;
  }
  .feature-grid, .tools-grid {
    flex-direction: column;
    gap: 16px;
  }
  .hero, .features, .testimonials, .process, .cta, .policy .text-section, .thank-you {
    padding: 22px 5px;
    border-radius: 0px 0px 20px 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .step-list li {
    flex-direction: row;
    align-items: flex-start;
  }
  .tools-grid > div, .feature {
    min-width: unset;
    max-width: 100%;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.05rem; }
  .footer .container, .container {
    padding: 0 2vw;
  }
  footer .container {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  .cta {
    border-radius: 14px;
    padding: 23px 3px;
  }
}

/* --- Transitions & Effects --- */
.card, .feature, .tools-grid > div, .testimonial-card, .faq-item {
  transition: box-shadow .14s, transform .13s, border-color .13s;
}
.cta-primary, .cta-secondary {
  transition: background .18s, color .18s, box-shadow .15s, border .11s;
}

/* --- Animations --- */
@keyframes modalFadeIn {
  from { opacity:0; transform: translateY(28px); }
  to { opacity:1; transform: translateY(0); }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid #204A70;
  box-shadow: 0 -5px 24px rgba(32,74,112,0.11);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  z-index: 150;
  animation: modalFadeIn .33s;
}
.cookie-banner p {
  flex: 1 1 auto;
  color: #18314a;
  font-size: .97rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  padding: 9px 18px;
  border-radius: 19px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .98rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .17s,color .14s,box-shadow .13s,border .11s;
}
.cookie-banner .accept {
  background: #204A70;
  color: #fff;
  border: 1px solid #204A70;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #C05B00;
  border-color: #C05B00;
}
.cookie-banner .reject {
  background: #efefef;
  color: #204A70;
  border: 1px solid #c9cfd6;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #fff4e4;
  border-color: #EF8A24;
}
.cookie-banner .settings {
  background: none;
  color: #C05B00;
  border: 1px solid #C05B00;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #FFF4E4;
  color: #204A70;
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 17px 5px; }
  .cookie-banner .cookie-buttons { flex-wrap: wrap; }
}

/* --- Cookie Consent Modal --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 200;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(24,49,74,0.27);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modalFadeIn .29s;
}
.cookie-modal {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 8px 40px rgba(32,74,112,0.13);
  padding: 34px 22px 24px 22px;
  max-width: 360px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalFadeIn .4s;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.2rem;
  color: #204A70;
  margin-bottom: 11px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: .98rem;
}
.cookie-category input[type='checkbox'] {
  accent-color: #204A70;
  width: 17px;
  height: 17px;
  border-radius: 4px;
  border: 1px solid #dbe2eb;
}
.cookie-category.essential label {
  font-weight: 600;
}
.cookie-modal .modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 11px;
  justify-content: flex-end;
  margin-top: 13px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 16px;
  font-size: 1.3rem;
  background: none;
  border: none;
  color: #204A70;
  cursor: pointer;
  padding: 4px 7px;
  border-radius: 6px;
}
.cookie-modal-close:hover {
  background: #F5F6FA;
}
@media (max-width: 480px) {
  .cookie-modal { padding: 16px 8px 12px 8px; border-radius: 8px; }
}

/* --- Accessibility Focus --- */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid #C05B00;
  outline-offset: 2px;
}

/* --- Hide visually (for JS toggling) --- */
.visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; border: 0; padding: 0; margin: -1px; }

/* --- Links in Rich Areas --- */
.cta .cta-primary, .cta .cta-secondary, .cta a.cta-primary {
  margin: 23px 0 7px 0;
  font-size: 1.09rem;
}

/* --- Misc --- */
.module-desc {
  color: #4F5E6E;
  font-size: .98rem;
  margin-top: 4px;
}
.case-study {
  margin-bottom: 20px;
}

/* --- Prevent all CSS Grid or Columns on the layout --- */
/* [Intentionally left blank, enforced by linter/policy] */