body {
	margin: 0;
	font-family: Arial, sans-serif;
	background-color: #1a1a1a;
}
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
	padding: 10px 20px;
	background-color: #1a1a1a;
}
.menu {
	display: flex;
	gap: 20px;
}
.menu a {
	color: white;
	text-decoration: none;
	font-size: 18px;
}
.menu a:hover {
	text-decoration: underline;
}
.dropdown {
	position: relative;
	display: inline-block;
}
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #1e1e1e;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}
.dropdown-content a {
	color: white;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}
.dropdown-content a:hover {
	background-color: #575757;
}
.dropdown:hover .dropdown-content {
	display: block;
}
.logo {
	margin-right: auto;
	align-self: flex-start;
}
.logo img {
	height: 70px;
}
.full-width-image {
	width: 100%;
	height: auto;
}
.rectangle-container {
	display: flex;
	justify-content: space-between;
	margin: 20px;
}
.rectangle {
	background-color: #292929;
	border: 2px solid white;
	padding: 20px;
	flex: 1;
	margin: 0 10px;
	color: white;
	text-align: center;
	font-family: 'Montserrat', 'Roboto Condensed', Helvetica, Arial, sans-serif;
}
.rectangle:first-child {
	margin-left: 0;
}
.rectangle:last-child {
	margin-right: 0;
}
.content-container {
	margin: 10px;
	padding: 10px;
	display: flex;
	justify-content: space-between;
	border: 2px solid white;
}
.content-container.bg-color-1 {
	background-color: #292929;
}
.content-container.bg-color-2 {
	background-color: #4f4f4f;
}
.content-text {
	flex: 7;
	margin: 10px;
}
.content-text p {
	text-align: justify; /* Justify the text in <p> elements */
}
.content-image {
	flex: 3;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 5px;
}
.content-image img {
	max-width: 80%;
	height: auto;
	border-radius: 0px; /* Optionnel : pour arrondir les coins de l'image */
}
.reverse {
	flex-direction: row-reverse;
}
h1 {
	font-family: 'Montserrat', 'Roboto Condensed', Helvetica, Arial, sans-serif;
	font-size: 38px;
	color: white;
}
p {
	font-family: 'Montserrat', 'Roboto Condensed', Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: white;
}
footer {
	background-color: #0e0e0e;
	color: white;
	padding: 0px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.social-icons {
	display: flex;
	gap: 20px;
}
.social-icons a {
	color: white;
	font-size: 24px;
	text-decoration: none;
}
.social-icons a:hover {
	color: #5df8cb;
}