/* Styles pour le texte et le bouton */
.content-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
    width: 100%;
}

.description {
    text-align: left;
    line-height: 1.3;
    margin-bottom: 5px;
}

.download-section {
    text-align: right; /* Alignement à droite */
    margin-top: 20px; /* Espacement au-dessus */
    margin-bottom: 20px;
}

.download-button {
    display: inline-block;
    background-color: #009999;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.download-button:hover {
    background-color: #007f7f;
    transform: scale(1.05);
}

ul {
    margin-left: 20px;
    text-align: left;
    font-size: 1.1em;
}

.informative-note {
    display: flex;
    align-items: flex-start;
    background-color: #f0f8ff;
    padding: 20px;
    margin-top: 30px;
    border-radius: 8px;
    color: #333;
    font-size: 1.1em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #4682b4;
}

.note-icon {
    font-size: 2.2em;
    margin-right: 15px;
    color: #4682b4;
}

.note-message {
    flex: 1;
}

.note-message ul {
    margin-left: 20px;
    list-style: disc;
    font-size: 1em;
}

.note-message strong {
    font-weight: 600;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    margin-top: 20px;
    grid-auto-flow: column; /* Change l'orientation pour une galerie horizontale */
    overflow-x: auto; /* Permet de faire défiler la galerie horizontalement */
    padding-bottom: 20px; /* Ajoute un peu d'espace en bas pour le défilement */
  }
  
  .gallery-item {
    text-align: center;
    flex-shrink: 0; /* Empêche les éléments de rétrécir */
  }
  
  .gallery-item img {
    max-width: 100%;
    height: auto;
    max-height: 150px; /* Réduction de la hauteur des images */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .gallery-item img:hover {
    transform: scale(1.05);
  }
  
  .gallery-caption {
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;
  }