  @import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Lato:wght@400;600;700&display=swap');

  body {
      margin: 0;
  }

  .eg-page {
      background: #f3f3f6;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      font-family: 'Lato', sans-serif;
      color: #545A85;
  }

  .eg-header {
      display: flex;
      align-items: center;
      margin-bottom: 16px;
      margin-top: 16px;
  }

  .eg-header .imgLogo {
      height: auto;
      width: 160px;
  }

  .eg-name-block {
      display: flex;
      flex-direction: column;
  }

  .eg-name {
      font-family: 'Pacifico', cursive;
      font-weight: normal;
      font-size: 2.5rem;
      color: #545A85;
      line-height: 1.1;
      margin: 32px 0 0 0;
  }

  .eg-title{
      font-size: 1.3rem;
      font-weight: normal;
      color: #EC3F68;
      margin: 10px 0 0 0;
  }

h3{font-size:1.3rem}

  .eg-tagline {
      text-align: center;
      max-width: 700px;
      font-size: 0.9rem;
      color: #545A85;
      line-height: 1.7;
      margin: 0 0 16px 0;
  }

  .eg-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      max-width: 700px;
      width: 100%;
      margin: 32px 0;
  }

  .eg-grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      max-width: 700px;
      width: 120%;
      margin-bottom: 32px;
  }

  .eg-card {
      background: #fff;
      border-radius: 16px;
      padding: 16px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      cursor: pointer;
      transition: transform 0.15s, box-shadow 0.15s;
      text-decoration: none;
  }

  .eg-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .eg-card-icon {
      width: 110px;
      height: 90px;
  }

  .eg-card-label {
      font-size: 0.88rem;
      font-weight: 700;
      color: #545A85;
      text-align: center;
  }

  .eg-card:hover .eg-card-label {
      color: #EC3F68;
  }

  .eg-card-label .arrow {
      color: #5B3F8C;
      margin-right: 4px;
  }

  .eg-footer, .link {
      font-size: 0.78rem;
  }

  a {
      color: #545A85;
      text-decoration: underline;
  }

  .eg-page-content {
      max-width: 700px;
  }



  /*pour affichage sur mobile */
  @media screen and (max-device-width: 960px),
  screen and (max-width: 600px) {
      .eg-page {
          padding: 0px 32px;
      }

      .eg-page-content {
          max-width: none;
          width: 100%;
      }

      .eg-header {
          margin: 32px 0;
      }

      .eg-header .imgLogo {
          height: auto;
          width: 200px;
      }

      .eg-name {
          font-size: 3.6rem;
      }

      .eg-title, h3 {
          font-size: 2.3rem;
      }

      .eg-tagline {
          font-size: 2.3rem;
          width: 100%;
          max-width: none;
          margin: 0 0 32px 0;
      }

      .eg-grid,
      .eg-grid-2 {
          grid-template-columns: 1fr;
          gap: 32px;
          width: 100%;
          max-width: none;
      }

      .eg-card {
          flex-direction: row;
          justify-content: flex-start;
          padding: 32px 32px;
          gap: 32px;
          border-radius: 12px;
      }

      .eg-card img {
          height: 132px;
          width: auto;
      }

      .eg-card-label {
          font-size: 2.3rem;
          text-align: left;
      }

      .eg-footer, .link {
          font-size: 1.5rem;
      }
  }