body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}
header {
    background: #007BFF;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 50px;
    margin-right: 1rem;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.hero {
    background: #f4f4f4;
    padding: 4rem 2rem;
    text-align: center;
}
.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
section {
    padding: 2rem;
}
.unternehmensdaten {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.unternehmensdaten p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 1rem;
}