/* ==== CSS RESET & BASE ==== */
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,  figcaption, figure, 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;
}
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F4F7FA;
  color: #22325a;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
a {
  color: #c36e0a;
  text-decoration: none;
  transition: color .2s;
}
a:hover,
a:focus { color: #2A3E6E; text-decoration: underline; }

ul, ol {
  list-style-position: inside;
  margin-left: 0;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
ul li img, ol li img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-right: 6px;
  background: #fff;
  padding: 3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #2a3e6e;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.13;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

blockquote {
  font-style: italic;
  background: #fff7ec;
  border-left: 4px solid #c36e0a;
  padding: 16px 18px;
  border-radius: 14px;
  margin-bottom: 12px;
  color: #22325a;
}
/* ==== UTILITIES & STRUCTURE ==== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 4px 24px 0 rgba(34, 50, 90, 0.05);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  padding: 32px 22px;
  position: relative;
  box-shadow: 0 2px 10px 0 rgba(200, 142, 10, 0.05), 0 1.5px 7px 0 rgba(34,62,110,0.06);
  transition: box-shadow .2s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(227, 145, 31, 0.11), 0 2px 12px 0 rgba(34,62,110,0.08);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff7ec;
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px 0 rgba(227, 145, 31, 0.05), 0 1.5px 7px 0 rgba(34,62,110,0.04);
  color: #22325a;
  flex-direction: column;
  transition: box-shadow .17s, transform .17s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(34,62,110,0.09);
  transform: translateY(-4px) scale(1.018);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0;
}
.team-card {
  background: #fff7ec;
  border-radius: 16px;
  padding: 22px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(227,145,31,0.08);
  margin-right: 14px;
  flex: 1 1 270px;
  min-width: 220px;
}
.team-bio {
  font-size: 1em;
  color: #22325a;
  font-family: 'Open Sans',Arial,sans-serif;
}
.map-placeholder {
  background: #f4f7fa;
  border-radius: 18px;
  padding: 14px 20px;
  font-size: 1rem;
  color: #787B93;
  margin-top: 12px;
}

/* ==== HEADER & NAV ==== */
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(42,62,110,0.07);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-bottom: 18px;
  position: sticky;
  top: 0;
  z-index: 2000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  height: 46px;
  width: auto;
  margin-right: 12px;
  border-radius: 12px;
  background: #f5eee9;
  padding: 3px 7px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #22325a;
  padding: 7px 13px;
  border-radius: 9px;
  transition: background .18s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #fff7ec;
  color: #c36e0a;
}
.cta-main {
  background: #e8911f;
  color: #fff;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  padding: 7px 20px;
  border-radius: 17px;
  box-shadow: 0 2px 9px 0 rgba(200,99,10,0.07);
  transition: background .2s, box-shadow .2s, color .2s, transform .15s;
  border: none;
  outline: none;
  font-size: 1.06rem;
  cursor: pointer;
  margin-left: 16px;
  letter-spacing: 0.01em;
}
.cta-main:hover, .cta-main:focus {
  background: #c36e0a;
  color: #fff;
  box-shadow: 0 3px 13px 0 rgba(179, 110, 10, 0.12);
  transform: translateY(-2px) scale(1.04);
}
.mobile-menu-toggle {
  display: none;
  background: #e8911f;
  color: #fff;
  border: none;
  font-size: 2.1rem;
  padding: 7px 11px;
  border-radius: 12px;
  margin-left: 18px;
  cursor: pointer;
  transition: background .2s, transform .18s;
  z-index: 2102;
}
.mobile-menu-toggle:hover {
  background: #c36e0a;
  transform: scale(1.07);
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(34,50,90,0.85);
  z-index: 2200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.55);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: #fff;
  color: #c36e0a;
  border: none;
  font-size: 2.4rem;
  margin: 22px 28px 0 0;
  border-radius: 12px;
  cursor: pointer;
  padding: 4px 15px;
  box-shadow: 0 2px 9px 0 rgba(34,50,90,0.09);
  transition: background .16s, color .13s;
  z-index: 9999;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff7ec;
  color: #2a3e6e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border-radius: 24px 0 0 24px;
  padding: 32px 28px 38px 32px;
  margin-top: 15vh;
  box-shadow: 0 6px 30px 0 rgba(34,50,90,0.16);
  min-width: 78vw;
  max-width: 94vw;
}
.mobile-nav a {
  display: block;
  font-size: 1.25rem;
  color: #2a3e6e;
  padding: 13px 16px;
  border-radius: 11px;
  margin-bottom: 6px;
  background: #fff;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 500;
  transition: background .14s, color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff7ec;
  color: #c36e0a;
}

/* ==== HERO, CTA, SECTIONS ==== */
.hero, .blog-hero, .thank-you-section {
  background: #fff7ec;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 55px 18px 45px 18px;
  box-shadow: 0 4px 24px 0 rgba(227,145,31,0.08), 0 2.5px 9px 0 rgba(34,62,110,0.07);
  text-align: left;
}
.hero .container, .blog-hero .container, .thank-you-section .container {
  align-items: flex-start;
  padding: 0 12px;
}
.hero h1, .blog-hero h1, .thank-you-section h1 {
  color: #c36e0a;
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.cta-final {
  margin-bottom: 70px;
  background: #fff;
  border-radius: 24px;
  padding: 44px 16px;
  text-align: center;
  box-shadow: 0 1.5px 6px 0 rgba(34,62,110,0.05);
}
.cta-final h2 {
  font-size: 2rem;
  color: #2a3e6e;
  margin: 0 0 18px 0;
}
.cta-final .cta-main { margin: 0 auto; margin-top: 10px; }

/* ==== FEATURES, CARDS, TESTIMONIALS ==== */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 4px 24px 0 rgba(34, 50, 90, 0.05);
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}
.features ul li {
  background: #fff7ec;
  border-radius: 14px;
  padding: 18px 18px 14px 18px;
  font-size: 1.04rem;
  color: #2A3E6E;
  box-shadow: 0 1.5px 8px 0 rgba(227,145,31,0.07);
  margin-bottom: 0;
  min-width: 240px;
  flex: 1 1 220px;
  font-family: 'Open Sans',Arial,sans-serif;
  transition: box-shadow .18s;
}
.features ul li:hover {
  box-shadow: 0 3px 14px 0 rgba(200,99,10,0.11);
}
.courses-overview ul, .courses-list ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.courses-overview ul li, .courses-list ul li {
  background: #fff;
  border-radius: 12px;
  padding: 13px 16px;
  color: #22325a;
  box-shadow: 0 2px 8px 0 rgba(34,50,90,0.04);
}

/* ==== TESTIMONIALS SECTION ==== */
.testimonials, .testimonials-list {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 25px;
  box-shadow: 0 4px 24px 0 rgba(34, 50, 90, 0.05);
}
.testimonials h2, .testimonials-list h1, .testimonials-list h2 {
  color: #c36e0a;
  margin-bottom: 18px;
}
.testimonial-card blockquote {
  background: transparent;
  border-left: none;
  padding: 0;
  margin-bottom: 8px;
}

/* ==== TEAM SUMMARY ==== */
.team-summary > .container > .content-wrapper > div {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* ==== FOOTER ==== */
footer {
  background: #2a3e6e;
  color: #fff;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  margin-top: 60px;
  padding-top: 30px;
  padding-bottom: 18px;
  box-shadow: 0 2px 16px 0 rgba(58,74,130,0.15);
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 38px;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer-brand img {
  height: 45px;
  width: auto;
  background: #fff7ec;
  border-radius: 11px;
  padding: 4px 7px;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-right: 15px;
}
.footer-nav a {
  color: #e8911f;
  font-weight: 500;
  font-size: 1rem;
  font-family: 'Montserrat',Arial,sans-serif;
  padding: 3px 10px;
  border-radius: 6px;
  transition: background .16s, color .14s;
}
.footer-nav a:hover {
  background: #fff7ec;
  color: #2a3e6e;
}
.footer-contact {
  font-size: .99em;
  line-height: 1.6;
  color: #fff;
}
.newsletter-signup, .newsletter-section {
  background: #fff7ec;
  border-radius: 17px;
  padding: 18px 18px;
  margin-top: 30px;
  box-shadow: 0 1px 5px 0 rgba(227,145,31,0.06);
  color: #2a3e6e;
}
.newsletter-signup h3, .newsletter-section h3 {
  color: #c36e0a;
}

/* ==== CATEGORY FILTERS (blog) ==== */
.category-filters {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.category-filters span {
  font-weight: 700;
  font-family: 'Montserrat',Arial,sans-serif;
  color: #2a3e6e;
  margin-right: 2px;
}
.category-filters a {
  padding: 3px 14px;
  background: #fff7ec;
  border-radius: 9px;
  color: #c36e0a;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 500;
  transition: background .14s, color .13s;
}
.category-filters a:hover {
  background: #e8911f;
  color: #fff;
}

/* ==== FORMS, INPUTS, BUTTONS (core styling since no real forms) ==== */
button, input[type='button'], input[type='submit'] {
  font-family: inherit;
  font-size: 1em;
  font-weight: 600;
  border-radius: 14px;
  padding: 8px 22px;
  background: #e8911f;
  border: none;
  color: #fff;
  box-shadow: 0 2px 5px 0 rgba(227,145,31,0.08);
  cursor: pointer;
  transition: background .17s, color .12s, box-shadow .13s, transform .12s;
}
button:hover, button:focus, input[type='button']:hover, input[type='submit']:hover {
  background: #c36e0a;
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(227,145,31,0.13);
  outline: none;
  transform: translateY(-2px) scale(1.04);
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 3300;
  background: #fff7ec;
  box-shadow: 0 -2px 16px 0 rgba(227,145,31,0.15);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 26px 6vw 26px 6vw;
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
  gap: 24px;
  transition: transform .33s cubic-bezier(.53,-0.11,.39,1.38), opacity .20s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-banner p {
  color: #22325a;
  font-size: 1rem;
  flex: 1 1 60vw;
  margin-bottom: 0;
}
.cookie-consent-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #e8911f;
  color: #fff;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  padding: 9px 20px;
  box-shadow: 0 2px 9px 0 rgba(200,99,10,0.10);
  transition: background .18s, color .12s;
}
.cookie-btn.secondary {
  background: #fff;
  color: #e8911f;
  border: 1.6px solid #e8911f;
}
.cookie-btn.settings {
  background: #fff7ec;
  color: #c36e0a;
  border: 1.2px solid #c36e0a;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #c36e0a;
  color: #fff;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #e8911f;
  color: #fff;
  border: 1.6px solid #e8911f;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #c36e0a;
  color: #fff;
  border: 1.2px solid #c36e0a;
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right:0; bottom: 0;
  background: rgba(34,50,90,0.77);
  z-index: 3400;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 6px 34px 0 rgba(42,62,110,0.19);
  padding: 38px 26px 30px 26px;
  max-width: 420px;
  width: 96vw;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: cookieModalSlideIn .32s cubic-bezier(.77,.05,.27,1.13) 1;
}
@keyframes cookieModalSlideIn {
  0% { transform: translateY(43px) scale(.96); opacity: 0.1; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  color: #c36e0a;
  margin-bottom: 6px;
}
.cookie-modal .cookie-option {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 1.1rem;
}
.cookie-modal .cookie-toggle {
  width: 44px;
  height: 28px;
  background: #f4f7fa;
  border-radius: 14px;
  position: relative;
  margin-right: 2px;
  transition: background .17s;
}
.cookie-modal .cookie-toggle input {
  display: none;
}
.cookie-modal .cookie-toggle .toggle-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e8911f;
  transition: left .18s, background .17s;
}
.cookie-modal .cookie-toggle input:checked + .toggle-slider {
  left: 18px;
  background: #c36e0a;
}
.cookie-modal .cookie-option.essential .cookie-toggle {
  background: #e8911f;
}
.cookie-modal .cookie-option.essential .toggle-slider {
  background: #c36e0a;
}
.cookie-modal .cookie-option.essential .category-label {
  color: #c36e0a;
  font-weight: 600;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 26px;
  background: transparent;
  color: #c36e0a;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 9999;
}
.cookie-modal-close:hover { color: #e8911f; }

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1020px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .team-summary > .container > .content-wrapper > div {
    flex-direction: column;
    gap: 15px;
  }
  .footer-nav, footer .content-wrapper {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  footer .content-wrapper { gap: 24px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  .section, .features, .hero, .cta-final, .testimonials, .testimonials-list, .thank-you-section, .blog-hero {
    padding: 22px 10px;
    margin-bottom: 36px;
    border-radius: 18px;
  }
  .container {
    padding: 0 6px;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  .content-wrapper { gap: 12px; }
  .features ul {
    flex-direction: column;
    gap: 10px;
  }
  .team-summary > .container > .content-wrapper > div {
    flex-direction: column;
    gap: 10px;
  }
  .footer-brand img { height: 36px; }
  .newsletter-signup, .newsletter-section { border-radius: 12px; }
}
@media (max-width: 589px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  .hero, .blog-hero, .thank-you-section, .cta-final, .section, .features, .testimonials, .testimonials-list {
    padding: 12px 1px;
    margin-bottom: 25px;
    border-radius: 8px;
  }
}
@media (max-width: 580px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 16px 4vw 16px 4vw;
  }
  .cookie-consent-buttons {
    justify-content: stretch;
  }
}
@media (max-width: 510px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 10px;
  }
  .newsletter-signup, .newsletter-section { margin-top: 15px; padding: 12px 7px; }
}
@media (max-width: 420px) {
  .mobile-nav {
    padding: 16px 8px 21px 12px;
    border-radius: 14px 0 0 14px;
    min-width: 94vw;
    font-size: 1.05rem;
  }
}

/* ==== TRANSITIONS, MICRO-INTERACTIONS ==== */
a, .cta-main, .main-nav a, .mobile-nav a, .cookie-btn,
button, input[type='button'],
.card, .course-card, .team-card,
.features ul li, .testimonial-card {
  transition: background .17s, color .16s, box-shadow .17s, transform .15s;
}

/* ==== COLOR FALLBACKS ==== */
body, html {
  background-color: #f4f7fa;
}

/* ==== CUSTOM FONT IMPORTS (if possible in external CSS import) ==== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700,600&display=swap');
