/* 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,
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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #204E70;
  background: linear-gradient(135deg, #F5F6FA 0%, #FFFFFF 100%);
  min-height: 100vh;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #204E70;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E0B114;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #204E70;
}
h1 { font-size: 2.5rem; line-height: 1.12; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.12rem; margin-bottom: 8px; }
p {
  font-size: 1.0625rem;
  margin-bottom: 16px;
  color: #25374D;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 8px;
  line-height: 1.5;
}
strong { font-weight: 700; }

/* LAYOUT & CONTAINERS */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(32, 78, 112, 0.04);
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(90deg, #204E70 0%, #396fab 100%);
  color: #fff;
  padding: 0 0 0 0;
  box-shadow: 0 2px 12px rgba(32, 78, 112, 0.08);
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
header img {
  height: 44px;
  margin-right: 28px;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 6px 15px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
nav a.cta, .btn-primary {
  background: linear-gradient(90deg, #E0B114 50%, #AD8A0D 100%);
  color: #204E70;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 16px;
  padding: 10px 28px;
  box-shadow: 0 3px 8px 0 rgba(224, 177, 20, 0.08);
  border: none;
  margin-left: 8px;
  transition: background 0.25s, box-shadow 0.18s, color 0.22s;
}
nav a.cta:hover, .btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #AD8A0D 0%, #E0B114 100%);
  color: #fff;
  box-shadow: 0 6px 16px 0 rgba(224, 177, 20, 0.19);
}
nav a:hover, nav a:focus {
  background: rgba(255,255,255,0.12);
}
.btn-secondary {
  background: #204E70;
  color: #fff;
  border-radius: 16px;
  padding: 10px 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  box-shadow: 0 2px 8px 0 rgba(32, 78, 112, 0.09);
  border: none;
  transition: background 0.2s, color 0.22s, box-shadow 0.18s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #396fab;
  color: #fff;
  box-shadow: 0 6px 16px 0 rgba(32, 78, 112, 0.19);
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: #fff;
  font-size: 2.3rem;
  cursor: pointer;
  border: none;
  margin-left: 32px;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.2s;
  z-index: 120;
}
.mobile-menu-toggle:hover {
  background: rgba(255,255,255,0.13);
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(100deg, #204E70 85%, #E0B114 100%);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(.77,0,.18,1);
  box-shadow: 0 2px 32px 0 rgba(32, 78, 112, 0.22);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.3rem;
  border: none;
  align-self: flex-end;
  padding: 18px 24px 12px 0;
  cursor: pointer;
  z-index: 2010;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #E0B114;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 52px;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  font-size: 1.5rem;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 0 0 10px 0;
  border-bottom: 2px solid rgba(255,255,255,0.09);
  width: 100%;
  text-align: left;
  transition: color 0.18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E0B114;
  background: none;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(112deg, #F5F6FA 40%, #E0B114 100%);
  padding-bottom: 60px;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 2px 12px 0 rgba(224, 177, 20, 0.08);
  margin-bottom: 60px;
}
.hero .container {
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.hero h1 {
  color: #204E70;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.1;
}
.hero p {
  color: #25374D;
}
.hero .btn-primary {
  margin-top: 32px;
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(32, 78, 112, 0.10);
  padding: 24px 20px;
  flex: 1 1 300px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(32,78,112,0.14);
  transform: translateY(-8px) scale(1.03);
}
.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: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F5F6FA;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(32,78,112,0.08);
  margin-bottom: 24px;
  max-width: 410px;
  min-width: 240px;
}
.testimonial-card p {
  color: #204E70;
  font-size: 1.125rem;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 1rem;
  color: #374776;
  font-style: italic;
}
.rating-summary {
  display: flex;
  gap: 24px;
  margin-top: 12px;
  font-size: 1rem;
  color: #204E70;
  font-weight: 500;
  align-items: center;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* LISTS & GRIDS */
.feature-grid, .benefit-grid, .service-list, .coaching-list, .team-list, .course-list, .workshop-schedule, .value-list, .milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.feature-grid li, .feature-grid div, .benefit-grid div, .service-list li, .coaching-list li, .team-list li, .course-list li, .workshop-schedule li, .value-list li, .milestones li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(32, 78, 112, 0.07);
  padding: 22px 18px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow 0.18s, transform 0.19s;
}
.feature-grid li:hover, .feature-grid div:hover, .benefit-grid div:hover {
  box-shadow: 0 7px 18px 0 rgba(224,177,20,0.14), 0 3px 12px 0 rgba(32,78,112,0.08);
  transform: translateY(-6px);
}
.feature-grid img, .benefit-grid img, .learning-methods-icons img, .team-benefit-icons img, .expert-profile-icons img {
  max-width: 44px;
  min-width: 36px;
  margin-bottom: 6px;
}
.service-list li strong, .coaching-list li strong, .service-overview-list li strong {
  color: #204E70;
  font-weight: 700;
}

/* MODALS, TABLES, ETC. */
.price-table, .price-overview, .course-categories, .topic-overview, .customization-options, .case-study-summaries {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(32, 78, 112, 0.07);
  padding: 22px 18px 14px 18px;
  margin-top: 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* CTA SECTIONS */
.cta {
  background: linear-gradient(95deg, #204E70 38%, #E0B114 116%);
  color: #fff;
  border-radius: 18px;
  text-align: center;
  padding: 36px 20px 44px 20px;
  margin-bottom: 40px;
  box-shadow: 0 4px 18px 0 rgba(174, 138, 13, .12);
}
.cta .btn-primary {
  margin-bottom: 16px;
}
.cta p {
  color: #25374D;
  margin-top: 10px;
}

/* FOOTER */
footer {
  background: linear-gradient(100deg, #204E70 86%, #E0B114 100%);
  color: #fff;
  padding: 36px 0 18px 0;
  margin-top: 70px;
  border-radius: 32px 32px 0 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 6px;
  width: 100%;
}
.footer-nav a {
  color: #fff;
  font-size: 0.97rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  padding: 1px 6px;
  border-radius: 9px;
  transition: background 0.2s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #E0B114;
  color: #204E70;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  margin-bottom: 6px;
}
.footer-brand img {
  height: 32px;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-size: 0.98rem;
  opacity: 0.87;
  flex-wrap: wrap;
  justify-content: center;
}

/* TESTIMONIAL SLIDER */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}

/* SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
  background: transparent;
}

/* CARDS, IMAGES */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* INTERACTIVE ELEMENTS */
a, button, .btn-primary, .btn-secondary {
  cursor: pointer;
  outline: none;
}
a:focus-visible, button:focus-visible {
  box-shadow: 0 0 0 2px #E0B114, 0 0 2px 6px rgba(224, 177, 20, 0.19);
}

/* Cookie Consent Banner & Modal */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 3100;
  background: linear-gradient(95deg, #204E70 89%, #E0B114 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 0px 28px 0 rgba(32, 78, 112, 0.19);
  padding: 28px 16px 16px 16px;
  text-align: left;
  font-size: 1.05rem;
  transition: transform 0.42s cubic-bezier(.62,0,.22,1), opacity 0.3s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 9px 16px;
  background: #F5F6FA;
  color: #204E70;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.cookie-banner button.accept {
  background: #E0B114;
  color: #204E70;
}
.cookie-banner button.accept:hover {
  background: #AD8A0D;
  color: #fff;
}
.cookie-banner button.reject {
  background: #204E70;
  color: #fff;
}
.cookie-banner button.reject:hover {
  background: #374776;
  color: #fff;
}
.cookie-banner button.settings {
  background: #F5F6FA;
  color: #204E70;
}
.cookie-banner button.settings:hover {
  background: #E0B114;
  color: #204E70;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32, 78, 112, 0.70);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3200;
  transition: opacity 0.32s;
  opacity: 1;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #204E70;
  border-radius: 22px;
  box-shadow: 0 8px 34px 0 rgba(32,78,112,0.16);
  padding: 32px 26px 26px 26px;
  max-width: 380px;
  min-width: 270px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h2 {
  color: #204E70;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 16px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-size: 1.07rem;
  color: #204E70;
}
.cookie-category input[type='checkbox'],
.cookie-category input[type='radio'] {
  accent-color: #E0B114;
  width: 19px;
  height: 19px;
}
.cookie-category .essential {
  font-weight: 700;
  color: #204E70;
  opacity: 0.77;
}
.cookie-modal-btns {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cookie-modal-btns button {
  padding: 9px 18px;
  border: none;
  border-radius: 10px;
  background: #204E70;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.18s;
}
.cookie-modal-btns button.save {
  background: #E0B114;
  color: #204E70;
}
.cookie-modal-btns button.save:hover {
  background: #AD8A0D;
  color: #fff;
}
.cookie-modal-btns button.close {
  background: #204E70;
  color: #fff;
}
.cookie-modal-btns button.close:hover {
  background: #374776;
  color: #fff;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1180px) {
  .container {
    max-width: 1007px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 92vw;
  }
  nav {
    gap: 14px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
@media (max-width: 900px) {
  .feature-grid, .benefit-grid, .testimonial-slider, .team-list, .service-list, .workshop-schedule, .course-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  header .container {
    height: 70px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 8px; }
  header .container {
    flex-direction: row;
    padding: 0 8px;
    height: 64px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: 0;
  }
  .hero { padding: 28px 0 40px 0; }
  .section, section {
    padding: 28px 6px;
    margin-bottom: 32px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .content-wrapper {
    gap: 18px;
    padding: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  html { font-size: 14px; }
  .container { padding: 0 2vw; }
  .footer-brand {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .hero h1 { font-size: 1.4rem; }
  .card, .feature-grid li, .benefit-grid div { min-width: 0; max-width: 100%; }
  .cookie-modal { max-width: 94vw; min-width: unset; }
}
