body {
    background-color: #f0f0f0;
    color: #314294;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.navbar {
    background-color: #fff;
    color: #314294;
}
.bg-primary {
    background-color: #314294 !important;
}
.navbar-brand, .nav-link {
    color: #314294;
}
.navbar-brand:hover, .nav-link:hover {
    color: #ffcc00;
}
.btn-primary {
    background-color: #314294;
    border-color: #314294;
}
.btn-primary:hover {
    background-color: #ffcc00;
    border-color: #ffcc00;
}
.header {
    background-color: #314294;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 30vh; /* Presque la moitié de l'écran */
    text-align: center;
    padding: 20px;
}
.header img {
    width: 100%;
    height: auto;
    max-width: 400px; /* Limite de la taille maximale pour éviter l'étirement excessif */
    margin-bottom: 20px;
}
.header h1 {
    font-family: 'Arial Black', Gadget, sans-serif;
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.header p {
    font-size: 1.25rem;
    font-family: 'Arial', sans-serif;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.footer-link {
    color: #fff; /* Couleur par défaut (blanc) */
    text-decoration: none; /* Supprime le soulignement par défaut des liens */
    transition: color 0.3s; /* Animation de transition de couleur sur 0.3s */
}

.footer-link:hover {
    color: #ffcc00; /* Couleur au survol */
}
.main-content {
    padding: 20px;
}
.hr-style {
    border: 0;
    height: 5px;
    background-color: #314294;
    margin: 40px 0;
}
.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}
.card img {
    width: calc(100% - 20px); /* Ajustement pour le padding */
    height: 200px; /* Hauteur uniforme pour toutes les images */
    object-fit: cover; /* Couvrir toute la zone */
    margin: 10px;
    border-radius: 10px;
}
.footer {
    background-color: #314294;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
}
.nav-link i {
    margin-right: 8px;
}

.card-title i {
    margin-right: 5px;
  }
  .list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .list-group-item:first-child {
    font-weight: bold;
    color: #FFD700;
  }
  .list-group-item:nth-child(2) {
    font-weight: bold;
    color: #C0C0C0;
  }
  .list-group-item:nth-child(3) {
    font-weight: bold;
    color: #CD7F32;
  }

  .icon-yes, .icon-no {
    font-size: 20px;
    vertical-align: middle;
}
.icon-yes {
    color: green;
}
.icon-no {
    color: red;
}