/* =========================
   RESET
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =========================
   VARIABLES
========================= */

:root {
  --color-primary: #9966CC;
  --color-secondary: #99CC66;
  --color-accent: #ea9432;

  --color-text: #111;
  --color-bg: #f3ebeb;

  --font-base: 'Open Sans', sans-serif;
  --font-heading: 'Poetsen One', cursive;
  --font-quote: 'Lora', serif;
}

/* =========================
   BASE
========================= */

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

p {
  font-family: var(--font-base);
}

/*a:hover {
  text-decoration: underline;
}*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* =========================
   LAYOUT
========================= */

.container {
  margin: 0rem;
}

/* Header */

.site-header .container {
  padding-top: 0;
  padding-bottom: 0;
}

.site-header {
  background: var(--color-bg);
  height: 100px;
  display: bloc;
  justify-content: space-between;
  align-items: center;
  color: #f2eff5;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch; 
  height: 100%;
}

/* Logo */

.logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}

.site-logo {
  display: flex;
  align-items: center;
  padding-right: 4rem;
}

.logo {
  height: 80%;
  width: auto;
  display: block;
}

.intro {
    padding-left: 1.5rem
}

.site-footer {
  background: var(--color-primary);
  color: white;
  font-weight: 600;
  margin-top: 4rem;
}

.footer-inner {
  text-align: center;
  padding: 1.5rem
}

/* =========================
   COOKIE BANNER
========================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-primary);
  color: white;
  padding: 0.8rem 1.5rem;

  display: flex;
  justify-content: space-between;
  align-items: center;

  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 1000;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner button {
  background: #99CC66;
  border: none;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  border-radius: 20px;
  font-weight: 600;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.cookie-banner button:hover,
.cookie-banner button:focus {
  background-color: #b7e18c;
  transform: translateY(-2px);
}

/* =========================
   ANIMATIONS
========================= */

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(.22,.61,.36,1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
  NAVIGATION
========================= */

/* Navigation */

.main-nav {
  height: 100%;
  display: flex;
  justify-content: flex-end;
}

.main-nav ul {
  list-style: none;
  display: flex;
  height: 100%;
  
  list-style: none;              
  margin: 0;
  padding: 0;
}

.main-nav li {
  display: flex;
  height: 100%;
}

.main-nav a {
  display: flex;
  align-items: center; 
  text-transform: uppercase;   /* 🔠 MAJUSCULES */
  letter-spacing: 0.08em;
  font-weight: 600;
  height: 100%;         
  padding: 0 0.9rem;
  color: #9966CC;               /* violet initial */
  text-decoration: none;        /* pas de soulignement */
  border-radius: 0;             /* fond plein */
  transition: background-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #99CC66;               
  background-color: #fef6ff;    
  text-decoration: none;        
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: var(--color-secondary);
  border: none;
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--color-bg);
  transition: 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 23px; }
.menu-toggle span:nth-child(3) { top: 32px; }


footer a {
color: white;
font-weight: 500;
margin: 0 0.8rem;
}

footer a:hover {
color: #333333;
font-weight: 600;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.footer-socials a {
  color: white;
  font-size: 1.3rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover,
.footer-socials a:focus {
  color: #333333;
  transform: translateY(-2px);
}

.btn-primary {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  background-color: var(--color-secondary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background-color: #b7e18c;
  color : #333333;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  opacity: 0;
  animation: heroFadeIn 1.2s ease forwards;

  text-align: center;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
  }
}

.hero-home {
  min-height: 700px;
  background-image: url("../assets/images/image-bg.jpg");
  background-attachment: fixed;
}

.hero-page {
  min-height: 500px;
}

/* Overlay sombre */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Contenu */
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 1200px;
  padding: 0 1.5rem;
}

/* Petit texte du haut */
.hero-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #e6d9f2;
}

/* Barre de séparation */
.hero-separator {
  width: 60px;
  height: 3px;
  background-color: #99CC66;
  margin: 0 auto 1.5rem;
}

/* Titre principal */
.hero-home h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-page h1 {
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}

/* Sous-titre */
.hero-subtitle {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Bouton */
.hero-button {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: #99CC66;
  color: #13162f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  border-radius: 30px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.hero-button:hover,
.hero-button:focus {
  background-color: #b7e18c;
  transform: translateY(-2px);
}

/* =========================
   SECTIONS
========================= */

.intro {
  max-width: 800px;
}

section {
  margin-bottom: 0rem;
}

/* CITATION */

blockquote {
  font-family: var(--font-quote);
  font-style: italic;                  
  font-weight: 400;

  font-size: 1.8rem;
  line-height: 1.6;

  color: #333333;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

  
blockquote strong,
blockquote b {
  font-weight: 700;      
  font-style: italic;
}

.quote-section {
  background: #ede9ee;
  padding: 2rem 1.5rem;
  text-align: center;
}

.quote-section-page blockquote {
  font-size: 1.5rem;
}

.quote-inner {
  max-width: 900px;
  margin: 0 auto;
}

.quote-separator {
  width: 60px;
  height: 3px;
  background: #99CC66;
  margin: 0 auto 2.5rem;
}

/*.quote-author {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
}
*/ 

/* NEWS */

.news-section {
  padding: 4rem 1rem;
  background-color: #f7f7f5;
}

.news-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 150px;       
  height: 3px;
  margin: 1rem auto 0;
  background-color: var(--color-secondary);
  border-radius: 999px;
}

/* Grille */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Card */
.news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Contenu */
.news-content {
  padding: 1.5rem;
}

.news-date {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.news-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.news-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1rem;
}

.news-link {
  font-weight: 600;
  color: var(--color-secondary);
  text-decoration: none;
}

.news-link {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--color-secondary);
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
}

.news-link:hover {
  background: var(--color-secondary);
  color:white;
}

/* NEO ETHO */
/* Contenu */
.about-neoetho {
  padding: 5rem 1rem;
  background-color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  margin-left: 10rem;
  margin-right: 10rem;
  align-items: center;
}

.about-text {
  max-width: 600px;
}

.about-header {
  margin-bottom: 1.5rem;
}

.about-header h2 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.about-intro {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  color: #333;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Animation */

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal-left,
.reveal-right {
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.reveal-left.active,
.reveal-right.active {
  transform: translateX(0);
  opacity: 1;
}

/* POUR QUI ? */

.pedagogy-section {
  padding: 5rem 1rem;
  background-color: #f7f7f5;
}

.pedagogy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  margin-left: 5rem;
  margin-right: 5rem;
}

.pedagogy-images {
  display: flex;
  justify-content: center;
}

/* Colonnes */
.image-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.5rem;
  margin-left: 3rem;
}

/* Décalage vertical entre colonnes */

.col-1 {
  margin-bottom: 1.8rem;
}

/* Images */
.image-col img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* décalages de timing */
.img-1 { transition-delay: 0s; }
.img-2 { transition-delay: 0.15s; }
.img-3 { transition-delay: 0.3s; }
.img-4 { transition-delay: 0.45s; }
.img-5 { transition-delay: 0.6s; }

/* Tailles différentes */
.col-1 img:first-child {
  height: 260px;
}

.col-1 img:last-child {
  height: 180px;
}

.col-2 img:first-child {
  height: 200px;
}

.col-2 img:last-child {
  height: 280px;
}
/* Texte */
.pedagogy-header {
  margin-bottom: 1.5rem;
}

.pedagogy-header h2 {
  font-size: 2.2rem;
  line-height: 1.2;
}

.pedagogy-intro {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #333;
}

.pedagogy-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
  margin-right: 5rem;
}

.pedagogy-text .btn-primary {
margin-top: 2rem;
}


/* ETHOLOGIE */

.full-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url("../assets/images/image-bg2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.full-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.explore-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  padding: 0 1.5rem;
}

.explore-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.section-separator {
  width: 60px;
  height: 3px;
  background: #99CC66;
  margin: 1.5rem 1rem;
}

.explore-content p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* POURQUOI ? */

.ethology-benefits {
  padding-top: 6rem;   /* espace au-dessus du titre */
  padding-bottom: 6rem;
}

.benefits-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.benefit-icon {
  text-align: center;
  padding: 2rem 1.5rem;
}

.icon-wrapper {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(90, 140, 90, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

/* SVG */
.icon-wrapper svg {
  width: 36px;
  height: 36px;
  fill: var(--accent-green);
}

/* Hover doux */
.benefit-icon:hover .icon-wrapper {
  transform: scale(1.08);
}

/* Animation respirante */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.benefit-icon .icon-wrapper {
  animation: pulse 6s ease-in-out infinite;
}

.benefit-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
  margin: 5rem auto 3rem;
  max-width: 900px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.benefit-highlight.active {
  opacity: 1;
  transform: translateY(0);
}

/* Image */

.highlight-image {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;

  /* animation décalée */
  opacity: 0;
  transform: translateY(30px) scale(1.03);
  transition:
    opacity 1.1s ease 0.35s,
    transform 1.1s ease 0.35s;
}

.benefit-highlight.active .highlight-image {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.highlight-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.18),
    0 6px 14px rgba(0, 0, 0, 0.12);
}

/* Texte */

.highlight-text {
  opacity: 1;
  max-width: 700px;
}

.highlight-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.benefits-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* THEMATIQUES */

.training-topics {
  padding: 3rem 1rem;
  background-color: #f8f9f6;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.topic-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.topic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.topic-image {
  height: 180px;
  overflow: hidden;
}

.topic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.topic-card.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1.1s ease,
    transform 1.1s cubic-bezier(.22,.61,.36,1);
}

.topic-card.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.topics-grid .topic-card:nth-child(1) { transition-delay: 0.1s; }
.topics-grid .topic-card:nth-child(2) { transition-delay: 0.30s; }
.topics-grid .topic-card:nth-child(3) { transition-delay: 0.5s; }
.topics-grid .topic-card:nth-child(4) { transition-delay: 0.7s; }

.topics-grid .topic-card:nth-child(5) { transition-delay: 0.9s; }
.topics-grid .topic-card:nth-child(6) { transition-delay: 1.1s; }
.topics-grid .topic-card:nth-child(7) { transition-delay: 1.3s; }
.topics-grid .topic-card:nth-child(8) { transition-delay: 1.5s; }


.topic-card:hover .topic-image img {
  transform: scale(1.05);
}

.topic-card h3 {
  font-size: 1.25rem;
  margin: 1.2rem 1.5rem 0.6rem;
}

.topic-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin: 0 1.5rem 1.8rem;
}

.section-transition {
  display: flex;
  padding: 2rem 1rem 0rem;
  text-align: center;
  justify-content: center;
  background-color: #f7f7f5;
}

.section-transition p {
  font-style: italic;
  font-weight: 400;
  line-height: 2;
  color: #333333;
  font-size: 1rem;
  max-width: 800px;
}

/* =========================
   NEWSLETTER
========================= */

.newsletter {
  padding: 3rem 1rem;
  background-color: #f8f9f6;
}

.newsletter-box {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  padding: 3rem 2.5rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.newsletter-content {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1 1 260px;
  max-width: 360px;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.newsletter-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #777;
}

.newsletter-form button {
  border: none;
  outline: none;
}

.newsletter-form input,
.newsletter-form button {
  height: 48px;
  padding: 0.9rem 1.2rem;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  
  .site-header {
    height: 70px;
    display: flex;
  }
  
  .header-inner {
    flex-direction: column;
    gap: 1rem;
    height:auto;
  }

  .hero {
    background-attachment: scroll;
    min-height: 450px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .logo {
    height: 48px;
  }

  .main-nav {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    height: 65vh;
    background: var(--color-secondary);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
  }
  
  .main-nav.active {
    transform: translateX(0);
  }

  .main-nav ul {
    display: flex;              
    flex-direction: column;     
    gap: 0 !important;            
    margin: 0 !important;         
    padding: 0 !important;  
    list-style: none;
    text-align: center;
    width: 100%;   
  }

  .main-nav li {
    width: 100%;
  }

   .main-nav li:not(:last-child) {
    border-bottom: 1px solid #8b8b8b; 
  }

  .main-nav a {
    display: flex;              
    width: 100%;            
    justify-content: left;   
    padding-left: 2rem;           
    color: #2b2b2b;              
    font-size: 1.1rem;
    text-decoration: none;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1000;
  }
  .menu-toggle span {
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* NEO ETHO */

 .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text {
    max-width: none;
  }

  .about-header {
    text-align: center;
  }

  .section-separator {
    margin-left: auto;
    margin-right: auto;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }

}
@media (max-width: 900px) {
  .pedagogy-grid {
    grid-template-columns: 1fr;
  }

  .pedagogy-images img {
    height: 160px;
  }

  .pedagogy-header {
    text-align: center;
  }

  .section-separator {
    margin-left: auto;
    margin-right: auto;
  }
    .benefits-icons-grid {
    grid-template-columns: 1fr;
  }

  .benefit-icon {
    max-width: 500px;
    margin: 0 auto;
  }
  .benefit-highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .benefits-icons-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1024px) {
  .pedagogy-layout {
    grid-template-columns: 1fr;
  }

  .pedagogy-images {
    justify-content: center;
  }

  .col-2 {
    margin-top: 2rem;
  }

  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {
  .pedagogy-images {
    flex-direction: column;
  }

  .col-2 {
    margin-top: 0;
  }

  .image-col img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .icon-wrapper {
    animation: none;
  }
}