
@media (min-width: 768px) {
	html {
		font-size: 16px;
	}

	.flex {
		display: flex;
		gap: 2rem;
	}

		.flex > div {
			flex: 1;
		}
}

html {
	position: relative;
	min-height: 100%;
}

:root {
	--primary: #222;
	--accent: #0077b6;
	--background: #f5f5f5;
	--light: #fff;
}

* {
	box-sizing: border-box;
}

body {
	font-family: system-ui, sans-serif;
	margin: 0;
	background: var(--background);
	color: var(--primary);
	line-height: 1.6;
	margin-bottom: 60px;
}

header {
	/*background: var(--accent);*/
	color: var(--light);
	padding: 1rem 1rem;
	text-align: center;
	/*box-shadow: 0 4px 10px rgba(0,0,0,.2);*/
}

	header h1 {
		font-size: 2rem;
		margin: 0;
	}

.hero {
	text-align: center;
	padding: 3rem 1rem;
	background: var(--light);
}

	.hero h2 {
		font-size: 1.5rem;
		margin-bottom: 1rem;
		color: var(--accent);
	}

	.hero p {
		max-width: 600px;
		margin: 0.5rem auto 1.5rem;
	}

.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background: var(--accent);
	color: var(--light);
	text-decoration: none;
	border-radius: 2rem;
	font-weight: bold;
	transition: background .3s;
}

	.btn:hover {
		background: #005f8d;
	}

main {
	max-width: 1200px;
	margin: 2rem auto;
	padding: 0 1rem;
}

section {
	margin-bottom: 3rem;
}

h2 {
	font-size: 1.75rem;
	margin-bottom: 1rem;
	color: var(--primary);
}

ul {
	list-style: square;
	padding: 0;
}

	ul li {
		margin: 0.75rem 0;
		padding-left: 1.25rem;
		position: relative;
	}

		ul li:before {
/*			content: "";*/
			position: absolute;
			left: 0;
			color: var(--accent);
		}

.testimonial {
	background: var(--light);
	padding: 1.5rem;
	border-left: 4px solid var(--accent);
	margin: 1rem 0;
	font-style: italic;
}

footer {
	text-align: center;
	font-size: .9rem;
	padding: 1rem 1rem;
	color: #555;
	background: var(--light);
	border-top: 1px solid #ddd;
}


.image-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	max-width: 900px; /* Maximale Breite */
	margin: 0 auto; /* Zentriert horizontal */
	width: 100%; /* Nimmt bis zu 100% des Elternelements ein */
}

.image-row img {
	max-width: 100%;
	height: auto;
	flex: 1;
}

table {
	border-collapse: collapse;
	width: 100%;
	margin: 10px 0;
}

th, td {
	border: 1px solid #ccc;
	padding: 8px;
	text-align: center;
}

th {
	background-color: #f2f2f2;
}

ul {
	margin: 0.5em 0 1em 1.5em;
}

