/* Grundstil */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5;
    color: #333;
}

/* Header */
header {
    background: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header img {
    max-width: 150px;
    height: auto;
}

/* Hero-Bereich */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
}

.hero-logo {
    width: 300px;
    height: 250px;
    object-fit: contain;
    display: block;
    margin: 0 auto 30px auto;
}

.hero h1 {
    font-size: 2.4em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1em;
    max-width: 600px;
    margin: 10px auto 30px;
    line-height: 1.6;
}

/* Kontaktbox */
.contact-box {
    background: #fff;
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-box h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-box form {
    display: flex;
    flex-direction: column;
}

.contact-box input,
.contact-box textarea {
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact-box button {
    padding: 12px;
    background: #0078ff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s ease-in-out;
}

.contact-box button:hover {
    background: #005fcc;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #eee;
    margin-top: 60px;
    color: #666;
}
