/* ===========================================================
   CSS RESET & BASE TYPOGRAPHY
   =========================================================== */
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, 
header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F6F6F6;
  color: #153964;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  list-style: none;
}
a {
  color: #153964;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D6B837;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #153964;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h1 { font-size: 2rem; margin-bottom: 16px; }
h2 { font-size: 1.5rem; margin-bottom: 14px; }
h3 { font-size: 1.17rem; margin-bottom: 12px; }
h4, h5, h6 { margin-bottom: 10px; }
@media (min-width: 600px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
}
p, li, dd {
  color: #23416C;
  font-size: 1rem;
  margin-bottom: 14px;
  font-family: 'Roboto', Arial, sans-serif;
}
strong { font-weight: 700; }

/* ======================
   LAYOUT CONTAINERS
   ====================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(34,40,52,0.065);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .content-wrapper {
    gap: 32px;
  }
  .section {
    padding: 56px 32px;
  }
}

/* ======================
   HEADER & MAIN NAV
   ====================== */
header {
  padding: 0;
  background: #F6F6F6;
  border-bottom: 1.5px solid #E6E9EC;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 72px;
}
header a img {
  height: 45px;
  margin-right: 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #153964;
  transition: color 0.2s;
  padding: 3px 6px;
  border-radius: 6px;
}
header nav a:hover, header nav a:focus {
  color: #D6B837;
  background: #f9f7f3;
}
.cta-button {
  background: #153964;
  color: #fff !important;
  padding: 11px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(34,40,52,0.035);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
  display: inline-block;
  margin-left: 22px;
  margin-bottom: 0;
  letter-spacing: 0.02em;
  text-align: center;
  min-width: 130px;
}
.cta-button:hover, .cta-button:focus {
  background: #D6B837;
  color: #153964 !important;
  box-shadow: 0 3px 18px rgba(214,184,55, .16);
}
.cta-button.secondary {
  background: #fff;
  color: #153964 !important;
  border: 1px solid #D6B837;
  margin-left: 0;
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: #D6B837;
  color: #153964 !important;
}
.cta-button.large {
  font-size: 1.25rem;
  padding: 16px 36px;
}
.cta-link {
  margin-left: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #153964;
  text-decoration: underline;
  transition: color .15s;
}
.cta-link:hover, .cta-link:focus {
  color: #D6B837;
}

@media (max-width: 1000px) {
  header nav {
    gap: 12px;
  }
  .cta-button, .cta-link {
    margin-left: 8px;
  }
}
@media (max-width: 900px) {
  header .container { gap:16px; }
  .cta-link { margin-left: 12px; }
}

/* ======================
   HERO SECTION (HOME)
   ====================== */
.hero-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(21,57,100,0.06);
  margin: 36px 0 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-section .content-wrapper {
  align-items: flex-start;
}
.hero-section h1 {
  color: #153964;
  font-size: 2.3rem;
  margin-bottom: 10px;
}
.hero-section p {
  font-size: 1.16rem;
  color: #354C6C;
  margin-bottom: 18px;
}
.hero-section .cta-button {
  margin-left: 0;
  margin-top: 8px;
}
@media (min-width: 800px) {
  .hero-section .container, .hero-section .content-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
  }
  .hero-section .content-wrapper {
    min-width: 420px;
    max-width: 630px;
  }
  .hero-section h1 {
    font-size: 2.8rem;
  }
}

/* ======================
   FLEXBOX PATTERNS (MANDATORY)
   ====================== */
.card-container, .card-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(34,40,52,0.085);
  padding: 28px 20px 24px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 9px 32px rgba(21,57,100,0.14);
  z-index: 2;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F6F6F6;
  border-radius: 13px;
  color: #1f2937;
  box-shadow: 0 1px 8px rgba(46,51,61,0.07);
  flex: 1 1 340px;
  position: relative;
  min-width: 0;
  transition: box-shadow .18s;
}
.testimonial-card p {
  color: #1f2937;
  font-size: 1.07rem;
  margin-bottom: 8px;
  font-style: italic;
}
.testimonial-meta {
  font-size: .97rem;
  color: #153964;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 22px rgba(214,184,55,0.14);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.partner-quote {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #f9f9f6;
  border-radius: 11px;
  padding: 20px 32px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px rgba(21,57,100,0.04);
}
.partner-quote img {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  margin-right: 4px;
}
.partner-quote .quote-meta {
  color: #D6B837;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ======================
   CARDS & SERVICE BLOCKS
   ====================== */
.service-card, .course-card, .resource-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(21,57,100,0.045);
  padding: 28px 20px 20px 22px;
  margin-bottom: 20px;
  min-width: 270px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.23s, transform 0.23s;
}
.service-card:hover, .course-card:hover, .resource-card:hover {
  box-shadow: 0 7px 28px rgba(21,57,100,0.10);
  transform: translateY(-6px) scale(1.012);
}
.service-price, .course-price {
  color: #D6B837;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: 0.007em;
}
.service-listing,
.resource-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

@media (max-width: 850px) {
  .service-listing, .resource-list, .card-container, .content-grid {
    gap: 16px;
  }
  .service-card, .course-card, .resource-card, .card {
    flex: 1 1 240px;
    min-width: 220px;
  }
}

/* ================================
   FEATURE GROUPS (CHECK, LIST, ETC)
   ================================= */
.features-section {
  background: #f9f9f6;
  border-radius: 14px;
  box-shadow: 0 1px 12px rgba(21,57,100,0.045);
  margin-top: 20px;
}
.features-section h2 {
  margin-bottom: 16px;
}
.features-section ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.features-section li {
  color: #354C6C;
  font-size: 1.09rem;
  padding-left: 0.2em;
}

/* ======================
   CTA BLOCKS & PREVIEWS
   ====================== */
.cta-section {
  background: #153964;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 2px 18px rgba(21,57,100,0.10);
  margin: 48px 0 28px 0;
  padding: 48px 16px 40px;
  color: #fff;
}
.cta-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 18px;
}
.cta-section .cta-button.large {
  margin-top: 14px;
  margin-bottom: 18px;
  font-size: 1.19rem;
  min-width: 170px;
}
.cta-section .cta-link {
  color: #fff;
  text-decoration: underline;
  margin-left: 14px;
  font-size: 1.03rem;
}
.cta-section .cta-link:hover {
  color: #D6B837;
}

/* ======================
   ADDRESS, CONTACT & FOOTER
   ====================== */
.address-box, .email-display, .hours-display {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 7px rgba(21,57,100,0.045);
  padding: 16px 18px;
  margin-bottom: 18px;
  font-size: 1.02rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #23416C;
}
.address-box strong, .email-display strong, .hours-display strong {
  color: #153964;
  font-size: 1.03rem;
}

footer {
  background: #F6F6F6;
  border-top: 1.5px solid #E6E9EC;
  padding: 32px 0 0 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 14px;
}
footer nav a {
  color: #23416C;
  font-size: .98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color .15s;
}
footer nav a:hover, footer nav a:focus {
  color: #D6B837;
}
.footer-contact p, .footer-contact a {
  font-size: .95rem;
  color: #354C6C;
  margin-bottom: 6px;
}
footer a img {
  height: 40px;
  margin-bottom: 18px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* ======================
   MOBILE BURGER MENU
   ====================== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 17px;
  right: 18px;
  z-index: 1400;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 10px rgba(21,57,100,0.10);
  font-size: 2rem;
  color: #153964;
  cursor: pointer;
  transition: box-shadow .19s, background .19s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F6F6F6;
  box-shadow: 0 7px 28px rgba(21,57,100,0.10);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 425px;
  height: 100dvh;
  background: #fff;
  box-shadow: -2px 0 26px rgba(21,57,100,0.14);
  z-index: 1500;
  transform: translateX(110%);
  transition: transform 0.38s cubic-bezier(.55, .34, .36, 1.09);
  display: flex;
  flex-direction: column;
  padding: 28px 24px 0 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 13px;
  right: 15px;
  font-size: 2rem;
  background: #fff;
  border: none;
  border-radius: 50%;
  color: #153964;
  width: 42px;
  height: 42px;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(21,57,100,0.08);
  z-index: 1600;
  transition: background .17s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F6F6F6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 44px 0 0 0;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: #153964;
  padding: 8px 7px 7px 2px;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6F6F6;
  color: #D6B837;
}
@media (min-width: 1000px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
  header nav {
    display: flex;
  }
}
@media (max-width: 999px) {
  header nav {
    display: none !important;
  }
  .cta-button {
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  .mobile-menu {
    padding: 18px 6vw 0 8vw;
    width: 100vw;
    max-width: none;
  }
  .mobile-nav {
    gap: 18px;
    margin: 38px 0 0 0;
  }
}

/* ======================
   COOKIE CONSENT BANNER
   ====================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2200;
  background: #f9f7f3;
  box-shadow: 0 -2px 24px rgba(21,57,100,0.09);
  width: 100%;
  padding: 22px 12px 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(.55, .19, .35, 1.18);
}
.cookie-banner.hide {
  transform: translateY(180%);
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 6px;
}
.cookie-banner .cookie-btn {
  border: none;
  border-radius: 7px;
  padding: 10px 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 0;
  box-shadow: 0 1px 7px rgba(21,57,100,0.036);
  transition: background .17s, color .17s, box-shadow .18s;
}
.cookie-banner .accept-btn {
  background: #D6B837;
  color: #153964;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: #153964;
  color: #fff;
}
.cookie-banner .reject-btn {
  background: #fff;
  color: #153964;
  border: 1px solid #D6B837;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: #D6B837;
  color: #153964;
  border-color: #153964;
}
.cookie-banner .settings-btn {
  background: #F6F6F6;
  color: #153964;
  border: 1px solid #E9E7E2;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #E9E7E2;
  color: #153964;
}

@media (min-width: 600px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 26px 38px 24px 38px;
    font-size: 1.05rem;
  }
  .cookie-banner .cookie-actions {
    margin-top: 0;
  }
}

/* ===== COOKIE SETTINGS MODAL ===== */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2300;
  background: rgba(21,57,100,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: background 0.22s;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  padding: 36px 24px 32px 30px;
  border-radius: 13px;
  box-shadow: 0 4px 40px rgba(21,57,100,0.13);
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
.cookie-modal-content h2 {
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category label {
  font-size: 1.05rem;
  color: #153964;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 0;
}
.cookie-category input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: #D6B837;
}
.cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  color: #153964;
  border: none;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  transition: background .14s;
  cursor: pointer;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #F6F6F6;
}
@media (max-width: 500px) {
  .cookie-modal-content {
    padding: 20px 6vw 22px 7vw;
    min-width: 0;
  }
}

/* ======================
   FAQ, DL, ETC.
   ====================== */
dt {
  font-weight: 600;
  color: #153964;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 7px;
}
dd {
  margin-bottom: 12px;
  color: #23416C;
}

/* ======================
   UTILITY CLASSES
   ====================== */
.text-section {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #23416C;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

/* ======================
   MEDIA QUERIES FOR SPACING & FLEX DIRECTION
   ====================== */
@media (max-width: 900px) {
  .container { padding: 0 8px; }
  .section { padding: 28px 6px; }
}
@media (max-width: 768px) {
  header .container, .footer .container {
    flex-direction: column;
    gap: 10px;
    min-height: unset;
  }
  .card-container, .service-listing, .content-grid, .resource-list {
    gap: 14px;
    flex-direction: column;
  }
  .card, .service-card, .resource-card {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    font-size: 1rem;
  }
}

/* ======================
   ANIMATIONS & INTERACTIONS
   ====================== */
.card, .service-card, .course-card, .resource-card, .testimonial-card, .partner-quote {
  transition: box-shadow 0.21s, transform 0.21s;
}
.card:hover, .service-card:hover, .course-card:hover, .resource-card:hover,
.testimonial-card:hover, .partner-quote:hover {
  box-shadow: 0 8px 28px rgba(21,57,100,0.15);
  transform: translateY(-4px) scale(1.008);
  z-index: 3;
}

button:focus, .cta-button:focus {
  outline: 2px solid #D6B837;
  outline-offset: 2px;
}

::-webkit-input-placeholder { color: #23416C; opacity: 0.85; }
::-moz-placeholder { color: #23416C; opacity: 0.85; }
:-ms-input-placeholder { color: #23416C; opacity: 0.85; }
::placeholder { color: #23416C; opacity: 0.85; }

/* ======================
   FONT IMPORTS
   ====================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,500,700&display=swap');

/* === END OF STYLE === */