body {
    margin: 0;
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
    font-family: 'Montserrat', sans-serif;
    background: #f9f9f9;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.container {
    max-width: 800px;
    width: 100%;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

h1 {
    color: #24598D;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
}

h2 {
    color: #24598D;
    font-size: 1.7rem;
    font-weight: 400;
    text-align: center;
    margin-top: 0;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

strong {
    color: #24598D;
}

.highlight {
    color: #24598D;
    font-weight: bold;
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
      }
      h1 {
        font-size: 1.5rem;
      }
    }


.title-with-logo {
  display: flex;
  align-items: center;
  justify-content: center; /* centre le bloc horizontalement */
  gap: 1rem; /* espace entre le logo et le texte */
  margin-bottom: 1rem;
}

.title-with-logo img {
  width: 150px; /* taille par défaut du logo */
  height: auto;
  max-width: 20vw; /* limite sur grands écrans */
}

.title-with-logo h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  margin: 0;
}

/* Adaptation mobile */
@media (max-width: 600px) {
  .title-with-logo {
    flex-direction: column;
    text-align: center;
  }

  .title-with-logo img {
    width: 110px;
    margin-bottom: -1.5rem;
  }

  .title-with-logo h1 {
    margin-top: 0rem;
    font-size: 2rem;
  }
}