* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #2c3e50;
}

header {
    background-color: #84c9ec;
    color: white;
    padding: 20px 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo_container1,
.logo_container2 {
    height: 80px;
}

.logo_container1 img,
.logo_container2 img {
    height: 80px;
}

header h1 {
    font-size: 24px;
    font-style: oblique;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

nav {
    background-color: #3582a8;
    display: flex;
    justify-content: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    position: relative;
}

nav ul li a, nav ul li .current-page {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav ul li a:hover, .dropdown:hover .dropbtn, nav ul li .current-page {
    background-color: #3498db;
}

.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #235b77;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: #ffffff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #2d7ea7;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.content-homepage {
    width: 80%;
    margin: 30px auto;
    padding: 10px 20px;
    flex: 1;
}

.content-homepage h1 {
    font-size: 35px;
    font-style: oblique;
    text-align: center;
    margin-bottom: 4%;
}

.content-homepage h2 {
    font-size: 14px;
    text-align: right;
    margin: 2% -10% 0% 0%;
    padding: 20px;
}

.content {
    width: 90%;
    margin: 30px auto;
    padding: 20px;
}

.content h4.page {
    font-size: 22px;
    color: #065a83;
    margin-bottom: 2%;
}

.content h4 {
    margin-bottom: 1%;
}

.content h3 {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 2%;
    color: #065a83;
}

.content p {
    line-height: 1.2;
    margin-bottom: 2%;
}

.content img {
    height: 16%;
    width: 32%;
    align-items: center;
    border-radius: 8px;
    margin-bottom: 15px;
    margin-left: 33%;
}

.content ul {
    margin-top: 10px;
    margin-left: 20px;
    line-height: 1.6;
}

.content ul li {
    margin-bottom: 10px;
}

.content .button-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 5%;
    align-items: center;
}

.content .buttonETAPE {
    width: 50%;
    display: block;
    text-align: center;
    background-color: #3e98c5;
    color: white;
    padding: 25px 20px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: 0.3s;
}

.content .buttonETAPE:hover {
    background-color: #2f7294;
    border-color: #144765;
}

.content button {
    background-color: #3e98c5;
    color: white;
    border: 2px solid transparent;
    border-radius: 5px;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    text-align: center;
    margin-top: 20px;
    margin-left: 45%;
}

.content button:hover {
    background-color: #2f7294;
    border-color: #144765;
}

.content ol {
    margin-left: 20px;
    line-height: 1.3;
    margin-bottom: 2%;
}

.content ol li {
    margin-bottom: 10px;
}

.content .team-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.content .team-member {
    text-align: center;
    margin-bottom: 5%;
}

.content .team-member h3 {
    font-size: 24px;
    color: #065a83;
    margin-bottom: 3%;
}

.content .member-info p {
    font-size: 22px;
    color: #2c3e50;
}

.content .team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.content .member {
    text-align: center;
    width: 180px;
}

.content .member p {
    font-size: 18px;
    color: #2c3e50;
}

.content .budget-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10% 0;
}

.content .budget-table th, .budget-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.budget-table th {
    background-color: #3582a8;
    color: white;
    font-weight: bold;
}

.budget-table th:first-child {
    background-color: transparent;
}

.budget-table td.highlight {
    background-color: #3582a8;
    color: white;
    font-weight: bold;
}

.content tbody tr td{
    background-color: #afd7eb;
}

.content .contact-info {
    margin-bottom: 30px;
    padding: 20px;
    width: 35%;
    border: 1px solid #abc4d1;
    border-radius: 8px;
    background-color: #abc4d16a;
}

.content .contact-info h2 {
    color: #065a83;
    margin-bottom: 15px;
}

.content .contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.content h1{
    font-size: 35px;
    font-style: oblique;
    text-align: center;
    margin-bottom: 4%;
}