/* Grundlegende Reset-Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Header-Stile */
header {
    background-color: #003366;
    color: white;
    padding: 20px;
    text-align: center;
}

header .logo img {
    width: 100px;
}

/* Navigationsmenü */
nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

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

/* Hero-Sektion */
.hero {
    background-color: #0055a5;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5em;
}

.hero .cta-button {
    background-color: #ffcc00;
    color: #003366;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.hero .cta-button:hover {
    background-color: #e6b800;
}

/* Produkt-Sektion */
.produkte {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    background-color: white;
}

.produkte .produkt-item {
    text-align: center;
    width: 30%;
}

.produkte .produkt-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.produkte .produkt-item h3 {
    margin: 10px 0;
    font-size: 1.2em;
}

/* Footer-Stile */
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}