/* Styles globaux supplémentaires */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
  }
  
  a {
    text-decoration: none;
  }
  
  .rounded-pill {
    border-radius: 50rem !important;
  }
  
  .shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  }
  
  .bg-success {
    background-color: #28a745 !important;
  }
  
  .text-success {
    color: #28a745 !important;
  }
  
  /* Animation pour les sections */
  section {
    padding: 5rem 0;
  }
  
  @media (max-width: 768px) {
    section {
      padding: 3rem 0;
    }
  }