h1 {
  text-align : center;
  color : #08a4d4;
}
.options-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px auto;
    max-width: 900px;
  }
  
  .option-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    max-width: 1100px; /* Pour éviter qu'il soit trop large sur les grands écrans */
    text-align: left; /* Pour aligner le texte à gauche */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: auto; /* Pour centrer l'ensemble du bloc */
  }
  
  .option-box h2 {
    color: #08a4d4;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: left;
    margin-top: 20px; /* Pour espacer les titres */
  }
  
  .option-box ul {
    list-style: none;
    padding: 0;
  }
  
  .option-box ul li {
    padding: 5px 0;
    color: #333;
  }

.footer-bottom {
  text-align : center;
  }