body {
	background-color: #1A2A3A;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	font-family: 'Roboto', sans-serif; 
	line-height: 1.6; 
	color: #EDEDED; /* Hellere Textfarbe für dunklen Hintergrund */
	font-size: 16px; 
}


/* Überschriften */
h1, h2, h3, h4, h5, h6 {
	color: #F5F5F5; /* Dunklere Farbe für Überschriften */
	margin-top: 0;
}

h1 {
	font-size: 2.5em; /* Größe für die Hauptüberschrift */
	font-weight: 700; /* Fettdruck */
}

h2 {
	font-size: 2em;
	font-weight: 600;
}

h3 {
	font-size: 1.75em;
	font-weight: 500;
}

h4 {
	font-size: 1.5em;
	font-weight: 500;
}

h5 {
	font-size: 1.25em;
	font-weight: 500;
}

h6 {
	font-size: 1em;
	font-weight: 400;
}

/* Links */
a {
	color: #59A5D8; /* Blauton für Links */
	text-decoration: none; /* Keine Unterstreichung */
	transition: color 0.3s; /* Übergangseffekt beim Überfahren mit der Maus */
}

a:hover {
	color: #317BA1; /* Dunklerer Blauton beim Überfahren mit der Maus */
}

/* Absätze */
p {
	margin: 0 0 1em; /* Abstand unter den Absätzen */
}


header {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	background-color: #0B1A2A;
}

.logo img {
	width: 200px;
}

nav {
	display: flex;
	gap: 50px;
	margin-top: 20px;
}

nav a {
	text-decoration: none;
	color: white;
	padding: 10px 20px;
	border: 1px solid white;
	border-radius: 5px;
	transition: background-color 0.3s;
}

nav a:hover {
	background-color: #2A3A4A;
}

.center-content {
	text-align: center;
	margin: 50px 0;
	flex: 1;
}

.center-content p {
	font-size: 18px;
}

.chat-button {
	background-color: #007BFF; /* Blauton */
	color: #FFFFFF; /* Weiß */
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	font-size: 18px;
	cursor: pointer;
	transition: background-color 0.3s;
	display: inline-flex; /* Damit das Icon und der Text zentriert sind */
	align-items: center; /* Vertikale Zentrierung des Textes und des Icons */
}

.chat-button {
	padding: 20px 40px; /* Erhöht das Padding noch weiter */
	background-color: #007BFF;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 22px; /* Größere Schriftart für den Button */
	transition: background-color 0.3s;
}

.chat-button:hover {
	background-color: #0056b3;
}


.footer-links {
	margin-top: 10px;
}

.footer-links a {
	text-decoration: none;
	color: white;
	margin: 0 10px;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: #4A5A6A;
}

/* Für größere Bildschirme */
@media (min-width: 768px) {
	header {
		flex-direction: row;
		justify-content: space-between;
		padding: 20px 50px;
	}
	
	nav {
		margin-top: 0;
	}
}
header, footer {
	margin-bottom: 20px;
}

/* Icons für Navigationslinks */
nav a::before {
	content: '\f105'; /* FontAwesome Pfeil nach rechts */
	font-family: 'Font Awesome 5 Free';
	font-weight: 900; 
	margin-right: 8px;
}

/* Abschnittsdesign */
.section {
	background-color: #0B1A2A; /* Dunklerer Hintergrund für Abschnitte */
	padding: 20px;
	border-radius: 5px;
	margin: 20px 0; /* Vertikaler Abstand zwischen den Abschnitten */
}

.section h2, .section h3 {
	border-bottom: 2px solid #2A3A4A; /* Unterstreichung für Überschriften */
	padding-bottom: 10px;
	margin-bottom: 20px;
}

/* Absatz innerhalb von Abschnitten */
.section p {
	margin-bottom: 20px;
}

/* Zusätzlicher Abstand für den Chat-Button */
.chat-button {
	margin-bottom: 20px;
}