/* RESET & BASE STYLES (normalize + playful_dynamic personality) */
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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2D3A4E;
  background: #FFFDF8;
  line-height: 1.6;
  font-size: 1rem;
  transition: background 0.2s;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #F47B72;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #3368D6;
  text-decoration: underline;
}
ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
li {
  margin-bottom: 8px;
}
strong, b {
  font-weight: bold;
}
button, .btn-cta, .btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

/* BRAND/STYLE COLOR SYSTEM (playful dynamic) */
:root {
  --kf-primary: #2D3A4E;
  --kf-secondary: #F4A259;
  --kf-accent: #FFFFFF;
  --kf-pink: #F47B72;
  --kf-teal: #37D5A4;
  --kf-bright-blue: #59B4F4;
  --kf-lavender: #B19CF4;
  --kf-bg: #FFFDF8;
  --kf-grey: #F8F8F9;
  --kf-shadow: 0 8px 24px rgba(44, 58, 82, 0.08);
}

/* UTILITY CLASSES */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--kf-grey);
  border-radius: 28px;
  box-shadow: var(--kf-shadow);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 6px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 6px;
  }
}

/* GORGEOUS HEADINGS – playful feeling */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: #2D3A4E;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.13rem;
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

p {
  font-size: 1.08rem;
  color: #2D3A4E;
  margin-bottom: 10px;
}

/* BADGES, LABELS, TAGS */
.badges {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.badges li {
  background: var(--kf-teal);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

/* BUTTONS */
.btn-cta, .btn-secondary {
  border: none;
  outline: none;
  padding: 15px 38px;
  border-radius: 40px;
  background: var(--kf-secondary);
  color: #fff;
  font-size: 1.125rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  box-shadow: 0 3px 14px rgba(244, 162, 89, 0.13);
  position: relative;
  z-index: 3;
  text-align: center;
  margin-top: 12px;
}
.btn-cta:hover, .btn-cta:focus {
  background: #F47B72;
  color: #fff;
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
  box-shadow: 0 6px 24px rgba(244, 123, 114, 0.23);
}
.btn-secondary {
  background: var(--kf-bright-blue);
  color: #fff;
  font-weight: 700;
  margin-top: 0;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--kf-pink);
  color: #fff;
  transform: translateY(-2px) scale(1.02) rotate(1.5deg);
  box-shadow: 0 6px 24px rgba(180, 156, 244, 0.17);
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 370px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--kf-shadow);
  padding: 28px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.24s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 10px 28px rgba(56, 58, 140, 0.12), 0 2px 8px rgba(244,123,114,.13);
  transform: translateY(-4px) scale(1.025) rotate(-1.5deg);
}
.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;
}
@media (max-width: 768px) {
  .content-grid, .card-container, .text-image-section {
    flex-direction: column!important;
    align-items: stretch;
    gap: 14px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--kf-shadow);
  padding: 22px 16px;
  margin-bottom: 20px;
}

/* SPECIAL GRIDS */
.feature-grid,
.tip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 22px;
  list-style: none;
  margin: 24px 0 18px 0;
  padding: 0;
}
.feature-grid li, .tip-grid li {
  flex: 1 1 270px;
  font-size: 1.12rem;
  background: var(--kf-lavender);
  color: #fff;
  border-radius: 19px;
  padding: 19px 17px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.17s, transform 0.15s;
}
.feature-grid li:hover, .tip-grid li:hover {
  background: var(--kf-bright-blue);
  color: #fff;
  transform: scale(1.04) rotate(-2.5deg);
}
@media (max-width: 700px) {
  .feature-grid li, .tip-grid li { flex: 1 1 160px; font-size: 1rem; }
 
}

.article-list, .course-list {
  margin-bottom: 18px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.guides ul, .checklists ul {
  padding: 0;
  list-style: disc inside;
  margin: 12px 0 0 0;
}

/* COURSE CARDS */
.course-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.course-block {
  background: var(--kf-lavender);
  color: #fff;
  border-radius: 18px;
  box-shadow: var(--kf-shadow);
  padding: 28px 20px 18px 20px;
  flex: 1 1 310px;
  min-width: 250px;
  max-width: 390px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s, transform 0.19s, box-shadow 0.19s;
}
.course-block:hover {
  background: var(--kf-teal);
  color: #292D4B;
  transform: translateY(-4px) scale(1.04) rotate(2deg);
  box-shadow: 0 12px 25px rgba(55,213,164,0.15);
}
@media (max-width: 880px) {
  .course-grid, .testimonial-carousel {
    flex-direction: column;
    gap: 12px;
  }
}

/* TESTIMONIALS – playful & highly readable */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px;
  margin-bottom: 20px;
  background: #fff;
  color: #2D3A4E;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(57,150,235,0.08), 0 2px 6px rgba(180,156,244,0.09);
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 24px rgba(57, 150, 235, 0.13);
  transform: scale(1.025) rotate(-1deg);
}
.testimonial-card p {
  color: #2D3A4E;
  margin: 0 0 6px 0;
  font-style: italic;
}
.testimonial-card span {
  color: #F4A259;
  font-weight: 700;
  font-size: 0.98rem;
}
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 20px;
}

/* TEAM CARDS */
.team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.team-member {
  background: var(--kf-bright-blue);
  color: #fff;
  border-radius: 19px;
  box-shadow: var(--kf-shadow);
  padding: 26px 16px 16px 16px;
  flex: 1 1 235px;
  min-width: 190px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  transition: background 0.22s, transform 0.2s;
  margin-bottom: 0;
  text-align: center;
}
.team-member:hover {
  background: var(--kf-lavender);
  color: #fff;
  transform: scale(1.055) rotate(1.5deg);
  box-shadow: 0 7px 22px rgba(180,156,244,0.12), 0 2px 10px rgba(57, 150, 235, 0.09);
}

/* SERVICE LIST */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0 0 18px 0;
}
.service-item {
  background: var(--kf-teal);
  color: #fff;
  border-radius: 14px;
  box-shadow: var(--kf-shadow);
  padding: 22px 14px;
  flex: 1 1 230px;
  min-width: 170px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
  transition: background 0.21s, transform 0.18s;
}
.service-item:hover {
  background: var(--kf-secondary);
  color: #fff;
  transform: scale(1.035);
}

/* HEADER & NAVIGATION (desktop) */
header {
  background: var(--kf-bright-blue);
  box-shadow: 0 2px 16px rgba(57,150,235,0.06);
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  border-radius: 12px;
  padding: 7px 17px;
  transition: background 0.19s, color 0.19s, transform 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--kf-secondary);
  color: #fff;
  transform: scale(1.07) rotate(-3deg);
}
.btn-cta {
  margin-left: 18px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: var(--kf-secondary);
  color: #fff;
  border: none;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  margin-left: 12px;
  z-index: 500;
  transition: background 0.2s, color 0.2s, transform 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--kf-pink);
  color: #fff;
  transform: scale(1.085) rotate(-7deg);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.42s cubic-bezier(.7,-0.5,.29,1.5);
  box-shadow: 0 6px 32px rgba(44, 58, 82, 0.18);
  padding: 0 0 32px 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 12px 16px 8px 0;
  background: var(--kf-bright-blue);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: background 0.2s, color 0.15s, transform 0.17s;
  z-index: 1001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--kf-pink);
  color: #fff;
  transform: scale(1.09) rotate(-11deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 32px;
  margin-top: 28px;
  width: 100%;
}
.mobile-nav a {
  color: var(--kf-primary);
  font-size: 1.20rem;
  padding: 13px 8px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  transition: background 0.17s, color 0.17s;
  box-sizing: border-box;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--kf-lavender);
  color: #fff;
}
@media (max-width: 1020px) {
  .main-nav, .btn-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: var(--kf-primary);
  color: #fff;
  padding-top: 38px;
  padding-bottom: 32px;
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: space-between;
}
footer .footer-logo img {
  width: 128px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 9px;
  padding: 5px 13px;
  transition: background 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--kf-bright-blue);
  color: #fff;
}
.footer-contact p {
  margin-bottom: 9px;
  font-size: 1.01rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
}

.newsletter-signup {
  background: var(--kf-bright-blue);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(57,150,235,0.11);
  padding: 16px 16px 13px 16px;
  min-width: 220px;
  max-width: 330px;
}
.newsletter-signup h3 {
  font-size: 1.12rem;
  margin-bottom: 7px;
  color: #fff;
}
@media (max-width: 950px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .newsletter-signup { max-width: 100%; }
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--kf-secondary);
  color: #fff;
  padding: 22px 22px 22px 24px;
  box-shadow: 0 -3px 18px rgba(44,58,82,0.11);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.27s cubic-bezier(.7,-0.5,.29,1.3), opacity 0.27s cubic-bezier(.7,-0.5,.29,1.3);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 22px;
  padding: 10px 22px;
  font-size: 1rem;
  margin-left: 0;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(255,255,255,0.10);
  transition: background 0.17s, color 0.14s;
}
.cookie-banner .accept-cookies {
  background: var(--kf-teal);
  color: #fff;
}
.cookie-banner .accept-cookies:hover, .cookie-banner .accept-cookies:focus {
  background: var(--kf-bright-blue);
}
.cookie-banner .reject-cookies {
  background: #fff;
  color: var(--kf-secondary);
  border: 1.3px solid var(--kf-secondary);
}
.cookie-banner .reject-cookies:hover, .cookie-banner .reject-cookies:focus {
  background: var(--kf-pink);
  color: #fff;
  border-color: var(--kf-pink);
}
.cookie-banner .cookie-settings-btn {
  background: var(--kf-primary);
  color: #fff;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: var(--kf-lavender);
  color: #fff;
}
@media (max-width:600px) {
  .cookie-banner { padding: 16px 4px 16px 10px; }
  .cookie-banner .cookie-actions { flex-direction: column; gap: 8px; }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(50,60,80,0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10020;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(.7,-0.5,.29,1.3);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 22px;
  padding: 34px 28px 26px 28px;
  max-width: 410px;
  width: 94vw;
  box-shadow: 0 8px 38px rgba(44,58,82,0.23);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: popin 0.41s cubic-bezier(.7,-0.5,.29,1.5);
}
.cookie-modal .modal-heading {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--kf-primary);
  margin-bottom: 8px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 10px;
  right: 16px;
  background: var(--kf-pink);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, color 0.12s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: var(--kf-secondary);
  color: #fff;
}
.cookie-modal .modal-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.04rem;
  background: var(--kf-grey);
  border-radius: 11px;
  padding: 11px 10px;
}
.cookie-modal .cookie-category .toggle {
  margin-left: auto;
}
.cookie-modal .cookie-category.essential {
  background: var(--kf-bright-blue);
  color: #fff;
}
.cookie-modal .category-label {
  font-weight: 600;
  font-size: 1.02rem;
}
.cookie-modal .toggle [type="checkbox"] {
  accent-color: var(--kf-secondary);
  width: 22px; height: 22px;
}
.cookie-modal .toggle [type="checkbox"]:disabled {
  accent-color: #ccc;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  flex-direction: row;
}
.cookie-modal .modal-actions button {
  border-radius: 18px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background: var(--kf-secondary);
  color: #fff;
  transition: background 0.15s, color 0.12s;
}
.cookie-modal .modal-actions button.reject {
  background: #fff;
  color: var(--kf-secondary);
  border: 1.3px solid var(--kf-secondary);
}
.cookie-modal .modal-actions button.reject:hover {
  background: var(--kf-pink);
  color: #fff;
  border-color: var(--kf-pink);
}
.cookie-modal .modal-actions button.accept {
  background: var(--kf-teal);
  color: #fff;
}
.cookie-modal .modal-actions button.accept:hover {
  background: var(--kf-lavender);
  color: #fff;
}
@keyframes popin {
  from { transform: scale(0.86) translateY(38px); opacity: 0.3; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
@media (max-width:500px) {
  .cookie-modal .modal-content {
    padding: 17px 7px 18px 7px;
    font-size: 1rem;
  }
}

/* QUICK INFO, BANNERS, ETC */
.quick-facts ul {
  padding-left: 18px;
  margin-bottom: 0;
}
.quick-facts li {
  color: var(--kf-primary);
  margin-bottom: 6px;
  padding-left: 5px;
}

/* CONTACT SECTION */
.address-details, .map-snippet, .phone-email, .contact-info {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-links {
  display: flex;
  gap: 16px;
}

/* MISC  */
blockquote {
  background: var(--kf-grey);
  border-left: 6px solid var(--kf-lavender);
  border-radius: 12px;
  padding: 17px 18px;
  font-style: italic;
  margin-bottom: 18px;
  color: #2D3A4E;
}
blockquote span {
  display: block;
  font-size: 1rem;
  color: var(--kf-lavender);
  font-weight: 700;
  margin-top: 5px;
}

.before-after {
  margin-bottom: 15px;
}
.alumni-stats ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.alumni-stats li {
  background: var(--kf-teal);
  color: #fff;
  padding: 12px 17px;
  border-radius: 17px;
  font-size: 1.05rem;
  font-weight: 700;
}
@media (max-width:900px) {
  .alumni-stats ul {
    flex-direction: column;
    gap: 10px;
  }
}

/* THANK YOU MESSAGE */
.thank-you-message {
  padding: 24px 20px 20px 20px;
  background: var(--kf-bright-blue);
  color: #fff;
  border-radius: 18px;
  margin-bottom: 22px;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.thank-you-message ul {
  margin-top: 9px;
  margin-bottom: 2px;
}

/* Responsive: Single column & tidy spacing on mobile */
@media (max-width: 700px) {
  .main-nav, .card-container, .content-grid, .testimonials, .feature-grid, .tip-grid, .team-cards, .course-grid, .service-list {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .badges { gap: 8px; }
  .alumni-stats ul { flex-direction: column; gap: 8px; }
  .course-list, .article-list { gap: 11px; }
}

/* MICRO-ANIMATIONS/MISC */
.btn-cta:active, .btn-secondary:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  transform: scale(0.96) rotate(1deg) !important;
}
.card, .team-member, .service-item, .testimonial-card, .feature-grid li, .tip-grid li {
  transition: box-shadow 0.16s, transform 0.17s, background 0.18s;
}

/* Hide stuff that's aria-hidden (if present) */
[aria-hidden="true"] {
  display: none;
}

/* END */
