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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: #2a7f8f;
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header h1 {
    font-size: 2em;
    flex-grow: 1;
    text-align: center;
}

header .logo {
    width: 300px;
    height: auto;
    margin-right: 20px;
	text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f4a261;
}

/* Startseite Section */
section.home-section {
    background-color: #e9f7f7;
    padding: 40px 0;
    text-align: center;
}

section.home-section h2 {
    font-size: 2em;
    color: #333;
}

/* Leistungen Section */
section#leistungen {
    padding: 40px 0;
    background-color: white;
    text-align: center;
}

section#leistungen h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

section#leistungen ul {
    list-style: none;
    padding-left: 0;
    font-size: 1.2em;
    margin-top: 20px;
}

section#leistungen ul li {
    margin: 10px 0;
    transition: transform 0.3s ease;
}

section#leistungen ul li:hover {
    transform: scale(1.05);
    color: #2a7f8f;
}

/* Über mich Section */
section.about-section {
    background-color: #f9f9f9;
    padding: 40px 0;
}

section.about-section p {
    font-size: 1.1em;
    line-height: 1.6;
}

/* Kontakt Section */
section.contact-section {
    background-color: #e9f7f7;
    padding: 40px 0;
    text-align: center;
}

section.contact-section p {
    font-size: 1.1em;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #2a7f8f;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 0.9em;
}

/* Buttons */
button {
    background-color: #2a7f8f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #f4a261;
}