.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

#lang-menu {
    display: none;
    background-color: white;
    border: 1px solid #ccc;
    position: absolute;
    top: 30px;
    right: 0;
}

#lang-menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: black;
}

#lang-menu a:hover {
    background-color: #f0f0f0;
}

.hidden {
    display: none;
}

.language-selector {
	position: fixed; 
	top: 20px;
	right: 30px;
	font-family: Arial, sans-serif;
	z-index: 1000; 
	color: black; 
}

.dropdown button {
	background-color: white;
	color: black; 
	border: 1px solid #ccc; 
	padding: 10px; 
	cursor: pointer; 
}


.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.dropdown-content a:hover {
	background-color: #f1f1f1;
}

.show {
	display: block;
}

.image-container {
	text-align: center;
	margin-top: 20px;
}

img {
	max-width: 100%;
	height: auto;
}

h1.toggle {
	font-size: 2.4rem;
	line-height: 1.1;
	margin: 0 0 2rem 0;
	cursor: pointer;
	display: flex;
	align-items: center;
}

h1.toggle:hover {
	color: #18bfef !important;
}

h1.toggle span.arrow {
	margin-left: 1rem;
	font-size: 2rem;
	line-height: 2.4rem;
	display: inline-block;
	transition: transform 0.3s ease;
}

h1.toggle.open span.arrow {
	transform: rotate(90deg);
}

.toggle_content {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	background: rgba(255, 255, 255, 0);
	box-shadow: none;
	border-radius: 1rem;
	transition:
		max-height 0.6s ease,
		opacity 0.4s ease,
		background 0.6s ease,
		box-shadow 0.6s ease,
		padding 0.4s ease;
}

.toggle.open + .toggle_content {
	max-height: 2000px;
	opacity: 1;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
	padding: 1rem 1.5rem;
	margin-bottom: 4rem;
}

.toggle.open + .toggle_content {
	transform: translateY(0);
}

.toggle_content {
	transform: translateY(-5px);
	transition: all 0.6s ease;
}
