@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

    * {
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    html, body {
      height: 100%;
      margin: 0;
    }

    body {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: linear-gradient(135deg, #eef2f3, #cfd9df);
      color: #333;
      min-height: 100vh;
      padding: 2rem 1rem;
    }

    header {
      text-align: center;
      margin-bottom: 2rem;
    }

    header img.logo {
      /*max-width: 100px;*/
      margin-bottom: 1rem;
    }

    h1 {
      font-weight: 600;
      margin: 0;
    }
    
    h5 {
        color: #0043D0 !important;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto 2rem auto;
      width: 100%;
    }

    .card {
      background: white;
      padding: 1.5rem;
      border-radius: 1rem;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-align: center;
      text-decoration: none;
      color: inherit;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    }

    .card h2 {
      margin: 0;
      font-size: 1.3rem;
    }
    
    .card:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 16px 32px rgba(0,0,0,0.2);
    }


    footer {
      margin-top: auto;
      text-align: center;
      font-size: 0.85rem;
      color: #666;
      padding: 1rem 0;
    }
    
    .logo {
      max-width: 100%;
      height: auto;
      /*width: 200px;*/
    }

    /* Réduire la taille sur les petits écrans */
    @media (max-width: 768px) {
      .logo {
        width: 220px;
      }
    }
    
    @media (max-width: 480px) {
      .logo {
        width: 120px;
      }
    }

  