 /* ===================== */
/*        VARIABLES      */
/* ===================== */
:root {
  --bleu-neuro: #004080;
  --orange-brule: #cc5500;
  --blanc: #ffffff;
  --gris-clair: #f7f7f7;
  --gris-fonce: #333333;
  --vert-eveil: #2e7d32;
  --rouge-deconstruction: #c62828;
  --violet-reprogrammation: #6a1b9a;
  --emeraude-emergence: #00897b;
  --bleu-resonance: #0277bd;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 6px 20px rgba(0,0,0,0.2);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--gris-clair);
  color: var(--gris-fonce);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--orange-brule);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--bleu-neuro);
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style-position: inside;
}

/* ===================== */
/*        HEADER         */
/* ===================== */
header {
  position: sticky;
  top: 0;
  background: var(--blanc);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.rem;
  color: var(--bleu-neuro);
  z-index: 1001;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--bleu-neuro);
  margin: 5px 0;
  transition: var(--transition);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background-color: var(--orange-brule);
  color: var(--blanc);
}
.section {
  padding: 3rem 1.5rem;
  background-color: var(--gris-clair);
  border-bottom: 1px solid #ddd;
}

.section-title {
  font-size: 2rem;
  color: var(--bleu-neuro);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section blockquote {
  font-style: italic;
  background-color: #fff8e1;
  border-left: 5px solid var(--orange-brule);
  padding: 1rem;
  margin: 2rem 0;
}


/* ===================== */
/*     HERO BANNER       */
/* ===================== */
.hero-banner {
  background: linear-gradient(135deg, rgba(0, 64, 128, 0.85), rgba(204, 85, 0, 0.85)),
    url('assets/images/hero-bg.jpg') no-repeat center/cover;
  color: var(--blanc);
  padding: 6rem 2rem;
  text-align: center;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 2.5rem;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1.5s ease;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease;
}

/* ===================== */
/*        BOUTONS        */
/* ===================== */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--orange-brule);
  color: var(--blanc);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--bleu-neuro);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--blanc);
  border: 2px solid var(--blanc);
}

.btn-secondary:hover {
  background-color: var(--blanc);
  color: var(--orange-brule);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blanc);
  color: var(--orange-brule);
  border: 2px solid var(--orange-brule);
}

.btn-download:hover {
  background: var(--orange-brule);
  color: var(--blanc);
}

/* ===================== */
/*     MAIN CONTAINER    */
/* ===================== */
.main-container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
  flex: 1;
  width: 100%;
}

/* ===================== */
/*     SECTIONS          */
/* ===================== */
.section {
  margin-bottom: 4rem;
  background: var(--blanc);
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.section-title {
  color: var(--bleu-neuro);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--orange-brule);
}

.intro-text {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ===================== */
/*   NATIONAL PROJECT    */
/* ===================== */
.national-project {
  background: linear-gradient(135deg, var(--bleu-neuro), #002b5c);
  color: var(--blanc);
  padding: 4rem 2rem;
  border-radius: 10px;
  margin: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.national-project::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/images/pattern.png') repeat;
  opacity: 0.05;
}

.national-project-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.national-project h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
}

.national-project p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ===================== */
/*   PROCESS STEPS       */
/* ===================== */
.process-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.process-header {
  padding: 1.2rem 1.5rem;
  color: var(--blanc);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.process-header span {
  font-size: 1.5rem;
  font-weight: 700;
}

.process-content {
  padding: 1.8rem;
  background: var(--blanc);
}

.process-content ul {
  margin-left: 1.5rem;
  margin-top: 1rem;
}

.process-content li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.cycle-text {
  margin-top: 1.5rem;
  font-style: italic;
  color: var(--bleu-resonance);
  text-align: center;
  font-weight: 500;
}

/* Step Colors */
.step-1 .process-header { background: var(--vert-eveil); }
.step-2 .process-header { background: var(--rouge-deconstruction); }
.step-3 .process-header { background: var(--violet-reprogrammation); }
.step-4 .process-header { background: var(--emeraude-emergence); }
.step-5 .process-header { background: var(--bleu-resonance); }

/* ===================== */
/*    REPUBLIC SECTION   */
/* ===================== */
.republic-section {
  background: var(--gris-clair);
  border: 1px solid rgba(0, 64, 128, 0.1);
}

.republic-features {
  margin: 1.5rem 0 1.5rem 2rem;
}

.republic-features li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.republic-features li::before {
  content: "•";
  color: var(--orange-brule);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.media-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.video-wrapper {
  flex: 1 1 500px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.bd-wrapper {
  flex: 1 1 400px;
}

.bd-card {
  background: var(--blanc);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid var(--orange-brule);
}

.bd-card h3 {
  color: var(--bleu-neuro);
  margin-bottom: 1rem;
}

/* ===================== */
/*    COMIC SECTION      */
/* ===================== */
.comic-section {
  background: var(--gris-clair);
  padding: 4rem 0;
  margin: 4rem 0;
}

.comic-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.comic-container h2 {
  color: var(--bleu-neuro);
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.comic-container p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--gris-fonce);
}

.comic-viewer {
  margin-top: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.comic-viewer iframe {
  width: 100%;
  height: 600px;
  border: none;
}

.comic-actions {
  margin-top: 2rem;
}

/* ===================== */
/*    TRUST SECTION      */
/* ===================== */
.trust-section {
  background: var(--blanc);
  border: 1px solid rgba(204, 85, 0, 0.1);
}

/* ===================== */
/*    IMPACTS SECTION    */
/* ===================== */
.impacts-section {
  background: var(--gris-clair);
}

.impacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.impact-card {
  background: var(--blanc);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--orange-brule);
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.impact-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.impact-card h3 {
  color: var(--bleu-neuro);
  margin-bottom: 0.5rem;
}

/* ===================== */
/*    QUOTE BLOCK        */
/* ===================== */
.quote-block {
  font-style: italic;
  font-size: 1.2rem;
  text-align: center;
  margin: 2rem auto;
  padding: 1.5rem;
  max-width: 800px;
  border-left: 4px solid var(--orange-brule);
  background: rgba(255, 255, 255, 0.2);
  color: var(--blanc);
  border-radius: 0 8px 8px 0;
}

/* ===================== */
/*    GALLERY SECTION    */
/* ===================== */
.gallery-section {
  margin: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: var(--blanc);
  padding: 0.8rem;
  text-align: center;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* ===================== */
/*    CTA FINAL          */
/* ===================== */
.cta-final {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--bleu-neuro), #002b5c);
  color: var(--blanc);
  border-radius: 10px;
  margin: 4rem 0;
}

.cta-final h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.cta-final p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ===================== */
/*        FOOTER         */
/* ===================== */
footer {
  background-color: var(--bleu-neuro);
  color: var(--blanc);
  padding: 3rem 1rem;
  margin-top: auto;
}

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

.footer-quote {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-signature {
  font-style: italic;
  margin-bottom: 2rem;
  justify-content: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.intro {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #555;
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

h3, h4 {
  margin-top: 2rem;
  color: var(--bleu-neuro);
}

blockquote {
  font-style: italic;
  background-color: #fff8e1;
  border-left: 5px solid var(--orange-brule);
  padding: 1rem 1.5rem;
  margin: 2rem auto;
  color: #6a4b0d;
  text-align: center;
  max-width: 1200px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
/* ===================== */
/*    PROGRAMMES PAGE    */
/* ===================== */
.programmes-hero {
  background: linear-gradient(135deg, rgba(0, 64, 128, 0.9), rgba(204, 85, 0, 0.8)), 
              url('assets/images/programmes-hero.jpg') center/cover no-repeat;
  color: white;
  padding: 8rem 2rem 6rem;
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
}

.programmes-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.programmes-hero .hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Programmes Filter */
.programmes-filter {
  background: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
}

.filter-header {
  text-align: center;
  margin-bottom: 2rem;
}

.filter-header h2 {
  color: var(--bleu-neuro);
  margin-bottom: 0.5rem;
}

.filter-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.filter-group h3 {
  color: var(--bleu-neuro);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.filter-tag {
  background: var(--gris-clair);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tag:hover {
  background: var(--orange-brule);
  color: white;
}

.filter-tag.active {
  background: var(--bleu-neuro);
  color: white;
}

/* Programmes Grid */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.programme-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border-top: 4px solid var(--orange-brule);
}

.programme-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.programme-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--orange-brule);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.programme-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.programme-content h3 {
  color: var(--bleu-neuro);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  min-height: 3.5rem;
}

.programme-excerpt {
  color: var(--gris-fonce);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.programme-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.meta-item i {
  margin-right: 0.5rem;
  color: var(--orange-brule);
}

.btn-programme {
  display: inline-flex;
  align-items: center;
  color: var(--orange-brule);
  font-weight: 600;
  transition: color 0.3s ease;
}

.btn-programme i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-programme:hover {
  color: var(--bleu-neuro);
}

.btn-programme:hover i {
  transform: translateX(5px);
}

/* Programme Details */
.programme-detail {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 4rem;
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.detail-icon {
  font-size: 3.5rem;
  width: 80px;
  height: 80px;
  background: rgba(0, 64, 128, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-header h2 {
  color: var(--bleu-neuro);
  font-size: 2rem;
}

.detail-meta {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.meta-badge {
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.meta-badge.education {
  background: rgba(46, 125, 50, 0.1);
  color: var(--vert-eveil);
}

.meta-badge.economie {
  background: rgba(204, 85, 0, 0.1);
  color: var(--orange-brule);
}

.meta-badge.technologie {
  background: rgba(106, 27, 154, 0.1);
  color: var(--violet-reprogrammation);
}

.detail-section {
  margin-bottom: 2.5rem;
}

.detail-section h3 {
  color: var(--bleu-neuro);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-section h3 i {
  color: var(--orange-brule);
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.target-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(0, 64, 128, 0.05);
  padding: 0.8rem 1rem;
  border-radius: 8px;
}

.target-item i {
  color: var(--orange-brule);
}

.axes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.axe-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.axe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.axe-number {
  width: 40px;
  height: 40px;
  background: var(--bleu-neuro);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.axe-card h4 {
  color: var(--bleu-neuro);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.activity-list {
  list-style: none;
}

.activity-list li {
  padding-left: 1.8rem;
  position: relative;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.activity-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-brule);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.5rem;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.partner-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.detail-cta {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* Comparison Table */
.programme-comparison {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 4rem;
}

.programme-comparison h2 {
  text-align: center;
  color: var(--bleu-neuro);
  margin-bottom: 0.5rem;
}

.programme-comparison p {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--gris-fonce);
}

.comparison-table-container {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.comparison-table th {
  background: var(--bleu-neuro);
  color: white;
  padding: 1rem;
  text-align: left;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.comparison-table tr:nth-child(even) {
  background: rgba(0, 64, 128, 0.03);
}

.btn-table {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--orange-brule);
  color: white;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-table:hover {
  background: var(--bleu-neuro);
}

/* Programmes CTA */
.programmes-cta {
  background: linear-gradient(135deg, rgba(204, 85, 0, 0.9), rgba(204, 85, 0, 0.8)), 
              url('assets/images/cta-pattern.png') center/cover;
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 4rem;
}

.programmes-cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.programmes-cta p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .filter-options {
    grid-template-columns: 1fr;
  }
  
  .programme-detail {
    padding: 2rem 1.5rem;
  }
  
  .detail-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .detail-icon {
    margin-bottom: 1rem;
  }
  
  .detail-cta {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .programmes-grid {
    grid-template-columns: 1fr;
  }
  
  .programme-comparison {
    padding: 2rem 1rem;
  }
  
  .programmes-cta {
    padding: 3rem 1rem;
  }
}