body {
    background-color: white;
    font-family: Arial, sans-serif;
    color: black;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 40px 20px;
}

.main-title {
    font-size: 2.5em;
    color: #000000;
    margin: 0;
}

.content {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.subtitle {
    font-size: 1.8em;
    color: #13414a; /* orange */
    text-align: left;
    margin: 60px 0 20px 0;
}


.image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.image-grid img {
    max-width: 45%;
    border: 2px solid white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

footer {
    text-align: center;
    padding: 20px;
}
.btn-retour {
    display: inline-block;
    margin: 20px auto;
    padding: 12px 24px;
    background-color: #13414a;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.btn-retour:hover {
    background-color: #13414a;
    transform: scale(1.05);
}

/* Titre spécifique */
h2.orange-title {
    color:  #13414a;
    margin-top: 30px;
}

/* Liste avec puces orange mais texte noir */
ul.orange-bullets {
    list-style: none;
    padding-left: 0;
}

ul.orange-bullets li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: black; /* Texte noir */
}

ul.orange-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #13414a;/* Puce orange */
    font-size: 20px;
    line-height: 1;
}

.btn-download {
    display: inline-block;
    margin: 20px 0;
    padding: 12px 24px;
    background-color: #13414a; /* Couleur personnalisée */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-download:hover {
    background-color: #13414a; /* Variante plus foncée au survol */
    transform: scale(1.05);
}
.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.image-container img {
    max-width: 80%; /* Ajuste la taille pour éviter la déformation */
    height: auto; /* Conserve les proportions */
    object-fit: contain; /* Assure une bonne qualité */
}


.section-title {
    font-size: 1.8em;
    margin: 50px 0 20px 0;
    color: #13414a;
}













