body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f5f5;
  color: #333;
}

header {
  background: #6a0dad;
  color: white;
  padding: 20px;
}

nav a {
  color: white;
  margin-right: 15px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: #fff;
  padding: 40px;
  text-align: center;
  margin: 20px;
  border-radius: 10px;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
}

.btn-primary {
  background: #ff6600;
  color: white;
}

.btn-secondary {
  background: #6a0dad;
  color: white;
}

.cards {
  display: flex;
  gap: 20px;
  margin: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
}


.logo {
  width: 80px;          /* taille du logo */
  height: auto;          /* conserve les proportions */
  vertical-align: middle;
  border-radius: 10px;   /* optionnel, coins arrondis */
  margin-right: 10px;    /* espace entre le logo et le texte */
}



.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-height: 700px; /* ✅ Augmenter ici la hauteur */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.video-container video {
  width: 200%;
  height: auto;
  display: block;
}


