	@font-face {
		font-display: swap;
		font-family: 'Open Sans';
		font-style: normal;
		font-weight: 300;
		src: url('../typo/open-sans-v40-latin-300.woff2') format('woff2');
	}
	@font-face {
		font-display: swap;
		font-family: 'Open Sans';
		font-style: normal;
		font-weight: 400;
		src: url('../typo/open-sans-v40-latin-regular.woff2') format('woff2');
	}
	@font-face {
		font-display: swap;
		font-family: 'Open Sans';
		font-style: normal;
		font-weight: 700;
		src: url('../typo/open-sans-v40-latin-700.woff2') format('woff2');
	}
	/* Reset defaults */
	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		font-family: 'Open Sans', Arial, sans-serif;
	}
	body {
		font-weight: 300;
		line-height: 1.6;
		background-color: rgb(245, 245, 245, 1);
		color: #1B1B1B;
		letter-spacing: 0.025rem;
	}
	/* Hero section */
	.hero {
		background: url('assets/dr-horn-boeblingen-kieferorthopaedie-milchzaehne.jpg') no-repeat center center/cover;
		height: 64vh;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		color: #fff;
	}
	.hero h1 {
		font-weight: 300;
		font-size: 3rem;
		line-height: 3.3rem;
		margin-top: 2rem;
		margin-bottom: 0.7rem;
	}
	.hero p {
		font-size: 1.2rem;
		margin-bottom: 3rem;
	}
	.cta-button {
		background-color: rgb(62, 196, 146, 1);
		color: #fff;
		padding: 0.9rem 1.8rem;
		text-decoration: none;
		font-size: 1.1rem;
		font-weight: 400;
		text-transform: uppercase;
		letter-spacing: 0.05rem;
		border-radius: 0px;
		transition: background-color 0.3s;
	}
	.cta-button:hover {
		background-color: rgb(31, 78, 157, 1);
	}
	/* Section styles */
	.container {
		width: 90%;
		max-width: 1100px;
		margin: 0 auto;
		padding: 2rem 0;
	}
	.intro {
		border-top: 4px solid rgb(62, 196, 146, 1),
	}
	.services, .leistungen, .testimonials, .contact-info {
		background-color: #fff;
		margin: 2rem 0;
		padding: 2rem;
		border-radius: 0px;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.01);
	}
	h2 {
		font-weight: 300;
		font-size: 2rem;
		line-height: 2.3rem;
		margin-bottom: 1rem;
	}
	p {
		font-size: 1.1rem;
	}
	.leistung h3 {
		font-weight: 300;
		font-size: 1.7rem;
		line-height: 1.9rem;
		margin-top: 1rem;
		margin-bottom: 1rem;
	}
	ul li {
		margin: 3px 3px 3px 20px;
		font-size: 1.1rem;
	}
	.leistungen-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 2rem;
		margin-bottom: 2rem;
	}
	.leistung {
		background-color: rgb(245, 245, 245, 1);
		padding: 0rem;
		border-radius: 0px;
		text-align: center;
		flex: 1;
	}
	.leistung img {
		width: 100%;
		height: auto;
		border-radius: 0px;
	}
	.leistung p {
		padding: 0rem 1rem 1.3rem 1rem;
	}
	.testimonials img {
		max-width: 300px;
	}
	.testimonials blockquote {
		font-style: normal;
		font-size: 1.1rem;
		margin-bottom: 1rem;
	}
	.testimonials cite {
		display: block;
		font-size: 1rem;
		margin-top: 0.5rem;
		padding-right: 70px;
		margin-bottom: 1.5rem;
	}
	.contact-info p {
		margin: 1rem 0;
	}
	.phone-number a {
		font-size: 1.5rem;
		font-weight: 300;
		color: #000;
		text-decoration: none;
	}
	.phone-number a:hover {
		text-decoration: underline;
	}
	/* Footer styles */
	footer {
		background-color: rgb(245, 245, 245, 1);
		color: #000;
		font-size: 0.75rem;
		text-align: center;
		font-weight: 300;
		padding: 1rem 0;
	}
	footer a, a {
		color: rgb(62, 196, 146, 1);
		text-decoration: none;
	}
	.img-l {
		max-width: 300px;
		height: auto;
		float: left;
		padding-right: 30px;
		margin: 0px 0 40px 0;
	}
	.img-r {
		float: right;
		max-width: 300px;
		height: auto;
		margin-bottom: 2rem;
		margin-top: -0.4rem;
	}
	/* Mobiles */
	@media (max-width: 768px) {
		.hero {
			height: 90vh;
		}
		.hero h1 {
			font-size: 1.8rem;
			line-height: 2rem;
		}
		h2 {
			font-size: 1.5rem;
			line-height: 1.8rem;
		}
		.leistung h3 {
			font-size: 1.4rem;
			line-height: 1.6rem;
		}
		.hero p, .cta-button {
			font-size: 1rem;
			margnín-bottom: 20px;
		}
		.img-l {
			max-width: 300px;
			height: auto;
			float: none;
			display: block;
			padding-right: 0px;
			margin: 0px 0 40px 0;
		}
		.img-r {
			float: none;
			display: block;
			max-width: 300px;
			height: auto;
			margin-bottom: 2rem;
			margin-top: 1.4rem;
		}
	}