body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8f9fa;
    line-height: 1.6;
}

header {
    background-color: #143143;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 1rem;
}

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

header nav ul li a:hover {
    color: #ffdd57;
}

#hero {
    background: url('2only.webp') no-repeat center center/cover;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

#hero .hero-text {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 8px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #143143;
    margin: 0.5rem auto;
    border-radius: 2px;
}

#about, #services, #contact, #impressum, #datenschutz {
    padding: 3rem 2rem;
    text-align: center;
    background-color: white;
    margin: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#services .service {
    margin: 2rem 0;
}

#services ul {
    list-style: none;
    padding-left: 0;
}

.contact-info p {
    max-width: 600px;
    margin: 0 auto;
}

footer {
    background-color: #143143;
    padding: 1rem;
    text-align: center;
    color: white;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

footer ul li {
    margin: 0 1rem;
}

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

footer ul li a:hover {
    color: #ffdd57;
}

footer p {
    margin-top: 1rem;
    font-size: 0.9rem;
}
