			body {
				display: flex;
				flex-direction: column;
				min-height: 100vh;
				background-color: #ECE5D5;
				font-family: 'Open Sans', Verdana, Tahoma, sans-serif;
				font-size: 1.1em; /* Taille légèrement plus grande pour plus de confort */
				line-height: 1.9; /* Espacement de ligne généreux */
				color: #444444;
			}
			.content {
				flex: 1;
			}
			.navbar {
				background-color: #343a40;
			}
			@media (max-width: 991.98px) {
				.navbar-collapse {
					max-height: 300px;
					overflow-y: auto;
				}
			}
			.navbar a {
				color: white;
				padding: 0.5rem 1rem; 
			}
			.navbar-brand {
				color: #f3e1b5;
			}
			.navbar a:hover {
				color: #f8f9fa;
			}
			.dropdown-menu {
				background-color: #343a40; 
			}
			.dropdown-item {
				color: white;
			}
			.dropdown-item:hover {
				background-color: #495057;
			}
			.container {
				max-width: 1000px;
			}
			
			.hero {
				padding: 35px 0;
				text-align: center;
				color: black;
				background: linear-gradient(to bottom, rgba(135, 206, 250, 0.7), rgba(236, 229, 213, 0.3));
				padding-left: 50px;
				padding-right: 50px;
			}
			.footer {
				display: flex;
				justify-content: space-between;
				background: linear-gradient(to top, rgba(144, 238, 144, 0.7), rgba(236, 229, 213, 0.3));
				padding-left: 50px;
				padding-right: 50px;
			}
			.no-underline {
				text-decoration: none; 
				color: inherit;
			}

			.no-underline:hover {
				color: inherit;
			}
			
			.custom-checkbox {
				cursor: not-allowed;
				pointer-events: none; 
			}
			
			th {
				position: sticky;
				top: 60px;
				z-index: 10; 
			}

			/* Blog */
			
			#img-logo {
				max-width: 500px; /* Make the image responsive */
				width: 100%; /* Make the image responsive */
				height: auto; /* Maintain aspect ratio */
				margin-bottom: 20px; /* Space between image and text */
			}
			.list-group-item {
				cursor: pointer;
				transition: background-color 0.3s;
			}
			.list-group-item:hover {
				background-color: #e9ecef;
			}
			#scrollableList {
				max-height: 300px; 
				overflow-y: auto; 
				border-top: 1px solid lightblue; 
				border-bottom: 1px solid lightblue; 
			}
			#togglePages {
				margin-top: -60px;
			}
			
			h1, h2, h3 {
				margin-top: 20px; 
				margin-bottom: 20px;
			}
			h1 {
				font-size: 3rem;
				color: #007bff;
				text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
			}
			h2 {
				font-size: 2rem;
				color: #28a745;
				border-bottom: 2px solid #28a745;
				padding-bottom: 10px;
				margin: 20px auto 20px auto;
				max-width: 1000px;
			}
			h3 {
				font-size: 1.5rem;
				color: #343a40;
				font-weight: 400;
			}
			
			#mainContent a {
				font-size: 1.2rem;
				color: #007bff;
				text-decoration: none;
				position: relative;
				transition: color 0.3s ease;
			}
			#mainContent a::after {
				content: '';
				position: absolute;
				left: 0;
				bottom: -5px;
				width: 100%;
				height: 2px;
				background-color: #007bff;
				transform: scaleX(0);
				transition: transform 0.3s ease;
			}
			#mainContent a:hover {
				color: #0056b3;
			}
			#mainContent a:hover::after {
				transform: scaleX(1);
			}

			/* Ads */
			
			.horizontal-ad {
				// background-color: #f0f0f0;
			}

			.container2 {
				position: relative; 
			}

			.vertical-ad {
				// background-color: #f0f0f0;
				width: 200px;
				height: 100%; 
				position: absolute; 
				top: -100px; /* Move to the top */
			}

			.left-ad {
				left: -220px; /* Move the left section outside the container */
			}

			.right-ad {
				right: -220px; /* Move the right section outside the container */
			}

			/* Media query for screens smaller than 1500px */
			@media (max-width: 1500px) {
				.container2 {
					flex-direction: column; /* Change to vertical layout */
					align-items: center; /* Center align items */
				}

				.vertical-ad {
					width: 100%; /* Full width on smaller screens */
					margin-bottom: 10px; /* Add spacing between sections */
					position: static;
				}
			}
			
			@keyframes sway {
    0% { transform: rotate(0deg); } /* Position initiale */
    50% { transform: rotate(5deg); } /* Se penche légèrement à droite */
    100% { transform: rotate(-5deg); } /* Se penche légèrement à gauche */
}
			/* Style de base pour les fleurs */
.flower {
    /* display: inline-block; Nécessaire pour appliquer la transformation */
    font-size: 1em;
    /* margin: 0 10px; Espace entre les fleurs */
    /* Point de pivot pour la rotation : le bas au centre */
    transform-origin: bottom center; 
}

/* Application de l'effet de balancement */
.wind-sway {
    animation-name: sway;
    animation-duration: 4s; /* Durée d'un cycle complet */
    animation-iteration-count: infinite; /* Répétition à l'infini */
    animation-direction: alternate; /* Pour que l'animation alterne entre 0% et 100% sans revenir brusquement */
    animation-timing-function: ease-in-out; /* Mouvement fluide */
}

/* Décalages pour un effet naturel */
.delay-1 {
    animation-delay: -0.5s; /* Commence en décalé */
    animation-duration: 3.5s; /* Vitesse légèrement différente */
}

.delay-2 {
    animation-delay: -1s;
    animation-duration: 4.2s;
}

.delay-3 {
    animation-delay: -1.5s;
    animation-duration: 3.8s;
}