* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Playfair Display', serif;
	color: #266A6A;
	background-color: #FFFFFF;
	line-height: 1.6;
}

h2 {
	text-align: center;
}

/* Header - Desktop */
.header-desktop {
	background-color: #E0F2F1;
	padding: 2rem 2rem 1.5rem;
	border-bottom: 2px solid #266A6A;
	position: relative;
}

.header-desktop .header-logo {
	position: absolute;
	top: 1rem;
	left: 2rem;
	width: 230px;
	height: auto;
}

.header-desktop .header-content {
	max-width: 1200px;
	margin: 0 auto;
}

.header-desktop .header-title {
	font-size: 3rem;
	font-weight: normal;
	color: #266A6A;
	margin-bottom: 0.5rem;
	text-align: center;
}

.header-desktop .header-subtitle {
	font-size: 1.3rem;
	color: #266A6A;
	font-weight: normal;
	text-align: center;
}

/* Header - Mobile (hidden by default) */
.header-mobile {
	display: none;
	background-color: #E0F2F1;
	padding: 1rem;
	padding-top: 1rem;
	border-bottom: 2px solid #266A6A;
	text-align: center;
	position: relative;
}

.header-mobile .mobile-logo {
	position: fixed;
	top: 10px;
	left: -10px;
	width: 150px;
	height: auto;
	z-index: 1000;
}

.header-mobile .nav-toggle {
	display: block;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	margin: 0 auto 1rem;
}

.header-mobile .nav-toggle span {
	display: block;
	width: 30px;
	height: 4px;
	background-color: #266A6A;
	margin: 5px auto;
	transition: all 0.3s;
}

.header-mobile .header-title {
	font-size: 1.8rem;
	font-weight: normal;
	color: #266A6A;
	margin-bottom: 0.3rem;
}

.header-mobile .header-subtitle {
	font-size: 1rem;
	color: #266A6A;
	font-weight: normal;
}

/* Navigation - Desktop */
.nav-desktop {
	background-color: #E0F2F1;
	padding: 1rem 2rem;
	border-bottom: 1px solid #266A6A;
}

.nav-desktop ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	justify-content: center;
}

/* Navigation - Mobile (hidden by default) */
.nav-mobile {
	display: none;
	background-color: #E0F2F1;
	border-bottom: 1px solid #266A6A;
}

.nav-mobile ul {
	list-style: none;
	display: none;
	flex-direction: column;
	text-align: center;
}

.nav-mobile ul.active {
	display: flex;
}

.nav-mobile ul li {
	border-bottom: 1px solid #266A6A;
}

.nav-mobile ul li:last-child {
	border-bottom: none;
}

.nav-mobile a {
	display: block;
	padding: 0.75rem;
}

nav a {
	color: #266A6A;
	text-decoration: none;
	font-size: 1.1rem;
	transition: color 0.3s;
}

nav a:hover {
	color: #FF8C00;
}

nav a.active {
	color: #FF8C00;
	font-weight: bold;
}

/* Main Content */
main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
}

.container {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 3rem;
}

.content-main {
	min-width: 0;
}

/* Page Title */
.page-title {
	font-size: 2.5rem;
	color: #266A6A;
	margin-bottom: 2rem;
	font-weight: normal;
	text-align: center;
}

.main-heading {
	font-size: 2.5rem;
	color: #266A6A;
	margin: 2rem 0;
	font-weight: normal;
	text-align: center;
}

/* News Announcement (Index page) */
.news-announcement {
	background-color: #FFFFFF;
	padding: 1.5rem;
	margin-bottom: 2rem;
	border-left: 4px solid #FF8C00;
}

.news-announcement p {
	font-size: 1.1rem;
	font-weight: bold;
	color: #000000;
	margin-bottom: 1rem;
}

.news-announcement .highlight {
	color: #FF8C00;
	font-weight: bold;
}

.news-button {
	display: inline-block;
	padding: 0.8rem 2rem;
	background-color: #E0F2F1;
	border: 2px solid #266A6A;
	border-radius: 5px;
	color: #FF8C00;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.1rem;
	transition: all 0.3s;
}

.news-button:hover {
	background-color: #266A6A;
	color: #FFFFFF;
}

/* Content Section */
.content-section {
	margin: 2rem 0;
}

.content-section p {
	font-size: 1.1rem;
	color: #266A6A;
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.profile-image {
	width: 100%;
	max-width: 300px;
	margin: 2rem auto;
	border-radius: 5px;
	display: block;
}

/* Service Items (Leistungen page) */
.service-item {
	background-color: #F5F5F5;
	padding: 1.5rem;
	margin-bottom: 2rem;
	border-radius: 5px;
	border-left: 4px solid #FF8C00;
}

.service-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 0.5rem;
	flex-wrap: wrap;
}

.service-name {
	font-size: 1.5rem;
	color: #266A6A;
	font-weight: normal;
	margin: 0;
}

.service-price {
	font-size: 1.3rem;
	color: #FF8C00;
	font-weight: bold;
}

.service-duration {
	font-size: 1rem;
	color: #266A6A;
	font-style: italic;
	margin-bottom: 1rem;
}

.service-description {
	font-size: 1.1rem;
	color: #266A6A;
	line-height: 1.8;
}

/* Contact Section (Kontakt page) */
.contact-section {
	background-color: #F5F5F5;
	padding: 2rem;
	border-radius: 5px;
	border-left: 4px solid #FF8C00;
	max-width: 800px;
	margin: 0 auto;
}

.contact-section p {
	font-size: 1.2rem;
	color: #266A6A;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.contact-section p:last-child {
	margin-bottom: 0;
}

.phone-number {
	font-size: 1.4rem;
	color: #FF8C00;
	font-weight: bold;
}

/* Certificate Grid (Diplome page) */
.certificate-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 2rem;
}

.certificate-item {
	background-color: #F5F5F5;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	transition: transform 0.3s, box-shadow 0.3s;
}

.certificate-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.certificate-item img {
	width: 100%;
	height: auto;
	display: block;
}

/* Sidebar */
aside {
	background-color: #F5F5F5;
	padding: 1.5rem;
	border-radius: 5px;
}

.sidebar-section {
	margin-bottom: 2rem;
}

.sidebar-section h3 {
	color: #266A6A;
	font-size: 1.2rem;
	margin-bottom: 1rem;
	font-weight: normal;
}

.sidebar-section ul {
	list-style: none;
}

.sidebar-section a {
	color: #266A6A;
	text-decoration: none;
	display: block;
	padding: 0.5rem 0;
	border-bottom: 1px solid #E0E0E0;
	transition: color 0.3s;
}

.sidebar-section a:hover {
	color: #FF8C00;
}

/* Footer */
footer {
	background-color: #E0F2F1;
	padding: 2rem;
	margin-top: 3rem;
	border-top: 2px solid #266A6A;
	text-align: center;
	font-size: 0.9rem;
	color: #266A6A;
}

footer p {
	margin: 0.5rem 0;
}

footer a {
	color: #266A6A;
	text-decoration: none;
}

footer a:hover {
	color: #FF8C00;
}

footer strong {
	display: block;
	margin-bottom: 0.5rem;
}

.email-unselectable {
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
	.header-desktop {
		display: none;
	}

	.nav-desktop {
		display: none;
	}

	.header-mobile {
		display: block;
	}

	.nav-mobile {
		display: block;
	}

	.container {
		grid-template-columns: 1fr;
	}

	.page-title {
		font-size: 1.8rem;
	}

	.main-heading {
		font-size: 1.8rem;
	}

	.service-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.service-price {
		margin-top: 0.5rem;
	}

	.service-name {
		font-size: 1.3rem;
	}

	.contact-section {
		padding: 1.5rem;
	}

	.contact-section p {
		font-size: 1.1rem;
	}

	.phone-number {
		font-size: 1.2rem;
	}

	.certificate-grid {
		grid-template-columns: 1fr;
	}
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #E0F2F1;
	border-top: 2px solid #266A6A;
	padding: 1.5rem 2rem;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
	z-index: 1000;
	display: none;
}

.cookie-banner.show {
	display: block;
}

.cookie-banner-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.cookie-banner-text {
	flex: 1;
	min-width: 250px;
	font-size: 1rem;
	color: #266A6A;
	line-height: 1.6;
}

.cookie-banner-text a {
	color: #FF8C00;
	text-decoration: underline;
}

.cookie-banner-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.cookie-banner-button {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s;
	font-family: 'Playfair Display', serif;
}

.cookie-banner-button.accept {
	background-color: #266A6A;
	color: #FFFFFF;
}

.cookie-banner-button.accept:hover {
	background-color: #1a4d4d;
}

.cookie-banner-button.decline {
	background-color: #FFFFFF;
	color: #266A6A;
	border: 2px solid #266A6A;
}

.cookie-banner-button.decline:hover {
	background-color: #F5F5F5;
}

@media (max-width: 768px) {
	.cookie-banner {
		padding: 1rem;
	}

	.cookie-banner-content {
		flex-direction: column;
		align-items: stretch;
	}

	.cookie-banner-buttons {
		width: 100%;
	}

	.cookie-banner-button {
		flex: 1;
	}
}

