* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    background-color: #e6f7ff; /* Couleur de fond modifiée */
}
.banner {
    background: url('banner-image.jpg') no-repeat center center/cover;
    width: 100%;
    height: 200px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-title-container {
    background-color: rgba(0, 0, 0, 0.7); /* Pavé noir avec transparence */
    padding: 10px 20px;
    border-radius: 5px;
}
.banner-title {
    color: white;
    font-size: 2.5em;
    text-align: center;
    animation: blink 1s infinite;
}

/* Effet de clignotement */
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.container {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}
nav {
    background-color: #005f99; /* Changement de couleur de fond pour le menu */
    color: #fff;
    padding: 10px;
    text-align: center;
}
nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
}
footer {
    background-color: #005f99; /* Changement de couleur de fond pour le pied de page */
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
.bottom-banner {
    background: url('bottom-banner-image.jpg') no-repeat center center/cover;
    width: 100%;
    height: 150px;
}
.content_temp {
    display: flex;
    gap: 3em;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto
}
p {
        margin-bottom: 10px;
}
@media (max-width: 768px) {
    .banner {
        height: 150px;
    }
    .banner-title {
        font-size: 2em;
    }
    .bottom-banner {
        height: 100px;
    }
}
