* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background: #f0f8ff; /* Bleu ciel clair pour le fond de la page */
}

.container {
  width: 80vmin;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 120px;
  background-color: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-radius: 10px; /* Ajout de bords arrondis */
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

h3 {
  background-color: #e0f7ff; /* Bleu ciel clair pour les onglets */
  text-align: center;
  padding: 15px 0;
  cursor: pointer; /* Changement du curseur pour indiquer que c'est cliquable */
  font-weight: 600;
  color: #0077b6; /* Bleu ciel plus foncé pour le texte */
  transition: background-color 0.3s ease; /* Ajout d'une transition */
}

h3:hover {
  background-color: #b3e5fc; /* Bleu ciel plus clair au survol */
}

.tab-content {
  background-color: #ffffff;
  padding: 50px 40px;
}

.tab-content h4 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #005f73; /* Bleu ciel foncé pour les titres */
  font-weight: 600;
}

.tab-content p {
  text-align: justify;
  line-height: 1.9;
  letter-spacing: 0.4px;
  color: #202238;
  text-align: center;
  margin-top: 15px;
  font-size: 15px;
  font-weight: 500;
}

.tab-content div {
  display: none;
}

.tab-content .active {
  display: block;
}

.tabs .active {
  background-color: #ffffff;
  color: #0077b6; /* Bleu ciel foncé pour l'onglet actif */
}

h1 {
  text-align: center;
  font-size: 24px; /* Taille de police légèrement augmentée */
  color: #0077b6; /* Bleu ciel foncé pour le titre principal */
  margin-bottom: 20px;
}

.link {
  width: 99%;
  height: 45px;
  margin-top: 15px;
  text-align: center;
  border: 2px solid #0077b6; /* Bleu ciel foncé pour la bordure */
  border-radius: 5px;
  padding: 0 10px; /* Ajout de padding pour un meilleur confort de saisie */
}

.btn {
  width: 100%;
  color: #fff;
  height: 45px;
  outline: none;
  border: none;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer; /* Curseur pointer pour indiquer que c'est cliquable */
  margin: 15px 0 5px 0;
  border-radius: 5px;
  background: #0077b6; /* Bleu ciel foncé pour le bouton */
  transition: background-color 0.3s ease; /* Ajout d'une transition */
}

.btn:hover {
  background-color: #005f73; /* Bleu ciel plus foncé au survol */
}