main div{
    margin-left: 10%;
    margin-right: 10%;
    /*margin: auto;
    width: 65%;*/
}

/* ANCIENNE RÈGLE PROBLÉMATIQUE - À COMMENTER OU SUPPRIMER */
/*
main div p {
	text-align: center;
	font-size: 20px;
}
*/

/* NOUVELLE RÈGLE - Plus spécifique pour ne pas tout casser */
main div p {
    text-align: justify;
    font-size: 16px;
}

/* Gardez le centrage uniquement pour les titres et éléments spécifiques */
main div > h1,
main div > h2,
main div > h3 {
    text-align: center;
}

}

h2{
    color: #aa3b97;
}

.section img{
    max-width: 70%;
    height: auto;
}

div.gallery {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
}

div.gallery:hover {
    border: none !important;
}
  
/* Centrer les images dans .gallery */
div.gallery img {
    width: auto; /* CHANGÉ : n'utilise plus 100% pour éviter l'étirement */
    max-width: 100%; /* AJOUTÉ : s'adapte sans dépasser */
    height: auto;
    display: inline-block; /* AJOUTÉ : permet le centrage */
    margin: 0 auto; /* AJOUTÉ : centre l'image */
}
  
/* Centrer le texte de description */
div.desc {
    padding: 3%;
    text-align: center;
}
  
*{
    box-sizing: border-box;
}
  
/* Centrer le contenu dans .responsive 
.responsive {
    padding: 0 6px;
    float: left;
    width: 25%;
    margin: auto;
    text-align: center; /* AJOUTÉ : centre le contenu à l'intérieur */
*/

@media only screen and (max-width: 700px) {
    .responsive {
    width: 50%;
    margin: 6px 0;
    }
}
  
@media only screen and (max-width: 500px) {
    .responsive {
    width: 100%;
    }
}
  
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

main tr{
    border: 1px solid rgb(0, 0, 0);
}
main ul{
    display : inline-block;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

main li{
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align:left;
}

.Finance ul{
    width: auto;
    margin: auto;
    margin-left: 12%;
    margin-bottom: 20px;
}

table {
    width: auto;
    margin: auto;
}

footer {
 margin-top: 10px;
}

/*
body {
background-image: url('../../resources/image/x16.jpg');
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
*/