body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f5f5;
}

header {
    background-color: #fff;
    color: #2f477a;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 32px;
    text-shadow: 1px 1px #dcdcdc;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
}

header nav li {
    margin-right: 20px;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 40px;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 24px;
    color: #274986;
    margin-top: 0;
    border-bottom: 1px dashed #345492;
    padding-bottom: 10px;
    text-shadow: 1px 1px #dcdcdc;
}

section p {
    line-height: 1.5;
    text-align: justify;
	display: block;
	margin-left: 50px; 
	margin-right: 50px;
}

section ul {
    margin-top: 0;
    margin-bottom: 20px;
}


img {
  max-width: 100%;
  height: auto;
  margin-bottom: 5%;
}

a {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #345492;
    border-radius: 5px;
    background-color: #345492;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: transform .3s ease-in-out;
    backface-visibility: hidden;
}

a:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

footer {
    color: #2e4e8c;
    background-color: #fff;
    border-top: 1px solid #dcdcdc;
    padding: 10px;
    text-align: center;
}

table {
    border-collapse: collapse;
    width: 100%;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

th, td {
    border: 1px solid #dcdcdc;
    padding: 8px;
}

th {
    text-align: center;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

.ico_categorie {
    vertical-align: middle;
    margin-right: 8px;
}



