  body {
    font-family: 'Segoe UI', Tahoma, Geneva, sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
  }
  .bg-custom-gray {
      background-color: #F0F0F0;
      color: #343a40; 
  }    
  nav {
    background-color: #212529;
  }
  nav .nav-link {
    color: #fff;
    font-weight: 500;
  }

  .hero-section {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              url("img/Circuit.jpeg") no-repeat center center/cover;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  }
  

  /*
  .hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://upload.wikimedia.org/wikipedia/commons/5/55/Circuit_%2870680553%29.jpeg') 
                no-repeat center center/cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    }  
    */
  

  .hero-section .container-fluid {
    max-width: 82%; /* Limiter la largeur du conteneur de texte */
    padding: 0 4px; /* Ajouter du padding pour éviter que le texte touche les bords */
    margin: 0 auto; /* Centrer le texte horizontalement */
  }

  .hero-section h2 {
    font-size: 32px;
  }

  /* Requêtes médias pour petits écrans */
  @media (max-width: 768px) {
    .hero-section h2 {
      font-size: 1rem;
    }
  }

  .hero-section h1 {
      font-size: 3.5rem;
      font-weight: 600;
  }    
  .hero-section h2 {
    font-size: 36px;
    font-weight: 350;
  }
  h2 {
      font-size: 2rem;
  }    
  h3 {
      font-size: 24px;
      font-weight: bold;
  }        
  .section-title {
    font-weight: 600;
    margin-bottom: 2rem;
  }
  .feature-icon {
    font-size: 3rem;
    color: #007bff;
  }
  .contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .service-box{
    background-color: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;    
  }

  footer {
    background-color: #212529;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
  }
  .text-danger {
    color: #dc3545;
  }
  .text-success {
    color: #28a745;
  }    



  .bullet-wrap::before,
  .bullet-wrap::after {
    content: "•";
    margin: 0 6px;
    color: #343a40; /* ou une autre couleur selon ton design */
    font-size: 0.9em; /* ajuste selon le style souhaité */
  }



  .services-section {
    position: relative;
    overflow: hidden;
  }
  
  .services-section .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  
  .services-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Pour améliorer lisibilité du texte */
    z-index: 1;
  }
  
  .services-section .container,
  .services-section .row,
  .services-section .service-box {
    position: relative;
    z-index: 2;
  }



  