
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #007acc;
    color: white;
}

.hero-left img { width: 50%; }
.hero-center img { width: 40%; display: block; margin: 0 auto; }

.welcome {
    text-align: center;
    padding: 30px;
}

.headline {
    color: #007acc;
    font-size: 32px;
    margin: 0;
}

.produkte {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px;
}

.bon-images {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bon-images img:first-child {
    width: 450px; /* bon1 50% größer */
    margin-bottom: 20px;
}

.bon-images img:last-child {
    width: 300px;
}

.bulletpoints {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px; /* näher an die Bilder */
}

.bulletpoints ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 18px;
    margin: 0;
}

.details {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
}

.details img {
    width: 600px;
}

.ersatzteile {
    padding: 50px;
   
}

.subheadline {
    color: #007acc;
    margin-bottom: 20px;
    font-size: 24px;
}

.ersatz-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    justify-content: center;
}

.ersatz-row img {
    width: 300px;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 20px;
    background-color: #007acc;
    color: white;
    position: relative;
}

.footer-right img {
    width: 40%;
}

.footer-links {
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 14px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin-left: 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}
