/* ======= Hero Lateral Section (Titre gauche, image droite) - Version Pro & Cyber ======= */
.hero-lateral {
  position: relative;
  min-height: 70vh;
  background: #0d0d0d; /* Fond encore plus sombre pour un effet cyber */
  overflow: hidden;
  padding: 60px 0;
  border-bottom: 2px solid #00ffea; /* Accent néon en bas */
}

.hero-lateral-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Couche 1 : Dégradé cyber avec accent néon */
.hero-lateral-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(69, 58, 228, 0.6), transparent 70%);
  z-index: 1;
  animation: fadeOut 5s ease-in-out infinite alternate;
}

/* Couche 2 : Effet néon turquoise */
.hero-lateral-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 255, 234, 0.3), transparent 70%);
  z-index: 2;
  animation: fadeIn 5s ease-in-out infinite alternate;
}

/* Animations d'opacité */
@keyframes fadeOut {
  0%, 20% {
      opacity: 1;
  }
  80%, 100% {
      opacity: 0;
  }
}

@keyframes fadeIn {
  0%, 20% {
      opacity: 0;
  }
  80%, 100% {
      opacity: 1;
  }
}

/* Contenu placé devant l’overlay */
.hero-lateral .container {
  position: relative;
  z-index: 2;
}

/* Textes avec effet de glow néon */
.hero-lateral h1,
.hero-lateral p {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 255, 234, 0.8);
}

/* Bouton style cyber */
.hero-lateral a.btn {
  border: 2px solid #00ffea;
  color: #00ffea;
  transition: all 0.3s ease;
}
.hero-lateral a.btn:hover {
  background-color: #00ffea;
  color: #0d0d0d;
}

/* Ajustements responsive */
@media (max-width: 768px) {
  .hero-lateral {
      text-align: center;
      padding: 40px 0;
  }
  .hero-lateral img {
      margin-top: 20px;
      max-width: 80%;
  }
}

table td, table th{
  background-color: #1a1a1a !important;
  color: white !important;
}

.accordion-button {
  background-color: rgba(255, 255, 255, 0.1) ;
  border: none ;
  color: white;
}