/* ===============================================
   RESET & BASE TYPOGRAPHY
   =============================================== */
html {
  box-sizing: border-box;
  font-size: 16px; /* Responsive correction through media queries */
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  background: #FAFAFA;
  color: #2A2D34;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}
a {
  color: #30475E;
  text-decoration: none;
  transition: color 0.18s;
}
a:focus {
  outline: 2px dashed #30475E;
  outline-offset: 2px;
}
a:hover {
  color: #F5A623;
}
ul, ol {
  margin: 0 0 1.5em 1.25em;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #30475E;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px 0;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; margin-top: 0; }
h2 { font-size: 1.5rem; margin-top: 24px; }
h3 { font-size: 1.125rem; margin-top: 20px; }
h4, h5, h6 { font-size: 1rem; margin-top: 16px; }
p { margin: 0 0 16px 0; }
strong, b { font-weight: 600; }

button, .cta, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
  transition: background .16s, color .16s, box-shadow .18s;
}
button:focus, .cta:focus {
  outline: 2px solid #F5A623;
  outline-offset: 3px;
}

/* ===============================================
   LAYOUT CONTAINERS & FLEXBOX SYSTEM
   =============================================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(48, 71, 94, 0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  background: #F7F9FB;
  border-radius: 12px;
  padding: 32px 16px;
  margin-bottom: 32px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .content-wrapper, .section, .text-section {
    padding: 16px 8px;
    gap: 16px;
  }
  .section { margin-bottom: 36px; }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ===============================================
   HEADER & NAVIGATION
   =============================================== */
header {
  background: #FFFFFF;
  border-bottom: 1px solid #EAEAEA;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1010;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
header .logo {
  display: flex;
  align-items: center;
  margin-right: 24px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #30475E;
  padding: 8px 4px;
  border-radius: 4px;
  letter-spacing: 0.01em;
  transition: background .18s, color .16s;
}
header nav a:hover,
header nav a.active {
  color: #F5A623;
  background: #F6EEDE;
}
.cta.primary {
  background: #30475E;
  color: #FFFFFF;
  border-radius: 6px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 16px;
  box-shadow: 0 2px 12px 0 rgba(48, 71, 94, 0.07);
  border: none;
  transition: filter 0.17s, box-shadow 0.18s, background 0.17s;
}
.cta.primary:hover, .cta.primary:focus {
  background: #F5A623;
  color: #30475E;
  filter: brightness(102%);
  box-shadow: 0 4px 16px 0 rgba(245, 166, 35, 0.12);
}
.mobile-menu-toggle {
  display: none;
  margin-left: 18px;
  padding: 8px;
  min-width: 42px;
  min-height: 42px;
  border-radius: 8px;
  background: #F6F6F6;
  color: #30475E;
  font-size: 1.4rem;
  box-shadow: 0 1px 4px rgba(60,70,90,0.03);
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E9EBEF;
  color: #F5A623;
}

@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta.primary {
    margin-left: 0;
    margin-right: 10px;
    padding: 11px 18px;
    font-size: 0.97rem;
  }
}

/* ===============================================
   MOBILE MENU
   =============================================== */
.mobile-menu {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(48,71,94,0.95);
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.4, 0.1, 0.23, 1);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 24px 0 0;
  font-size: 2rem;
  background: none;
  color: #FFF;
  border-radius: 4px;
  padding: 4px 10px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F5A623;
  color: #30475E;
}
.mobile-nav {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 0 30px;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 4px;
  min-width: 120px;
  border-radius: 5px;
  background: none;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F5A623;
  color: #2A2D34;
}

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

/* ===============================================
   HERO SECTIONS
   =============================================== */
.hero {
  min-height: 290px;
  background: #F7F9FB;
  display: flex;
  align-items: center;
  padding: 60px 0 40px;
  border-radius: 0 0 24px 24px;
}
.hero .container { justify-content: center; }
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
  max-width: 670px;
}
.hero h1 {
  font-size: 2.25rem;
  color: #30475E;
  font-weight: 800;
}
.hero p {
  font-size: 1.25rem;
  color: #405159;
  margin-bottom: 8px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

@media (max-width: 768px) {
  .hero {
    min-height: 180px;
    padding: 36px 0 14px;
    border-radius: 0 0 12px 12px;
  }
  .hero .content-wrapper {
    gap: 16px;
    padding: 0;
  }
  .hero h1 {
    font-size: 1.32rem;
  }
}

/* ===============================================
   LISTS, FEATURES & ICON GRIDS
   =============================================== */
.feature-grid, .outcomes-grid, .methods-grid, .service-features, .persona-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
  align-items: stretch;
  justify-content: flex-start;
}
.feature-grid li, .outcomes-grid > div, .methods-grid > div, .persona-grid > div, .service-features > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 22px 18px;
  box-shadow: 0 1.5px 8px 0 rgba(48, 71, 94, 0.06);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 280px;
  flex: 1 1 220px;
  font-size: 1rem;
  color: #2A2D34;
  transition: box-shadow 0.19s, transform 0.15s;
}
.feature-grid li:hover, .outcomes-grid > div:hover, .methods-grid > div:hover, .persona-grid > div:hover, .service-features > div:hover {
  box-shadow: 0 3px 18px 0 rgba(245, 166, 35, 0.08);
  transform: translateY(-4px) scale(1.012);
}
.feature-grid img, .outcomes-grid img, .methods-grid img, .service-features img, .persona-grid img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 8px;
  border-radius: 8px;
  background: #F7F9FB;
  box-shadow: 0px 1.5px 5px 0 rgba(48,71,94,0.03);
}

@media (max-width: 768px) {
  .feature-grid, .outcomes-grid, .methods-grid, .service-features, .persona-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid li, .outcomes-grid > div, .methods-grid > div, .persona-grid > div, .service-features > div {
    min-width: 0; max-width: none; width: 100%;
  }
}

/* ===============================================
   TESTIMONIALS
   =============================================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #F6EEDE;
  border-radius: 12px;
  box-shadow: 0 1.5px 8px 0 rgba(48,71,94,0.04);
  padding: 20px;
  margin-bottom: 20px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #222932;
  font-size: 1.05rem;
  min-width: 0;
  max-width: 520px;
  transition: box-shadow 0.17s, background 0.12s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px 0 rgba(48, 71, 94, 0.09);
  background: #FFF9F1;
}
.testimonial-card p {
  margin: 0 0 6px 0;
  color: #222932;
  font-size: 1.11rem;
  font-weight: 500;
}
.testimonial-card span {
  color: #6E7B89;
  font-size: 0.99rem;
  font-style: italic;
}

.impact-stats {
  background: #E9EBEF;
  border-radius: 10px;
  padding: 20px;
  margin: 16px 0 0 0;
  color: #30475E;
}
.impact-stats h3 {
  margin-bottom: 10px;
  color: #30475E;
  font-size: 1.14rem;
}
.impact-stats ul {
  margin: 0;
  padding-left: 18px;
  color: #30475E;
}
.quote-highlights blockquote {
  font-size: 1.21rem;
  color: #30475E;
  font-style: italic;
  border-left: 4px solid #F5A623;
  padding-left: 12px;
  margin: 16px 0 2px 0;
}
.quote-highlights cite {
  font-size: 0.98rem;
  color: #8996A4;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .testimonial-card, .impact-stats, .quote-highlights blockquote {
    padding: 14px 9px;
    font-size: 1rem;
  }
}

/* ===============================================
   CARD & GRID COMPONENTS
   =============================================== */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.card {
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 1.5px 10px 0 rgba(48,71,94,0.06);
  padding: 22px 18px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 250px;
  transition: box-shadow 0.17s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 5px 20px 0 rgba(245,166,35,.11);
  transform: translateY(-3px) scale(1.012);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

@media (max-width: 768px) {
  .card-container, .card-grid, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* ===============================================
   FAQ LIST
   =============================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-list > div {
  background: #F7F9FB;
  border-radius: 8px;
  padding: 18px 14px 12px 14px;
  box-shadow: 0 1.5px 8px 0 rgba(34, 41, 50, 0.05);
  margin-bottom: 12px;
}
.faq-list h3 {
  font-size: 1.12rem;
  margin-bottom: 6px;
  color: #30475E;
}

/* ===============================================
   PERSONA DESCRIPTIONS
   =============================================== */
.persona-descriptions {
  margin-top: 16px;
}
.persona-descriptions ul {
  padding-left: 16px;
  color: #2A2D34;
  margin: 0;
}

/* ===============================================
   SYLLABUS & TOOLS
   =============================================== */
.syllabus-overview, .tools-descriptions {
  margin-top: 22px;
  background: #F7F9FB;
  border-radius: 9px;
  padding: 14px 14px 10px 18px;
  color: #30475E;
}
.syllabus-overview h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  margin-bottom: 4px;
}

/* ===============================================
   CONTACT INFO
   =============================================== */
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info li {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  color: #30475E;
  gap: 10px;
}
.contact-info img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #F7F9FB;
}
.map-embed {
  margin-top: 20px;
  color: #2A2D34;
}
.map-embed a {
  color: #F5A623;
  font-weight: bold;
  text-decoration: underline;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ===============================================
   CALL TO ACTION SECTIONS
   =============================================== */
section.cta {
  background: #30475E;
  color: #FFFFFF;
  border-radius: 18px;
  margin-bottom: 48px;
  padding: 48px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.cta .container { align-items: center; }
section.cta .content-wrapper { align-items: center; gap: 18px; }
section.cta h2 {
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 800;
}
section.cta .cta.primary {
  background: #F5A623;
  color: #30475E;
  margin-left: 0;
  font-size: 1.14rem;
  padding: 13px 34px;
  box-shadow: 0 3px 14px 0 rgba(245,166,35,0.13);
}
section.cta .cta.primary:hover, section.cta .cta.primary:focus {
  background: #fff1d0;
  color: #30475E;
}
@media (max-width: 768px) {
  section.cta { padding: 24px 0; border-radius: 10px; margin-bottom: 24px; }
  section.cta h2 { font-size: 1.2rem; }
}

/* ===============================================
   FOOTER
   =============================================== */
footer {
  background: #F2F2F2;
  color: #23283D;
  border-top: 1px solid #EAEAEA;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 32px 0 0 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1140px;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: #30475E;
  padding: 5px 0;
  border-radius: 2px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color .14s;
  font-size: 0.99rem;
}
footer nav a:hover {
  color: #F5A623;
}
.footer-contact {
  margin-top: 0;
  color: #405159;
}
.brand-inspiration {
  margin-top: 14px;
  font-size: 0.95rem;
  color: #8693AA;
}
@media (max-width: 992px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  footer { padding: 18px 0 0 0; }
  .footer-contact { font-size: 0.96rem; }
  .brand-inspiration { margin-top: 7px; }
}

/* ===============================================
   COOKIE CONSENT BANNER
   =============================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3100;
  background: #FFFFFF;
  color: #30475E;
  border-top: 1.5px solid #F5A623;
  box-shadow: 0 -2px 18px rgba(48, 71, 94, 0.07);
  padding: 18px 24px 18px 24px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  animation: cookie-slidein 0.45s cubic-bezier(.4, .1, .23, 1);
}
@keyframes cookie-slidein {
 from { transform: translateY(100%); opacity: 0; }
 to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 9px 16px;
  border-radius: 5px;
  font-size: 1rem;
  border: none;
  font-weight: 500;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(48,71,94,0.08);
  transition: background 0.13s, color 0.13s, box-shadow 0.13s;
}
.cookie-banner .accept {
  background: #F5A623;
  color: #30475E;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #FFD48B;
  color: #30475E;
}
.cookie-banner .reject {
  background: #30475E;
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #223348;
  color: #F5A623;
}
.cookie-banner .settings {
  background: #F7F9FB;
  color: #30475E;
  border: 1px solid #EAEAEA;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #EAEAEA;
  color: #30475E;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  z-index: 4000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(48,71,94,0.68);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieFadein 0.33s cubic-bezier(.45, .14, .33, 1);
}
@keyframes cookieFadein {
 from { opacity: 0; }
 to { opacity: 1; }
}
.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 8px 36px 0 rgba(48, 71, 94, 0.21);
  padding: 32px 24px;
  min-width: 320px;
  max-width: 98vw;
  color: #30475E;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalZoomin 0.35s cubic-bezier(.43, .07, .39, .93);
}
@keyframes modalZoomin {
 from { transform: scale(0.95); opacity: 0; }
 to { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  margin: 0 0 12px 0;
  color: #30475E;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.055rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #F5A623;
  width: 19px;
  height: 19px;
  border-radius: 4px;
}
.cookie-category label {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #30475E;
  font-weight: 400;
}
.cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-modal-action {
  background: #F5A623;
  color: #30475E;
  font-weight: 600;
  border-radius: 5px;
  border: none;
  padding: 8px 17px;
  font-size: 1.03rem;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-action:hover, .cookie-modal-action:focus { background: #FFD48B; }
.cookie-modal-close {
  background: #F6F6F6;
  color: #30475E;
  border-radius: 4px;
  padding: 6px 15px;
  font-size: 1rem;
  margin-left: 10px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #EAEAEA;
  color: #2A2D34;
}

@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 18px 8px;
    min-width: 0;
  }
}

/* ===============================================
   RESPONSIVE FONT SIZE & SPACING
   =============================================== */
@media (max-width: 520px) {
  html { font-size: 15px; }
}
@media (max-width: 370px) {
  html { font-size: 14px; }
}

/* ===============================================
   ANIMATIONS & MICRO-INTERACTIONS
   =============================================== */
.cta.primary, button, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-modal-action {
  transition: background 0.14s, color 0.14s, box-shadow 0.16s, filter 0.11s, outline 0.15s;
}
ul li, ol li {
  transition: color 0.13s, background 0.13s;
}
.card,
.testimonial-card,
.feature-grid li,
.outcomes-grid > div,
.methods-grid > div,
.persona-grid > div,
.service-features > div {
  transition: box-shadow 0.18s, transform 0.14s, background 0.14s;
}

/* ===============================================
   ACCESSIBILITY IMPROVEMENTS
   =============================================== */
:focus-visible {
  outline: 2.5px solid #F5A623 !important;
  outline-offset: 2px;
}

/* ===============================================
   PRINT ADJUSTMENTS
   =============================================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #222; }
}
