/* 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 {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(135deg, #f7f7f7 0%, #e8f7ed 100%);
  color: #1A2432;
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #34C759;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #1A2432;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* GENERAL LAYOUT */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
main {
  flex: 1 0 auto;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: none;
}

/* FONTS */
h1, .hero h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1A2432;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1A2432;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A2432;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  color: #1A2432;
  font-weight: 500;
  margin-bottom: 8px;
}
p, .text-section li, .feature-block p, .service-item p, .course-item p, .footer-desc {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #273146;
}

.tagline, .confirmation-message {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #34C759;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #e0e4ea;
  z-index: 100;
}
header .container {
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.logo img {
  height: 38px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  color: #1A2432;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .18s;
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover, .main-nav a:focus {
  color: #34C759;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #34C759 0%, #1A2432 100%);
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  margin-left: 20px;
  cursor: pointer;
  box-shadow: 0 2px 16px 0 rgba(52,199,89,0.13);
  transition: background .25s, box-shadow .18s, color .18s;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #1A2432 0%, #34C759 100%);
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(26,36,50,0.15);
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #1A2432;
  margin-left: 18px;
  transition: color .2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #34C759;
}

/* MOBILE NAV */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,36,50,0.96);
  z-index: 1200;
  transform: translateX(110%);
  transition: transform .36s cubic-bezier(.7,.1,.3,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  margin: 30px 30px 20px 0;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  transition: color .18s;
  z-index: 3;
}
.mobile-menu-close:focus {
  outline: 2px solid #34C759;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 22px;
  padding: 20px 34px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 12px 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background .15s, color .15s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #34C759;
  background: rgba(52,199,89,0.08);
}

/* HERO SECTION */
.hero {
  margin-bottom: 60px;
  background: linear-gradient(120deg, #34C759 0%, #e8f7ed 80%, #F7F7F7 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 38px rgba(26,36,50,0.048);
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.hero h1 {
  color: #1A2432;
}
.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  color: #273146;
}

/* FEATURES GRID */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: space-between;
}
.feature-block {
  flex: 1 1 220px;
  min-width: 230px;
  max-width: 320px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 20px 0 rgba(34,40,53,0.06);
  padding: 30px 20px 22px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform .17s, box-shadow .2s;
}
.feature-block img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}
.feature-block:hover {
  box-shadow: 0 7px 32px rgba(52,199,89,0.14);
  transform: translateY(-5px) scale(1.025);
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(100deg, #e8f7ed 0%, #fff 100%);
  border-radius: 22px;
  box-shadow: 0 4px 32px 0 rgba(34,40,53,0.08);
  padding: 40px 0;
}
.testimonials-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px rgba(26,36,50,0.10);
  padding: 24px 26px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 280px;
  min-width: 240px;
  max-width: 370px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .15s;
  color: #1A2432;
}
.testimonial-rating {
  display: flex;
  flex-direction: row;
  gap: 2px;
}
.testimonial-name {
  margin-top: 0;
  font-size: 1rem;
  color: #273146;
  font-weight: 500;
  font-style: italic;
}
.testimonial-card p {
  color: #1A2432;
  font-size: 1.05rem;
}
.testimonial-card:hover {
  box-shadow: 0 6px 36px 0 rgba(52,199,89,0.15);
  transform: translateY(-3px) scale(1.020);
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(90deg, #1A2432 0%, #34C759 100%);
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(34,40,53,0.12);
  padding: 32px 20px;
  margin-bottom: 60px;
  color: #fff;
}
.cta-banner .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.cta-banner p {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}
.cta-banner .cta-btn {
  margin-left: 0;
  background: #fff;
  color: #1A2432;
}
.cta-banner .cta-btn:hover {
  background: #34C759;
  color: #fff;
}

/* FOOTER */
footer {
  background: #1A2432;
  color: #fff;
  padding: 50px 0 24px 0;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
}
footer .container {
  display: flex;
  flex-direction: row;
  gap: 36px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-brand img {
  width: 46px;
  height: 46px;
}
.footer-desc {
  color: #e8f7ed;
  font-size: 1rem;
  margin-top: 2px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #e8f7ed;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color .15s;
}
.footer-nav a:hover {
  color: #34C759;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #e8f7ed;
  font-size: 15px;
}
.footer-contact a {
  color: #34C759;
}

/* SERVICES & CARDS */
.services-list, .course-list, .team-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item, .course-item, .team-member {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26,36,50,0.07);
  padding: 26px 22px;
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 240px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow .17s, transform .18s;
}
.service-item:hover, .course-item:hover, .team-member:hover {
  box-shadow: 0 8px 34px 0 rgba(52,199,89,0.13);
  transform: translateY(-4px) scale(1.017);
}
.service-price {
  background: #e8f7ed;
  color: #34C759;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  border-radius: 8px;
  padding: 4px 16px;
  margin-top: 12px;
  letter-spacing: .04em;
}

.course-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.level-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1em;
  color: #34C759;
  margin-top: 4px;
}
.team-member h3 {
  margin-bottom: 5px;
}
.team-list {
  gap: 24px;
  margin-bottom: 32px;
}

.core-values {
  margin-top: 22px;
  background: #e8f7ed;
  border-radius: 14px;
  padding: 20px 18px 16px 18px;
}
.core-values h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.core-values ul {
  margin-bottom: 0;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 13px;
  overflow: hidden;
  margin: 32px 0 20px 0;
  box-shadow: 0 2px 18px rgba(26,36,50,0.07);
}
.pricing-table th, .pricing-table td {
  padding: 13px 14px;
  text-align: left;
}
.pricing-table thead {
  background: #e8f7ed;
}
.pricing-table th {
  font-family: 'Oswald', Arial, sans-serif;
  color: #1A2432;
  font-weight: 600;
  font-size: 1.05rem;
  border-bottom: 2px solid #d3ede0;
}
.pricing-table tr {
  border-bottom: 1px solid #eee;
}
.pricing-table tbody tr:last-child {
  border-bottom: none;
}

/* MISCELLANEOUS LAYOUTS & UTILITIES */
.text-section {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.schedule {
  margin-top: 26px;
  margin-bottom: 18px;
}
.schedule h3 {
  font-size: 1.2rem;
  color: #1A2432;
  margin-bottom: 10px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.details, .map-snippet {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.map-snippet img {
  border-radius: 10px;
}

.cta-section {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* BUTTONS & INTERACTIONS */
button, .cta-btn {
  outline: none;
  transition: background .22s, color .18s, box-shadow .18s, border .18s;
}

/* COOKIES BANNER & MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fff;
  border-top: 2px solid #34C759;
  box-shadow: 0 -4px 22px 0 rgba(26,36,50,.07);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 2100;
  padding: 24px 30px;
  animation: fadein-banner .35s cubic-bezier(.7,.13,.35,1);
  font-size: 1rem;
}
@keyframes fadein-banner {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-banner-text {
  color: #1A2432;
  font-size: 1.05rem;
  max-width: 480px;
  margin-right: 12px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Oswald', Arial, sans-serif;
  padding: 10px 20px;
  border-radius: 22px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(34,199,89,0.06);
  transition: background .18s, color .14s;
  margin: 0;
}
.cookie-btn.accept {
  background: #34C759;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #1A2432;
  color: #fff;
}
.cookie-btn.reject {
  background: #e8f7ed;
  color: #1A2432;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #f63756;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #1A2432;
  border: 1px solid #34C759;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #e8f7ed;
}

/* COOKIES MODAL */
.cookie-modal-overlay {
  position: fixed;
  left:0; top:0; width:100vw; height:100vh;
  background: rgba(26,36,50,.82);
  z-index: 2200 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 48px 0 rgba(34,40,53,.16);
  padding: 36px 30px 24px 30px;
  min-width: 320px;
  max-width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalin .25s cubic-bezier(.7,.13,.35,1);
}
@keyframes modalin {
  from { transform: translateY(70px) scale(.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  color: #1A2432;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-modal-category label {
  font-size: 1rem;
  color: #1A2432;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #e8f7ed;
  border-radius: 22px;
  transition: background .2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #34C759;
}
.cookie-slider:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 1px 3px 0 rgba(26,36,50,0.05);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
}

.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 11px;
  margin-top: 18px;
  justify-content: flex-end;
}

/* RESPONSIVE DESIGN – MOBILE FIRST */
@media (max-width: 768px) {
  html, body {
    font-size: 16px;
  }
  .container {
    max-width: 100vw;
    padding: 0 12px;
  }
  header .container {
    padding-right: 10px;
    padding-left: 10px;
    gap: 10px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
  .features-grid, .services-list, .course-list, .team-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-block, .service-item, .course-item, .team-member {
    min-width: 0;
    max-width: 100%;
    padding: 20px 12px;
  }
  .features-grid, .testimonials-wrapper {
    gap: 18px;
  }
  .testimonials-wrapper {
    flex-direction: column;
  }
  .cta-banner .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-brand {
    flex-direction: row;
    gap: 15px;
    align-items: center;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .contact-details {
    flex-direction: column;
    gap: 18px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 20px 12px;
    font-size: .98rem;
  }
  .cookie-modal {
    min-width: 0;
    padding: 26px 10px 18px 10px;
  }
}
@media (max-width: 500px) {
  h1, .hero h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .cta-banner {
    padding: 18px 6px;
    border-radius: 12px;
  }
}

/* ANIMATIONS & TRANSITIONS */
.card, .feature-block, .testimonial-card, .service-item, .course-item, .team-member {
  transition: box-shadow .22s, transform .19s;
}
.cta-btn, .cookie-btn {
  transition: background .19s, color .13s, box-shadow .13s;
}

::-webkit-scrollbar {
  width: 7px;
  background: #f7f7f7;
}
::-webkit-scrollbar-thumb {
  background: #e1e9e6;
  border-radius: 6px;
}

/* ACCESSIBILITY FOCUS */
a, button, .cta-btn, .cookie-btn, input:focus {
  outline: none;
}
a:focus, .cta-btn:focus, .cookie-btn:focus, .mobile-menu-toggle:focus {
  outline: 2px solid #34C759;
  outline-offset: 3px;
}

/* VISUAL UTILITIES (OPTIONAL) */
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.flex-row { flex-direction: row !important; }
.flex-col { flex-direction: column !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }

/* MANDATORY SPACING CLASSES */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; border-radius: 14px; background: #fff; box-shadow: 0 3px 16px rgba(26,36,50,0.05); }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ENSURE NO GRID OR COLUMN USAGE -- FLEXBOX ONLY */
/* (NO display:grid, grid-*, columns, etc.) */