/* RESET & BASE TYPOGRAPHY */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #213146;
  background: #fff;
  line-height: 1.65;
  min-height: 100vh;
  font-size: 1rem;
  font-weight: 400;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #24497A;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #16A18A;
  text-decoration: underline;
}
::selection {
  background: #F6F7FA;
}

/* BRAND COLORS */
:root {
  --brand-primary: #24497A;
  --brand-secondary: #16A18A;
  --brand-accent: #F6F7FA;
  --gray-light: #F6F7FA;
  --gray-border: #E3E6EA;
  --text-main: #213146;
  --text-secondary: #4B5C75;
  --white: #fff;
  --black: #111;
}

/* FONTS (WEB FONTS: Please ensure Montserrat & Open Sans are loaded) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #213146;
  letter-spacing: -0.01em;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.subheadline, .secondary-text, .follow_up_text {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 24px;
  line-height: 1.6;
  font-weight: 400;
}
p {
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
}

/* CONTAINER & SPACING */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 16px;
}
@media (max-width: 600px) {
  .section, section {
    padding: 26px 10px;
    margin-bottom: 32px;
  }
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  box-shadow: 0px 2px 12px rgba(36, 73, 122, 0.03);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.logo img {
  height: 44px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.2s;
  color: var(--text-main);
  padding: 8px 0;
}
nav a:hover, nav a:focus {
  color: var(--brand-secondary);
}
.btn-primary {
  background: var(--brand-primary);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 28px;
  border-radius: 32px;
  border: none;
  font-size: 1.06rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(36,73,122,0.08);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, color 0.15s;
  outline: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-secondary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(22, 161, 138, 0.10);
}
.btn-secondary {
  background: var(--white);
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  border: 1.5px solid var(--brand-primary);
  border-radius: 32px;
  padding: 10px 26px;
  font-size: 1.06rem;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(36,73,122,0.07);
  cursor: pointer;
  transition: background 0.18s, color 0.15s, border 0.18s;
  outline: none;
  display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--brand-primary);
  color: var(--white);
  border: 1.5px solid var(--brand-primary);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--brand-primary);
  cursor: pointer;
  margin-left: 12px;
  z-index: 101;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: var(--brand-secondary);
}
.mobile-menu {
  position: fixed;
  z-index: 2001;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow: -2px 0 32px rgba(36,73,122,0.13);
  display: flex;
  flex-direction: column;
  padding-top: 32px;
  padding-bottom: 20px;
  width: 100vw;
  overscroll-behavior: contain;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--brand-primary);
  margin-right: 24px;
  margin-top: 2px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 32px 24px;
}
.mobile-nav a {
  font-size: 1.15rem;
  padding: 14px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  width: 100%;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:active {
  background: var(--gray-light);
  color: var(--brand-secondary);
}
@media (max-width: 1100px) {
  header .container nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 600px) {
  .mobile-nav {
    padding: 18px 13px;
    gap: 14px;
  }
}
@media (min-width: 1101px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO SECTIONS */
.hero {
  background: var(--brand-accent);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(36,73,122, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
}
.hero .container {
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 600px) {
  .hero {
    min-height: 130px;
    border-radius: 8px;
    padding: 18px 0 28px 0;
  }
}

/* FEATURES, SERVICES, CTA DESIGN */
.features, .services, .cta, .about, .team, .contact, .testimonials {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(36, 73, 122, 0.06);
}
.features ul, .features .feature_grid, .features .benefit_grid,
.team_member_list, .highlighted_courses_list, .course_list,
.workshop_list, .coaching_options_list, .interactive_highlights,
.coaching_approach_highlights, .steps_to_success, .public_transport_info, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 15px;
}
.features li, .services li, .team_member_list li, .course_list li,
.workshop_list li, .coaching_options_list li, .interactive_highlights li, .coaching_approach_highlights li, .steps_to_success li, .public_transport_info li, .contact-details li {
  font-size: 1.05rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 13px;
  background: none;
  border-radius: 8px;
  padding: 8px;
  transition: background 0.2s;
}
.features li img, .features .feature_grid li img,
.team_member_list li img {
  height: 32px;
  width: 32px;
}
.course-price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-secondary);
  font-weight: 600;
  font-size: 1.08rem;
  margin-left: 9px;
}
.course-desc, .workshop-details, .dates_times {
  color: var(--text-secondary);
  font-size: 0.96rem;
}
.secondary-text, .follow_up_text {
  font-size: 1.07rem;
  color: var(--text-secondary);
  margin-top: 13px;
}

.highlighted_courses_list, .course_list, .workshop_list {
  gap: 16px;
}

@media (min-width: 769px) {
  .feature_grid, .benefit_grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .feature_grid li, .benefit_grid li {
    flex: 1 1 240px;
    min-width: 180px;
    background: var(--gray-light);
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(36,73,122,0.04);
    padding: 12px 16px;
  }
}


/* CARDS & CARD CONTAINER */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(36, 73, 122, 0.04);
  margin-bottom: 20px;
  padding: 24px 18px;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px rgba(22,161,138,0.12);
  transform: translateY(-2px) scale(1.01);
}

/* FLEXBOX SHARED PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 900px) {
  .content-grid, .feature_grid, .benefit_grid {
    flex-direction: column !important;
    gap: 20px;
  }
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 22px;
  }
}

/* TESTIMONIALS & SUCCESS STORIES */
.testimonials, .testimonial-slider {
  background: var(--brand-accent);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(36,73,122,0.04);
  padding: 24px 10px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.success_story_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(36,73,122,0.09);
  padding: 24px 22px 18px 22px;
  min-width: 250px;
  max-width: 360px;
  flex: 1 1 280px;
  transition: box-shadow 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(36, 73, 122, 0.15);
}
.testimonial-card p, .testimonial-quote {
  color: var(--text-main);
  font-size: 1.18rem;
  margin-bottom: 13px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
}
.testimonial-meta {
  font-size: 0.99rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.before_after_metrics {
  font-size: 0.96rem;
  color: var(--brand-secondary);
}
.star_ratings {
  color: #FAC600;
  font-size: 1.1rem;
  margin-top: 5px;
}

/* CTA Sections */
.cta {
  background: linear-gradient(90deg, #F6F7FA 70%, #E9FBF8 100%);
  border-radius: 20px;
  box-shadow: 0 2px 24px rgba(22, 161, 138, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta .btn-primary {
  margin-top: 10px;
}

/* LOCATION, MAP, MISC INFO CARD */
.location_map_embed {
  background: var(--gray-light);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.alumni_network_info {
  margin-top: 16px;
  background: var(--gray-light);
  border-radius: 8px;
  padding: 14px;
  color: var(--brand-primary);
  font-size: 1.07rem;
  font-weight: 500;
  box-shadow: 0 1px 6px rgba(36,73,122,0.04);
}

.success_metric_icons {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 12px 0 2px 0;
}
.success_metric_icons img {
  width: 39px;
  height: 39px;
}

.brand_story, .team_intro_text, .mission_statement, .vision_text, .methodology_text {
  color: var(--text-secondary);
  font-size: 1.04rem;
  margin-bottom: 10px;
}

/* FOOTER */
footer {
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  padding: 40px 0 30px 0;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
footer nav {
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
}
footer nav a {
  color: var(--text-secondary);
  font-size: 0.97rem;
  padding: 4.5px 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
footer nav a:hover, footer nav a:focus {
  color: var(--brand-primary);
}
.address {
  color: var(--text-secondary);
  font-size: 0.96rem;
  margin-bottom: 8px;
  text-align: center;
}
.footer-logo img {
  width: 54px;
  height: auto;
  opacity: 0.96;
}

@media (max-width: 768px) {
  footer .container {
    gap: 13px;
    padding-top: 18px;
  }
  footer {
    padding: 26px 0 14px 0;
  }
}

/* FORMS (IN CASE) */
input, textarea, select {
  font-family: inherit;
  padding: 9px 12px;
  border: 1.2px solid var(--gray-border);
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 18px;
  background: #fff;
  color: var(--text-main);
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand-primary);
  outline: none;
  box-shadow: 0 2px 10px rgba(36,73,122,0.09);
}
button {
  font-family: inherit;
}

/* COOKIE CONSENT BANNER STYLES */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 5000;
  background: var(--white);
  border-top: 2px solid var(--brand-secondary);
  box-shadow: 0 -3px 16px rgba(36,73,122,0.10);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 12px;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 1.02rem;
  animation: slideUpCookie 0.6s cubic-bezier(.34,1.56,.64,1) 1;
}
@keyframes slideUpCookie {
  0% { transform: translateY(100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  color: var(--text-main);
  max-width: 440px;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-btn-primary {
  background: var(--brand-secondary);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(22,161,138,0.08);
}
.cookie-btn-primary:hover, .cookie-btn-primary:focus {
  background: var(--brand-primary);
}
.cookie-btn-secondary {
  background: var(--white);
  color: var(--brand-primary);
  border: 1.1px solid var(--brand-primary);
  border-radius: 30px;
  padding: 9px 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  background: var(--gray-light);
  color: var(--brand-secondary);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  z-index: 5010;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,49,70,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 64px rgba(36,73,122,0.20);
  padding: 36px 24px 22px 24px;
  max-width: 390px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeModalIn 0.33s cubic-bezier(.45,1.45,.52,.99) 1;
}
@keyframes fadeModalIn {
  0% { opacity: 0; transform: scale(0.95) translateY(40px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.cookie-modal-header h3 {
  font-size: 1.13rem;
  color: var(--brand-primary);
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.35rem;
  color: var(--brand-primary);
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--brand-secondary);
}
.cookie-modal-section {
  margin-bottom: 11px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-border);
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category-label {
  font-size: 1rem;
  color: var(--text-main);
}
.cookie-toggle {
  display: flex;
  align-items: center;
}
.cookie-toggle input[type="checkbox"] {
  width: 36px;
  height: 20px;
  accent-color: var(--brand-secondary);
}
.cookie-essential {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .cookie-modal-content {
    padding: 20px 7px 10px 7px;
    gap: 13px;
  }
  .cookie-modal-header h3 {
    font-size: 1rem;
  }
}

/* GENERIC ANIMATIONS & TRANSITIONS */
.btn-primary, .btn-secondary, .cookie-btn-primary, .cookie-btn-secondary, .mobile-menu, .mobile-menu-toggle {
  transition: all 0.21s cubic-bezier(.56,.04,.34,1.28);
}

/* MEDIA RESPONSIVENESS */
@media (max-width: 1100px) {
  .container {
    max-width: 100vw;
  }
  .testimonial-card, .card {
    min-width: 190px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  nav, footer nav {
    gap: 14px;
  }
  .content-wrapper {
    gap: 15px;
  }
  .testimonial-slider, .success_story_list {
    flex-direction: column;
    gap: 16px;
  }
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width:440px) {
  h1 { font-size: 1.2rem; }
  h2 { font-size: 1rem; }
}

/* SPACING ENSURED IN FLEX CONTAINERS */
.features ul, .features .feature_grid, .features .benefit_grid, .team_member_list, .highlighted_courses_list, .course_list, .workshop_list, .coaching_options_list, .interactive_highlights, .coaching_approach_highlights, .steps_to_success, .public_transport_info, .contact-details, .testimonial-slider, .success_story_list {
  gap: 20px;
}

/* PREVENT OVERLAP, ENSURE CLEAR SPACING */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card, .testimonial-card {
  margin-bottom: 20px;
}

/* UTILITY */
.d-none {
  display: none !important;
}

/* SCROLLBARS (Minimalist) */
::-webkit-scrollbar {
  width: 7px;
  background: var(--gray-light);
}
::-webkit-scrollbar-thumb {
  background: var(--gray-border);
  border-radius: 6px;
}

/* END */
