/* GESTION POP UP DANS TEMPLATE ** Message de rappel pour s'inscrire   */

    .modal {
      display: none;
      position: fixed;
      left: 0; top: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .modal.show {
      display: flex;
    }

    .modal-content {
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      max-width: 90%;
      width: 400px;
      text-align: center;
    }

    button, .btn-offer {
      margin-top: 15px;
      padding: 10px 20px;
      font-size: 16px;
      border-radius: 6px;
      cursor: pointer;
      border: none;
      display: inline-block;
      text-decoration: none;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    button {
      background-color: #10b981;
      color: white;
      margin-right: 10px;
    }
    button:hover {
      background-color: #0f9e6e;
    }

    .btn-offer {
      background-color: #2563eb;
      color: white;
    }
    .btn-offer:hover {
      background-color: #1d4ed8;
    }

    label {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 15px;
      font-size: 14px;
      color: #444;
    }

    input[type="checkbox"] {
      margin-right: 8px;
    }



/*   Page programme leadership section programme */

    .program-section {
      padding: 50px 20px;
      max-width: 1000px;
      margin: auto;
    }

    .program-section h2 {
      color: #5a0d56;
      font-size: 28px;
      margin-bottom: 10px;
    }

    .program-section em {
      color: #444;
    }

    .program-block {
      background: white;
      border-left: 8px solid #5a0d56;
      padding: 30px;
      margin-bottom: 40px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      border-radius: 8px;
    }

    .program-block h3 {
      color: #d95b11;
      margin-top: 0;
    }

    .program-block ul {
      padding-left: 20px;
    }

    .program-block ul li {
      margin-bottom: 5px;
    }

    .highlight {
      font-weight: bold;
    }

    .cta-button {
      display: inline-block;
      margin-top: 30px;
      background: #5a0d56;
      color: #fff;
      padding: 12px 25px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .cta-button:hover {
      background: #7e2484;
    }

    .motif-bg {
      background-image: url('/mnt/data/f1609157-74c7-4d0e-ad14-502b862ead62.png');
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      padding: 40px 20px;
    }

    @media (max-width: 768px) {
      .program-section {
        padding: 30px 15px;
      }
    }
    
    
    
    
    
    /*  GESTION DU FICHIER LES COURS */

    @media (max-width: 767px) {
  .container {
    flex-direction: column;
    margin: 20px auto;
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .image-container {
    width: 100%;
    height: 180px;
    display: block;
  }

  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

   .form-container {
    padding: 20px;
    width: 100%;
  }


  .form-container h2 {
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
  }

  .form-container input,
  .form-container textarea {
    font-size: 16px;
    padding: 10px;
    margin: 6px 0;
  }

  .form-container .form-label {
    font-size: 14px;
    margin-bottom: 4px;
    display: block;
  }

  .form-container button {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    font-size: 16px;
  }

  .form-feedback {
    text-align: center;
    font-size: 14px;
    margin-top: 12px;
  }
}

      .container_cours {
            width: 100%;
            max-width: 1200px;
            background: white;
            border-radius: 16px;

            display: flex;
            overflow: hidden;
            flex-wrap: wrap;
        }


    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    