/* ==== 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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F3F3F7;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #273056;
  background: #F3F3F7;
  min-height: 100vh;
  line-height: 1.6;
}
a {
  color: #1FB673;
  text-decoration: none;
  transition: color 0.18s;
  font-weight: 600;
}
a:hover, a:focus {
  color: #273056;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
  list-style-position: outside;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
strong {
  font-weight: 700;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ==== TYPOGRAPHY ==== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #273056;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.18;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.4rem;
  line-height: 1.24;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.subheadline {
  font-size: 1.23rem;
  color: #273056;
  font-weight: 600;
  margin-bottom: 18px;
  max-width: 700px;
}
p, li {
  font-size: 1.05rem;
  color: #273056;
}
p {
  margin-bottom: 16px;
}
small {
  font-size: 0.85rem;
  color: #9696af;
}

/* ==== HEADER, NAVIGATION & BURGER ==== */
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(25, 49, 97, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 82px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  height: 42px;
  width: auto;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #273056;
  font-size: 1rem;
  padding: 6px 0 5px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.18s, color 0.18s;
}
header nav a:hover,
header nav a:focus {
  color: #1FB673;
  border-bottom: 2px solid #1FB673;
}
.cta-btn {
  background: #1FB673;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 32px;
  padding: 11px 30px;
  margin-left: 16px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 16px 0 rgba(31, 182, 115, 0.12);
  letter-spacing: 0.5px;
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
  text-transform: uppercase;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #273056;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 20px 0 rgba(39,48,86,0.13);
  text-decoration: none;
}
/* Hide .cta-btn on mobile in mobile menu area, show in main nav only */

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #273056;
  cursor: pointer;
  margin-left: 12px;
  z-index: 201;
  padding: 0 6px;
  transition: color 0.17s, transform 0.13s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #1FB673;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 3000;
  overflow-y: auto;
  transform: translateX(100vw);
  transition: transform 0.32s cubic-bezier(.66,.03,.28,1);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  box-shadow: -4px 0 24px rgba(39, 48, 86, 0.12);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #273056;
  position: absolute;
  top: 25px;
  right: 24px;
  cursor: pointer;
  z-index: 3050;
  padding: 0 10px;
  line-height: 1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 110px;
  margin-left: 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #273056;
  letter-spacing: 1px;
  padding: 12px 0;
  border-radius: 0;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: #1FB673;
  background: #F3F3F7;
}

/* ===== MAIN SECTIONS & LAYOUT ===== */
main {
  min-height: 60vh;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 12px;
  max-width: 750px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* --- Spacing and Alignment Patterns --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 2px 18px rgba(33,58,128,0.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 280px;
  max-width: 370px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 36px rgba(31,182,115,0.09), 0 2px 18px rgba(33,58,128,0.09);
  transform: translateY(-2px) scale(1.03);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 700px) {
  .feature-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }
  .feature-grid li {
    min-width: 270px;
    flex: 1;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 1px 8px rgba(25, 49, 97, 0.06);
    padding: 20px 22px 18px 22px;
    display: flex;
    align-items: center;
    gap: 17px;
    font-weight: 600;
  }
}
.feature-grid img {
  height: 36px;
  margin-right: 7px;
}

/* --- OFFERINGS --- */
.service-list,
.workshop-list,
.course_price_list ul,
.pricing_table ul,
.pricing_info ul,
.pricing_details ul,
.mentoring_options ul,
.corporate_benefits,
.benefit_list,
.values-grid ul,
.statistics-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.service-list li,
.workshop-list li {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 12px;
  padding: 18px 24px 14px 24px;
  font-weight: 600;
  box-shadow: 0 1px 8px rgba(25,49,97,0.05);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  background: #273056;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 16px;
  padding: 2px 13px 2px 13px;
  margin-left: 10px;
}

.course_overview_grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 700px) {
  .course_overview_grid {
    flex-direction: row;
    gap: 32px;
  }
  .course_overview_grid .text-section {
    min-width: 320px;
    flex: 1;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 8px rgba(25,49,97,0.04);
    padding: 22px 22px 18px 22px;
  }
}

/* --- Testimonials --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  min-width: 250px;
  max-width: 400px;
  box-shadow: 0 3px 24px rgba(33,58,128,0.09);
  margin-bottom: 20px;
  margin-right: 4px;
  border: 3px solid #F3F3F7;
  transition: box-shadow 0.2s, border-color 0.18s, transform 0.18s;
  color: #273056 !important;
  font-weight: 600;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 36px rgba(31,182,115,0.10), 0 3px 24px rgba(33,58,128,0.09);
  border-color: #1FB673;
  transform: translateY(-2px) scale(1.03);
}
.star-rating {
  color: #1FB673;
  font-size: 1.2rem;
  letter-spacing: 3px;
}
.testimonial-card strong {
  color: #273056;
  opacity: 0.76;
  font-size: 0.98rem;
}

/* --- Contact, Address & Details --- */
.contact-details,
.next-steps-info ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}
.map-embed, .opening-hours {
  margin: 0 0 15px 0;
  color: #273056;
  font-size: 0.99rem;
  opacity: 0.86;
}

/* --- Values/Team/USP --- */
.values-grid ul, .usp-list, .statistics-highlights ul {
  gap: 10px;
}
.statistics-highlights ul li strong {
  color: #1FB673;
}

.team-intro {
  margin-top: 18px;
  margin-bottom: 12px;
}

.success_rate_highlight {
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  font-weight: bold;
  text-align: center;
  color: #1FB673;
  font-size: 1.07rem;
  box-shadow: 0 1px 8px rgba(25,49,97,0.04);
  margin-top: 13px;
}

/* --- Buttons & Micro-Interactions --- */
button,
input[type="submit"],
.mobile-menu-toggle,
.mobile-menu-close {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
button:active {
  transform: scale(0.98);
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #273056;
  box-shadow: 0 -4px 32px rgba(31,182,115,0.12), 0 -1px 5px rgba(25,49,97,0.04);
  border-top: 4px solid #1FB673;
  font-size: 1rem;
  padding: 24px 18px 18px 18px;
  z-index: 5000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.26s, transform 0.32s;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-btn {
  background: #1FB673;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.99rem;
  padding: 9px 22px;
  margin-left: 8px;
  cursor: pointer;
  margin-bottom: 0;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-banner .cookie-btn.reject {
  background: #273056;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #273056;
  border: 2px solid #273056;
}
.cookie-banner .cookie-btn:hover, 
.cookie-banner .cookie-btn:focus {
  background: #fff;
  color: #1FB673;
  border: 2px solid #1FB673;
  box-shadow: 0 2px 16px 0 rgba(31, 182, 115, 0.12);
}

/* --- Cookie Modal --- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27, 31, 43, 0.42);
  z-index: 5100;
  justify-content: center;
  align-items: center;
  transition: background 0.22s;
}
.cookie-modal-overlay.show {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 420px;
  width: 90vw;
  box-shadow: 0 8px 48px rgba(31,182,115,0.10);
  padding: 32px 26px 26px 26px;
  color: #273056;
  font-size: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-fadein 0.38s cubic-bezier(.18,.85,.79,1.5) 1;
}
@keyframes cookie-fadein {
  from {transform: scale(0.86) translateY(44px); opacity: 0;}
  to {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #273056;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  accent-color: #1FB673;
  width: 19px;
  height: 19px;
}
.cookie-category label {
  font-size: 1rem;
  color: #273056;
  font-weight: 600;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}

/* ==== FOOTER ==== */
footer {
  background: #fff;
  padding: 35px 0 18px 0;
  border-top: 3px solid #F3F3F7;
  box-shadow: 0 -1px 8px rgba(25,49,97,0.03);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
footer nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
footer nav a {
  color: #273056;
  opacity: 0.83;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.2px;
  transition: color 0.18s;
}
footer nav a:hover,footer nav a:focus {
  color: #1FB673;
}

/* ===== OTHER UTILITIES AND RESPONSIVE ===== */
.mt-2 {margin-top: 13px;}
.mb-2 {margin-bottom: 13px;}
.mt-4 {margin-top: 27px;}
.mb-4 {margin-bottom: 27px;}

@media (max-width: 991px) {
  .header-flex {
    gap: 12px;
  }
  header nav {
    gap: 20px;
  }
}
@media (max-width: 860px) {
  .container {
    max-width: 97vw;
  }
  section {
    padding: 24px 5px;
  }
  .feature-grid li{
    min-width: unset;
    padding: 14px 14px 13px 14px;
  }
  .service-list li,
  .workshop-list li {
    padding: 14px 12px 10px 14px;
  }
}
@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.35rem;}
  .container {
    padding: 0 8px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid {
    flex-direction: column !important;
    gap: 12px;
  }
  .feature-grid li {
    min-width: unset;
    padding: 15px 12px;
  }
  .course_overview_grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container {
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 580px) {
  .container {
    padding: 0 2px;
  }
  .header-flex {padding: 10px 6px;}
}

@media (max-width: 1023px) {
  header nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu.open {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
  header nav {
    display: flex;
  }
  .cta-btn {
    display: inline-block;
  }
}

/* ==== SCROLLBAR ==== */
::-webkit-scrollbar {
  width: 9px;
  background: #F3F3F7;
}
::-webkit-scrollbar-thumb {
  background: #D9E6ED;
  border-radius: 8px;
}

/* ==== GEOMETRIC DECORATIVE SHAPES (only visually, not for layout) ==== */
.geometric-shape {
  position: absolute;
  z-index: 0;
  opacity: 0.1;
}

/* ==== SELECTION STYLES ==== */
::selection {
  background: #1FB673;
  color: #fff;
}

/* ==== Focus Outline for Accessibility ==== */
a:focus, button:focus, input:focus, .cta-btn:focus {
  outline: 2.5px solid #1FB673;
  outline-offset: 2px;
  z-index: 10;
}

/* ==== Animations for micro-interactions ==== */
.cta-btn, .cookie-btn, .card, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.16s, background 0.18s, color 0.18s;
}

/* ==== TABLES, FORMS, MISCELLANEOUS ==== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(25,49,97,0.03);
}
th, td {
  padding: 14px 12px;
  border-bottom: 1px solid #eaeaea;
}

td, th { color: #273056; font-family: 'Open Sans', Arial, sans-serif; }

td strong {color: #1FB673;}

/* --- Geometric separation lines --- */

hr {
  border: none;
  border-top: 3px solid #F3F3F7;
  margin: 34px 0;
}

/* ========== END OF CSS ========== */
