/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}
header {
    background: #fff;
    border-bottom: 3px solid #004080;
    padding: 1rem;
    text-align: center;
    position: relative; /* Damit wir das Bild absolut positionieren können */
}
header img {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
    position: absolute; /* Absolute Positionierung */
    top: 50%; /* Position mittig vertikal */
    right: 10px; /* Position rechts */
    transform: translateY(-50%); /* Vertikale Zentrierung */
}
header h1 {
    margin: 0;
    font-size: 2rem;
    color: #004080;
}
header p {
    margin: 0;
    font-size: 1rem;
    color: #0066cc;
}
main {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative; /* Damit wir das Bild absolut positionieren können */
}
main h2 {
    color: #004080;
    margin-bottom: 0.5rem;
}
main p {
    margin-bottom: 1.5rem;
}
main img {
    max-width: 12.5%; /* 1/8 der ursprünglichen Größe */
    height: auto;
    margin: 1rem 0;
}
main .small-image {
    max-width: 200px; /* Begrenze die maximale Breite der kleinen Bilder */
    height: auto;
    margin: 1rem auto;
    display: block;
}
main .welcome-image {
    max-width: 200px; /* Begrenze die maximale Breite des Willkommensbildes */
    height: auto;
    position: absolute; /* Absolute Positionierung */
    top: 50%; /* Position mittig vertikal */
    right: -120px; /* Position rechts neben dem Kontaktformular */
    transform: translateY(-50%); /* Vertikale Zentrierung */
}
main a {
    color: #004080;
    text-decoration: none;
}
main a:hover {
    text-decoration: underline;
}
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin: 1rem 0;
    background-color: #004080;
    color: #fff;
    text-decoration: none; /* Korrektur der text-decoration-Eigenschaft */
    border-radius: 4px;
    font-weight: bold;
}
.button:hover {
    background-color: #0066cc;
}
footer {
    text-align: center;
    padding: 1rem;
    background: #f9f9f9;
    border-top: 3px solid #004080;
    font-size: 0.9rem;
    color: #004080;
}
form {
    background: #fff;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 1.5rem;
    position: relative; /* Stelle sicher, dass das Formular relativ positioniert ist */
}
form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #004080;
}
form input, form textarea, form button {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
form button {
    background: #004080;
    color: #fff;
    border: none;
    cursor: pointer;
}
form button:hover {
    background: #0066cc;
}
