.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background-color: #007bff; /* Bleu vif */
    color: white;
    border-radius: 0; /* Supprime les bords arrondis */
    width: 100%;
    position: fixed; /* Fixe en haut de l'écran */
    top: 0;
    left: 0;
    z-index: 1000; /* Toujours au-dessus du contenu */
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px; /* Espacement entre les liens */
    padding: 0;
    margin: 0;
  }
  
  nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 10px 15px;
    transition: 0.3s;
  }
  
  nav ul li a:hover {
    background-color: #0056b3;
    border-radius: 5px;
  }




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

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

h1 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.5em;
    margin-top: 20px;
}

h3 {
    font-size: 1.3em;
    margin-top: 15px;
}

p {
    font-size: 1em;
    line-height: 1.6;
}

strong {
    font-weight: bold;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.feedly-logo {
    text-align: center;
    margin: 20px 0;
}

.feedly-logo img {
    width: 200px;
    height: auto;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }
}


body {
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    margin: 0;
    padding: 0;
  }
  
  .veille-section {
    text-align: center;
    padding: 60px 20px;
  }
  
  .veille-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
  }
  
  .veille-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ff4c3b;
    margin: 8px auto 0;
    border-radius: 10px;
  }
  
  .veille-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
  }
  
  .veille-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .veille-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
  }
  
  .pocket {
    width: 180px;
  }
  
  .btn {
    background-color: #ff4c3b;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: background 0.3s;
  }
  
  .btn:hover {
    background-color: #e03b2d;
  }
  