/* ==== 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #FAF6F1;
  font-family: 'Roboto', Arial, sans-serif;
  color: #163355;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}
a {
  color: #29A6A6;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #163355;
  outline: none;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  outline: none;
  box-shadow: none;
}
button {
  cursor: pointer;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #163355;
  margin-bottom: 16px;
  line-height: 1.15;
}
/* ==== FONT FACE (Safe Fallbacks in case Google Fonts not loaded) ==== */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Regular'), local('Roboto-Regular');
}

/* ==== CONTAINER & GLOBAL FLEX LAYOUTS ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 32px 0 rgba(41,166,166,0.07);
}

/* ==== SPACING & FLEX CONTAINERS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 250px;
}
.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;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(22,51,85,0.08);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FAF6F1;
  border-radius: 20px;
  padding: 22px 28px;
  min-width: 230px;
  box-shadow: 0 2px 16px 0 rgba(41,166,166,0.07);
  transition: box-shadow 0.22s, transform 0.22s;
  margin-bottom: 20px;
}
.feature-item:hover {
  box-shadow: 0 4px 24px 0 rgba(22,51,85,0.12);
  transform: translateY(-6px) scale(1.03) rotate(-1.2deg);
}

/* ==== HERO (HOMEPAGE) ==== */
.hero {
  background: linear-gradient(90deg,#29A6A6 0%,#FAF6F1 60%,#163355 100%);
  padding: 60px 0 60px 0;
  border-radius: 0 0 40px 40px;
  margin-bottom: 40px;
  box-shadow: 0 12px 32px 0 rgba(41,100,166,0.10);
  overflow: visible;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero h1 {
  font-size: 2.3rem;
  color: #163355;
  text-shadow: 1px 3px 0 #FAF6F1, 0 1px 12px #29A6A644;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.08rem;
  max-width: 540px;
  color: #163355cc;
  margin: 0 auto;
}

/* ==== PRIMARY BUTTONS (CTA) ==== */
.cta-btn, .enroll-btn, .newsletter-signup button {
  background: #29A6A6;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.11rem;
  outline: none;
  border-radius: 40px;
  padding: 15px 36px;
  box-shadow: 0 4px 16px rgba(41,166,166,0.22);
  letter-spacing: 0.05em;
  transition: background 0.15s, box-shadow 0.20s, transform 0.22s;
  border: 0;
  margin-top: 6px;
  border-bottom: 5px solid #167a7a40;
  position: relative;
}
.cta-btn:hover, .enroll-btn:hover, .newsletter-signup button:hover,
.cta-btn:focus, .enroll-btn:focus, .newsletter-signup button:focus {
  background: #163355;
  color: #fff;
  transform: translateY(-3px) scale(1.04) rotate(-2deg);
  box-shadow: 0 6px 35px rgba(22,51,85,0.10);
}
.enroll-btn {
  margin-top: 18px;
  font-size: 1rem;
  padding: 13px 30px;
  background: #fff200;
  color: #163355;
  border-bottom: 3px solid #eed512;
  box-shadow: 0 2px 8px #16335522;
}
.enroll-btn:hover, .enroll-btn:focus {
  background: #163355;
  color: #fff200;
  transform: translateY(-3px) scale(1.05) rotate(2deg);
}

/* ==== MAIN NAVIGATION ==== */
header {
  background: #163355;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 12px 20px;
}
.main-nav {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: #FAF6F1;
  padding: 8px 14px;
  border-radius: 22px;
  transition: background 0.16s, color 0.16s, transform 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #29A6A6;
  color: #fff200;
  transform: scale(1.07);
}
.main-nav a.cta-btn {
  background: #fff200;
  color: #163355;
  font-weight: 900;
  margin-left: 12px;
  box-shadow: 0 2px 10px #29A6A633;
  border-bottom: 2px solid #eed512;
}
/* ==== BURGER MENU (HIDDEN ON DESKTOP) ==== */
.mobile-menu-toggle {
  font-size: 2.1rem;
  color: #fff200;
  background: none;
  border: none;
  display: none;
  align-items: center;
  z-index: 110;
  margin-left: 16px;
  transition: transform 0.13s;
  border-radius: 6px;
  padding: 3px 8px;
  line-height: 1;
}
.mobile-menu-toggle:focus {
  background: #29A6A6bb;
}
.mobile-menu {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: #163355e0;
  display: flex;
  flex-direction: column;
  transform: translateX(100vw);
  transition: transform 0.42s cubic-bezier(.8,0,.14,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  color: #fff200;
  background: none;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 24px 28px 0 0;
  cursor: pointer;
  z-index: 101;
  padding: 7px 14px;
  border-radius: 9px;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #f1bc29cc;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 40px;
  padding: 0 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 20px 0 12px 0;
  border-bottom: 1px solid #29A6A640;
  width: 100%;
  transition: color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff200;
  background: none;
}
/* ==== HOME FEATURES & COURSES ==== */
.feature-grid, .values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 18px;
  justify-content: flex-start;
}
.course-list, .course-card-grid, .team-grid, .blog-article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.course-item, .course-card, .blog-article, .teacher-profile {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(41,166,166,0.13);
  padding: 28px 22px;
  margin-bottom: 20px;
  flex: 1 1 270px;
  min-width: 230px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.course-item:hover, .course-card:hover, .blog-article:hover, .teacher-profile:hover {
  transform: translateY(-6px) scale(1.035) rotate(-1.5deg);
  box-shadow: 0 12px 34px 0 rgba(41,166,166,0.14);
}
.course-card h3, .blog-article h3, .teacher-profile strong {
  font-size: 1.25rem;
  color: #29A6A6;
}

/* ==== TESTIMONIALS ==== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  color: #163355;
  border-radius: 20px;
  box-shadow: 0 2px 20px 0 rgba(41,166,166,0.11);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  max-width: 370px;
  gap: 15px;
  font-size: 1.1rem;
}
.testimonial-card p {
  color: #314c73;
  font-style: italic;
}
.testimonial-card strong {
  color: #29A6A6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07em;
}
.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 7px;
}

/* ==== BLOG TAGS ==== */
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.blog-tags a {
  background-color: #29A6A6;
  color: #fff;
  border-radius: 21px;
  font-size: 1rem;
  padding: 7px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.13s, color 0.13s;
}
.blog-tags a:hover, .blog-tags a:focus {
  background: #163355;
  color: #fff200;
}

/* ==== SUBTLE ANIMATIONS ==== */
.section, .feature-item, .course-card, .team-grid > *, .testimonial-card, .footer-top, .footer-bottom, .footer-contact, .footer-social, .cta-btn, .enroll-btn {
  transition: box-shadow 0.2s, transform 0.2s;
}
blockquote {
  padding-left: 18px;
  border-left: 4px solid #29A6A6;
  color: #163355cc;
  font-family: 'Montserrat';
  font-size: 1.07em;
  margin: 0 0 10px 0;
}

/* ==== NEWSLETTER & FORMS ==== */
.newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 380px;
  margin-top: 10px;
}
.newsletter-signup input[type="email"] {
  padding: 13px 15px;
  font-size: 1rem;
  background: #FAF6F1;
  border-radius: 13px;
  border: 1.5px solid #29A6A675;
  transition: box-shadow 0.13s, border-color 0.13s;
  outline: none;
}
.newsletter-signup input[type="email"]:focus {
  border-color: #29A6A6;
  box-shadow: 0 1px 8px #29A6A655;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 440px;
}
.contact-form label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #29A6A6;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  border-radius: 10px;
  border: 1.4px solid #29A6A675;
  background: #FAF6F1;
  padding: 11px 17px;
  font-size: 1rem;
  margin-top: 6px;
  transition: border-color 0.13s;
}
.contact-form textarea {
  min-height: 82px;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: #29A6A6;
  background: #fff;
}
.contact-form button {
  margin-top: 12px;
}

/* ==== CONTACT INFO ==== */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.contact-info img {
  width: 30px;
  height: 30px;
}
.contact-info div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.map-embed-widget {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #29A6A610;
  padding: 16px 25px;
  border-radius: 13px;
  box-shadow: 0 1px 8px #29A6A622;
}

/* ==== FAQ ==== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #FAF6F1;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 1px 4px #29A6A622;
  margin-bottom: 8px;
}
.faq-item h3 {
  cursor: pointer;
  margin-bottom: 9px;
  color: #163355;
  font-size: 1.08em;
}

/* ==== TEAM PROFILES ==== */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  justify-content: flex-start;
}
.teacher-profile {
  background: #fff;
  border-radius: 19px;
  padding: 24px 18px 24px 18px;
  box-shadow: 0 2px 10px #29A6A622;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
  max-width: 310px;
  margin-bottom: 18px;
}
.expertise-tags {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98em;
  color: #fff200;
  background: #29A6A6;
  border-radius: 18px;
  padding: 6px 13px;
  margin: 8px 0 0 0;
  font-weight: 600;
  align-self: flex-start;
}

/* ==== VALUES ==== */
.values-grid {
  gap: 24px;
}
.value-item {
  background: #29A6A610;
  border-radius: 16px;
  padding: 24px 16px;
  box-shadow: 0 2px 8px #29A6A622;
  margin-bottom: 18px;
  flex: 1 1 200px;
  min-width: 180px;
}
.value-item h3 { color: #29A6A6; }

/* ==== CALL TO ACTION BAR ==== */
.cta, .callout {
  background: #fff200;
  color: #163355;
  padding: 47px 0 42px 0;
  border-radius: 36px;
  box-shadow: 0 4px 32px 0 rgba(250,246,241,0.06);
}
.cta-btn, .callout .cta-btn { margin-top: 18px; }

/* ==== FOOTER ==== */
footer {
  background: #163355;
  color: #FAF6F1;
  font-size: 1rem;
  padding: 0 0 0 0;
  margin-top: 88px;
  width: 100%;
}
.footer-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 35px 0 20px 0;
  gap: 14px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 16px;
}
.footer-nav a {
  color: #fff200;
  font-family: 'Montserrat', Arial, sans-serif;
  background: none;
  padding: 7px 11px;
  border-radius: 9px;
  font-weight: 500;
  transition: background 0.13s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #29A6A6;
  color: #fff;
}
.footer-bottom {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 15px 0;
  border-top: 1.5px solid #29A6A655;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  align-items: center;
  color: #fff;
}
.footer-contact img {
  width: 22px;
  height: 22px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 11px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(1px 2px 3px #29A6A644);
}
.footer-legal {
  padding: 0 0 18px 0;
  color: #FAF6F1bf;
  font-size: 0.96em;
  text-align: center;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  z-index: 12000;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #29A6A6;
  color: #fff; 
  box-shadow: 0 -2px 22px #16335533;
  padding: 28px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 1.07rem;
  animation: cookieBannerFade 0.6s ease;
}
@keyframes cookieBannerFade {
  from { opacity: 0; transform: translateY(64px); }
  to { opacity: 1; transform: none; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 15px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #fff200;
  color: #163355;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 23px;
  padding: 9px 28px;
  font-size: 1rem;
  border: none;
  margin-right: 6px;
  margin-bottom: 4px;
  transition: background 0.17s, color 0.13s, transform 0.12s;
}
.cookie-banner .cookie-btn-reject {
  background: #fff;
  color: #29A6A6;
  border: 1.3px solid #29A6A6;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #163355;
  color: #fff200;
  transform: translateY(-2px) scale(1.04) rotate(-4deg);
}
.cookie-banner .cookie-btn-settings {
  background: #29A6A6;
  color: #fff200;
  border: 2px solid #fff200;
}
@media (max-width: 610px){
  .cookie-banner {
    font-size: 1em;
    padding: 20px 10px 10px 10px;
  }
  .cookie-banner .cookie-btns {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
  }
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal {
  position: fixed;
  z-index: 13000;
  left: 50%;
  top: 50%;
  min-width: 330px;
  width: 96vw;
  max-width: 410px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 44px #16335555;
  transform: translate(-50%, -50%) scale(1.025);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s, transform 0.28s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1.025);
}
.cookie-modal-header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 700;
  background: #29A6A6;
  color: #fff200;
  border-radius: 18px 18px 0 0;
  padding: 22px 18px 14px 18px;
}
.cookie-modal-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 19px 18px 19px 18px;
  color: #163355;
  font-size: 1.06rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 0;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #29A6A6;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  color: #163355;
}
.cookie-modal .modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding: 8px 18px 18px 18px;
}
.cookie-modal .modal-actions button {
  padding: 9px 22px;
  background: #29A6A6;
  color: #fff200;
  border-radius: 13px;
  font-family: 'Montserrat';
  border: 0;
  font-weight: 700;
  transition: background 0.15s, color 0.11s;
}
.cookie-modal .modal-actions button:hover, .cookie-modal .modal-actions button:focus {
  background: #163355;
  color: #fff;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1024px) {
  .container {
    max-width: 97vw;
  }
  .footer-bottom,
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}
@media (max-width: 900px) {
  .main-nav, .footer-nav {
    gap: 7px;
  }
  .feature-grid, .values-grid, .course-list, .course-card-grid,
  .team-grid, .blog-article-grid, .testimonial-slider {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .container {
    padding: 0 10px;
  }
  .content-grid, .feature-grid, .values-grid, .card-container,
  .course-list, .course-card-grid, .team-grid,
  .blog-article-grid, .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .course-item, .course-card, .teacher-profile, .testimonial-card, .feature-item, .value-item {
    min-width: unset;
    max-width: unset;
    width: 100%;
    padding: 20px 12px;
  }
  .footer-bottom, .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .footer-nav, .footer-contact, .footer-social {
    gap: 11px;
    flex-wrap: wrap;
  }
  .section, .cta, .callout {
    padding: 24px 6px;
    border-radius: 18px;
    margin-bottom: 30px;
  }
  .hero {
    border-radius: 0 0 22px 22px;
    padding: 32px 0 24px 0;
  }
  .testimonial-card { font-size: 1rem; }
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .newsletter-signup, .contact-form {
    padding: 0 2px;
    max-width: 99vw;
  }
}
@media (max-width: 520px) {
  .hero h1, .section h2 {
    font-size: 1.18rem;
  }
  .footer-contact span {
    font-size: 0.93rem;
  }
}
/* ==== TYPOGRAPHY SCALE ==== */
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  color: #163355;
}
h2 {
  font-size: 1.57rem;
  margin-bottom: 13px;
  color: #29A6A6;
}
h3 {
  font-size: 1.19rem;
  color: #163355;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, span, label, input, textarea {
  font-size: 1rem; /* body text */
}
small {
  font-size: 0.87rem;
}

/* ==== PLAYFUL DYNAMIC ACCENTS ==== */
.cta-btn::after, .enroll-btn::after, .cookie-banner button::after {
  content: '';
  display: block;
  position: absolute;
  left: 32%;
  bottom: 8px;
  width: 24px;
  height: 4px;
  border-radius: 4px;
  background: #FAF6F1;
  opacity: 0.18;
  transform: rotate(-5deg);
  pointer-events: none;
}
.cta-btn:active, .enroll-btn:active {
  transform: scale(0.98);
}
.main-nav a.cta-btn::after {
  display: none;
}

/* ==== Misc Utility ==== */
.hide { display: none !important; }

/* ==== MICRO-INTERACTIONS ==== */
.feature-item img, .feature-item h3, .course-card h3, .testimonial-stars img,
.blog-article h3 {
  transition: transform 0.24s cubic-bezier(.23,1.05,.32,.99);
}
.feature-item:hover img {
  transform: scale(1.13) rotate(-7deg);
}
.testimonial-card:hover .testimonial-stars img {
  transform: scale(1.13) rotate(-8deg);
}
.course-card:hover h3, .blog-article:hover h3 {
  transform: scale(1.08) rotate(2.5deg);
}

/**** NO GRID OR COLUMNS! Only Flex everywhere as required ****/

/* ==== END ==== */
