/* ========================================
   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; }
*, *:before, *:after { box-sizing: inherit; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7F4E4;
  color: #2B2E2B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ============================
   VINTAGE RETRO COLOR PALETTE
============================= */
:root {
  --primary: #28497A;
  --secondary: #D2E3F8;
  --accent: #FFB143;
  --bg-light: #F7F4E4;
  --retro-red: #D7263D;
  --retro-mustard: #FFD23F;
  --retro-olive: #A3B97C;
  --retro-navy: #235390;
  --retro-green: #5C946E;
  --retro-cream: #F5ECDE;
  --shadow: rgba(40,73,122,0.08);
  --card-border: #CCC3B6;
  --black: #1a1a1a;
}

/* ============================
   TYPOGRAPHY
============================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
h1 { font-size: 2.6rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.4rem; line-height: 1.2; margin-bottom: 16px; }
h4 { font-size: 1.18rem; margin-bottom: 12px; }
p, ul li, ol li, label, span, a, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--black);
}
p { margin-bottom: 16px; }
ul, ol { margin-bottom: 16px; }
strong { font-weight: bold; }
em { font-style: italic; }

/* Nostalgic-accented Headings */
h1, h2, h3, h4, h5 {
  text-shadow: 2px 2px 0 var(--retro-cream), 3px 3px 0 #ded1aa;
}

/* ============================
   LAYOUT CONTAINERS
============================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-light);
  border-radius: 28px;
  box-shadow: 0 8px 36px -8px var(--shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ============================
   HEADER & NAVIGATION
============================= */
header {
  width: 100%;
  background: var(--retro-mustard);
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 2px 0 var(--retro-navy);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 96px;
}
header img {
  height: 54px;
  margin-right: 32px;
}
nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
nav a {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 20px;
  border-radius: 20px;
  transition: background 0.12s, color 0.12s;
  position: relative;
}
nav a.cta {
  background: var(--accent);
  color: var(--primary);
  font-weight: 900;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 2px 2px 0 var(--retro-navy);
  border: 2px solid var(--primary);
  font-size: 1.08rem;
  letter-spacing: 1px;
}
nav a:not(.cta):hover {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 2px 2px 0 var(--accent);
}
nav a.cta:hover, nav a.cta:focus {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--retro-navy);
  box-shadow: 2px 2px 0 var(--accent);
}

.mobile-menu-toggle {
  font-size: 2rem;
  color: var(--primary);
  background: var(--accent);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  border: 2px solid var(--primary);
  transition: background 0.2s, color 0.2s;
  z-index: 32;
  cursor: pointer;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--accent);
}

/* ===============
   MOBILE NAVIGATION
================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--retro-mustard);
  box-shadow: 2px 0 64px var(--shadow);
  z-index: 111;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.79,.14,.15,.86);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
  padding-top: 16px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  align-self: flex-end;
  margin-right: 22px;
  margin-bottom: 16px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 113;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 30px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 0 12px 12px;
  border-radius: 16px 0 0 16px;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

/* Hamburger visible on mobile */
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ============================
   HERO SECTION
============================= */
.hero {
  padding: 42px 0 52px 0;
  background: repeating-linear-gradient(-8deg, var(--secondary), var(--bg-light) 120px);
  border-bottom: 4px dotted var(--accent);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 9px 38px -8px var(--shadow);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.hero h1 {
  font-size: 2.8rem;
  color: var(--primary);
  letter-spacing: 1.2px;
}
.hero p {
  color: var(--black);
  font-size: 1.22rem;
  max-width: 560px;
}
.hero .cta {
  margin-top: 18px;
}

/* ============================
   FLEX GRIDS & FEATURED CARDS
============================= */
.features-grid, .methods-grid, .course-grid, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature, .method, .course-card, .team-member {
  background: var(--retro-cream);
  flex: 1 1 240px;
  min-width: 260px;
  max-width: 340px;
  margin-bottom: 20px;
  border-radius: 18px;
  border: 2.5px solid var(--card-border);
  box-shadow: 0 2px 22px -4px var(--shadow);
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.14s, transform 0.14s;
}
.feature:hover, .method:hover, .course-card:hover, .team-member:hover {
  box-shadow: 0 8px 32px -3px var(--retro-navy);
  transform: translateY(-4px) scale(1.02);
  border-color: var(--retro-mustard);
}
.feature img, .method img, .team-photo-placeholder img {
  height: 54px;
  width: 54px;
  margin-bottom: 10px;
  filter: grayscale(0.2) sepia(0.19) contrast(1.07);
}
.team-photo-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--retro-olive);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px -2px var(--shadow);
}
.course-card h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.method h3, .feature h3, .team-member h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  color: var(--retro-navy);
}

/* ============================
   ABOUT/TEAM MINI INTRO
============================= */
.about-teaser ul {
  margin: 10px 0 16px 12px;
  padding-left: 18px;
}
.about-teaser ul li {
  list-style: square;
  color: var(--retro-navy);
  margin-bottom: 8px;
  font-size: 1rem;
}
.mini-team-intro {
  background: var(--secondary);
  color: var(--primary);
  border-left: 5px solid var(--retro-olive);
  border-radius: 10px;
  padding: 14px 20px;
  margin-top: 18px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  box-shadow: 2px 4px 0 var(--retro-navy);
}

/* ============================
   TESTIMONIALS
============================= */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  background: #FFFFFF;
  box-shadow: 0 4px 24px -6px var(--retro-navy);
  border-radius: 20px;
  padding: 28px 24px 22px 24px;
  min-width: 260px;
  max-width: 370px;
  border: 2px solid var(--retro-mustard);
  margin-bottom: 20px;
}
.testimonial-card p {
  color: var(--black);
  font-size: 1.12rem;
  font-style: italic;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.98rem;
}
.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px -4px var(--accent);
}

.success-stories-long {
  margin-top: 36px;
  background: var(--secondary);
  border-radius: 16px;
  padding: 30px 28px;
  border-left: 7px double var(--accent);
  box-shadow: 2px 6px 0 var(--accent), 0 2px 18px -7px var(--retro-navy);
}
.before-after h3 {
  margin-bottom: 8px;
  color: var(--retro-navy);
  font-size: 1.12rem;
}

/* ============================
   STATISTICS CARDS
============================= */
.statistics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.statistic {
  background: var(--retro-olive);
  color: #232315;
  padding: 18px 26px;
  border-radius: 14px;
  box-shadow: 1px 2px 0 var(--retro-navy), 0 7px 20px -7px var(--shadow);
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
}
.statistic img {
  height: 36px;
  width: 36px;
}

/* ============================
   CTA SECTIONS & BUTTONS
============================= */
section.cta {
  background: var(--accent);
  border-radius: 36px;
  margin-top: 50px;
  margin-bottom: 40px;
  border: 4px solid var(--retro-navy);
  box-shadow: 0 8px 40px -9px var(--retro-olive);
}
section.cta h2, section.cta p {
  color: var(--primary);
}
section.cta a.cta {
  background: var(--primary);
  color: var(--accent);
  border: 2.5px solid var(--retro-navy);
  border-radius: 24px;
  font-size: 1.17rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 16px 34px;
  margin-top: 22px;
  box-shadow: 4px 8px 0 var(--retro-navy);
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
  display: inline-block;
}
section.cta a.cta:hover, section.cta a.cta:focus {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px) scale(1.04) rotate(-0.7deg);
  box-shadow: 4px 14px 0 var(--accent);
}

a.cta {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--retro-navy);
  border-radius: 20px;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 28px;
  margin-top: 12px;
  box-shadow: 2px 4px 0 var(--retro-navy);
  transition: background 0.14s, color 0.14s, transform 0.12s, box-shadow 0.14s;
  display: inline-block;
}
a.cta:hover, a.cta:focus {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 3px 8px 0 var(--accent);
  transform: scale(1.04) translateY(-2px);
}

/* ============================
   LISTS, FORMS, TEXT SECTIONS
============================= */
.text-section ul, .text-section ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.text-section ul li, .text-section ol li {
  color: var(--retro-navy);
  margin-bottom: 7px;
  font-size: 1rem;
  list-style: disc inside;
}
.legal-content ul li {
  color: var(--black);
}
.method-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.method-steps li {
  background: var(--retro-cream);
  border-left: 6px solid var(--retro-navy);
  border-radius: 14px;
  padding: 18px 18px 18px 42px;
  box-shadow: 0 1px 16px -6px var(--shadow);
  margin-bottom: 12px;
  font-size: 1.06rem;
  font-family: 'Open Sans';
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.method-steps img {
  position: absolute;
  left: 6px; top: 15px;
  height: 32px;
  width: 32px;
}

/* ============================
   BLOG SECTION
============================= */
.blog-highlighted-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.blog-highlighted-posts article {
  background: var(--secondary);
  border-radius: 16px;
  box-shadow: 3px 6px 0 var(--retro-navy);
  padding: 22px 20px 18px 24px;
  max-width: 370px;
  min-width: 250px;
  flex: 1 1 250px;
  transition: box-shadow 0.13s, transform 0.13s;
  border: 2px solid var(--retro-navy);
}
.blog-highlighted-posts article:hover {
  box-shadow: 6px 18px 0 var(--accent);
  transform: scale(1.04) rotate(-1deg);
  border-color: var(--accent);
}

.blog-highlighted-posts h2 {
  font-size: 1.18rem;
  margin-bottom: 8px;
  color: var(--retro-navy);
}
.blog-highlighted-posts a {
  color: var(--retro-red);
  font-weight: 700;
  margin-top: 10px;
  text-decoration: underline;
  transition: color 0.15s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.blog-highlighted-posts a:hover, .blog-highlighted-posts a:focus {
  color: var(--primary);
}

.newsletter-form-note {
  margin-top: 20px;
  background: var(--retro-cream);
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 1rem;
  border-left: 5px dotted var(--retro-navy);
  color: var(--retro-navy);
}

/* ===========================
   FOOTER
============================ */
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 38px 0 20px 0;
  border-top: 4px solid var(--accent);
  border-radius: 36px 36px 0 0;
  margin-top: 70px;
  position: relative;
  z-index: 10;
  box-shadow: 0 -9px 36px -14px var(--shadow);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
}
footer img {
  height: 48px;
  width: auto;
  margin-bottom: 8px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 0 3px 0;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.13s, color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--accent);
  background: rgba(255,255,255,0.06);
}
.footer-contact {
  color: var(--secondary);
  font-size: 0.99rem;
  line-height: 1.7;
  margin: 10px 0 0 0;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  vertical-align: middle;
  margin-right: 7px;
  display: inline-block;
  filter: brightness(2) grayscale(.25) sepia(.08);
}
.footer-copyright {
  width: 100%;
  margin-top: 30px;
  text-align: center;
  font-size: 0.95rem;
  color: #b2c2dd;
  opacity: .88;
}

/* ===========================
   MAP PLACEHOLDER
============================ */
.map-placeholder {
  background: var(--retro-cream);
  border: 2px dashed var(--retro-navy);
  border-radius: 9px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 12px;
  font-size: 1rem;
}
.map-placeholder img {
  height: 32px; width: 32px;
}

/* ===========================
   COOKIE CONSENT BANNER
============================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: var(--retro-mustard);
  color: var(--primary);
  border-top: 4px solid var(--accent);
  box-shadow: 0 -2px 30px -8px var(--retro-navy);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 26px 19px 18px 19px;
  font-size: 1.05rem;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: slideInBanner 0.5s cubic-bezier(.64,.07,.19,.97);
}
@keyframes slideInBanner {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  margin-top: 7px;
}
.cookie-banner button {
  border-radius: 18px;
  padding: 8px 22px;
  border: 2px solid var(--primary);
  background: var(--accent);
  color: var(--primary);
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0;
  transition: background 0.13s, color 0.13s, box-shadow 0.11s;
  box-shadow: 1px 3px 0 var(--retro-navy);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 1px 7px 0 var(--accent);
}
.cookie-banner .cookie-settings {
  background: var(--retro-olive);
  color: var(--primary);
  border-color: var(--retro-navy);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--accent);
  color: var(--primary);
}

/* ===========================
   COOKIE PREFERENCES MODAL
============================ */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3000;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(40,73,122, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .33s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--bg-light);
  color: var(--primary);
  border-radius: 26px;
  padding: 40px 30px 32px 30px;
  width: 95vw;
  max-width: 390px;
  box-shadow: 0 7px 40px -4px var(--retro-navy);
  display: flex;
  flex-direction: column;
  gap: 28px;
  border: 4px solid var(--accent);
  position: relative;
  animation: popInModal .26s cubic-bezier(.54,1.64,.53,.97);
}
@keyframes popInModal {
  from { transform: scale(.88) translateY(40px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: var(--primary);
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  color: var(--retro-navy);
  font-weight: 600;
}
.cookie-modal input[type="checkbox"] {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--retro-cream);
  border: 2px solid var(--primary);
  accent-color: var(--accent);
  margin-right: 6px;
}
.cookie-modal .essential {
  opacity: 0.65;
  cursor: not-allowed;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal button {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
  margin-top: 0;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--primary);
  color: var(--accent);
}

/* =========================
   ADDITIONAL UTILITIES
========================= */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 1060px) {
  .features-grid, .methods-grid, .course-grid, .team-list, .statistics, .blog-highlighted-posts, .testimonial-list {
    flex-wrap: wrap;
    gap: 24px;
  }
  .feature, .method, .course-card, .team-member, .statistic, .testimonial-card, .blog-highlighted-posts article {
    min-width: 220px;
    flex: 1 1 200px;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .container {
    padding-left: 14px; padding-right: 14px;
  }
  header .container {
    height: auto;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 18px 18px;
    padding: 38px 0 32px 0;
  }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.44rem; }
  h3 { font-size: 1.13rem; }
  section.cta {
    border-radius: 18px;
    margin-top: 36px;
    margin-bottom: 20px;
    padding: 30px 12px;
  }
  .features-grid, .methods-grid, .course-grid, .team-list, .statistics, .testimonial-list, .blog-highlighted-posts {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature, .method, .course-card, .team-member, .statistic, .testimonial-card, .blog-highlighted-posts article {
    max-width: 100%;
    min-width: 0;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
  .content-wrapper { gap: 18px; }
  .section { padding: 26px 8px; margin-bottom: 38px; border-radius: 11px; }
  footer .container { flex-direction: column; gap: 24px; align-items: flex-start; }
  .mini-team-intro {
    font-size: 0.98rem; padding: 10px 12px;
  }
}
@media (max-width: 540px) {
  nav a, nav .cta {
    font-size: 0.99rem;
    padding: 7px 13px;
  }
  html, body { font-size: 15px; }
  h1 { font-size: 1.43rem; }
  h2 { font-size: 1.14rem; }
  .footer-contact { font-size: 0.93rem; }
  .footer-copyright { font-size: 0.89rem; }
}

/* ===========================
   MICRO-INTERACTIONS & EFFECTS
=========================== */
a, button, .cta {
  transition: background 0.15s, color 0.15s, border 0.15s, box-shadow 0.15s, transform 0.12s;
}
.card, .feature, .method, .course-card, .team-member, .testimonial-card, .blog-highlighted-posts article {
  transition: box-shadow 0.14s, transform 0.13s, border-color 0.13s;
}

/* ===========================
   MISC DECORATIVE ELEMENTS
=========================== */
.section {
  background-image: repeating-linear-gradient(-45deg, rgba(255,177,67,0.06) 0 12px, rgba(255,255,255,0.0) 12px 32px);
}


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