/* ========================
   VEILLE TECHNOLOGIQUE – STYLE MODERNE & VIVANT
   ======================== */

   .veille-section {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #f1f5f9, #ffffff);
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .veille-section h2 {
    font-size: 2.2rem;
    color: #0f172a;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    text-transform: uppercase;
  }
  
  .veille-section h2::after {
    content: '';
    width: 70px;
    height: 4px;
    background-color: #0ea5e9;
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    border-radius: 4px;
  }
  
  .veille-section p, .veille-section ul {
    max-width: 850px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    text-align: center;
  }
  
  .veille-section ul {
    list-style: none;
    padding: 0;
  }
  
  .veille-section ul li::before {
    content: "✓";
    color: #0ea5e9;
    margin-right: 0.5rem;
  }
  
  /* Cartes */
  .veille-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .veille-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .veille-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.2);
  }
  
  .veille-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .veille-card h3 {
    font-size: 1.4rem;
    margin: 1rem 1.2rem 0.5rem;
    color: #0f172a;
    font-weight: 600;
  }
  
  .veille-card p {
    font-size: 0.95rem;
    color: #475569;
    margin: 0 1.2rem 1.5rem;
    flex-grow: 1;
  }
  
  .veille-card a {
    margin: 0 1.2rem 1.5rem;
    padding: 0.6rem 1.1rem;
    border: 2px solid #0ea5e9;
    border-radius: 50px;
    color: #0ea5e9;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
  }
  
  .veille-card a:hover {
    background-color: #0ea5e9;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .veille-section h2 {
      font-size: 1.6rem;
    }
  
    .veille-card h3 {
      font-size: 1.2rem;
    }
  
    .veille-card p {
      font-size: 0.9rem;
    }
  
    .veille-card img {
      height: 150px;
    }
  }