/* Grundlegende Reset und Box-Sizing */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Helvetica, Arial, sans-serif;
	background-color: #f9f9f9;
	color: #222;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 20px;
	text-align: left;
}

.container {
	max-width: 600px;
	background-color: white;
	padding: 30px 20px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.responsive-image {
	max-width: 100%;
	height: auto;
	border-radius: 6px;
	margin-bottom: 20px;
}

h1 {
	font-size: 1rem;
	margin-bottom: 10px;
	color: #004080;
}

h2 {
	font-size: 1rem;
	margin-bottom: 10px;
	color: #004080;
}

.contact-info p,
.contact-info ul {
	margin-bottom: 15px;
	font-size: 1rem;
	line-height: 1.4;
}

.contact-info ul {
	list-style: none;
	padding-left: 0;
	text-align: left;
}

.contact-info ul li {
	margin-bottom: 8px;
}

.email-text {
	font-family: monospace;
	background-color: #eee;
	padding: 2px 6px;
	border-radius: 4px;
	user-select: all;
}

.email-text .at {
	font-weight: bold;
	color: #d33;
}

.email-image {
	vertical-align: middle;
	max-height: 24px;
}

.gallery-image {
	max-width: 100%;
	height: auto;
	margin-top: 10px;
	border-radius: 4px;
}

/* Responsive Anpassungen */
@media (max-width: 480px) {
	.container {
		padding: 20px 15px;
	}

	h1 {
		font-size: 1.5rem;
	}

	.contact-info p,
	.contact-info ul li {
		font-size: 0.9rem;
	}
}