/* Basis-Stile für die Seite */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;  /* Helles, sanftes Grau */
    color: #333;
    line-height: 1.6;
}

/* Stile für Bilder */
img {
    max-width: 100%; /* Verhindert, dass Bilder über den Container hinausgehen */
    height: auto; /* Beibehaltung des Seitenverhältnisses */
    display: block; /* Entfernt eventuelle Inline-Spacing */
    margin: 0 auto; /* Zentriert block-Bilder */
    border-radius: 8px; /* Abgerundete Ecken für einen modernen Look */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Leichter Schatten für Bilder */
}

/* Header-Stile */
header {
    background-color: rgb(174, 16, 34);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  /* Sanfte Schatten für den Header */
}

header .logo h1 {
    font-size: 28px;
    font-weight: 600;
    color: #fff; /* Kontrastreich für bessere Lesbarkeit */
    margin: 0;
}

header img {
    max-height: 60px; /* Begrenzte Höhe für Header-Bilder */
    margin-right: 10px; /* Abstand bei Bilder und Text im Header */
}

nav ul {
    list-style-type: none;
    display: flex;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-right: 30px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #0071e3;  /* Apple Blau für Hover-Effekt */
}

/* Hauptinhalt */
.content {
    padding: 60px 40px;
    background-color: white;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 12px;  /* Abgerundete Ecken für den Inhalt */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);  /* Sanfte Box-Schatten */
}

.content h2 {
    color: #333;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content img {
    margin-bottom: 20px; /* Abstand unter Bildern im Content-Bereich */
    max-width: 100%;
    border-radius: 12px; /* Einheitliche Abrundung wie im Content-Bereich */
}

.content form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.content form label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    color: #333;
}

.content form input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.content form input[type="file"]:hover {
    border-color: #0071e3;
}

.content form input[type="submit"] {
    background-color: #0071e3;  /* Apple Blau für den Button */
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.content form input[type="submit"]:hover {
    background-color: #005bb5;  /* Dunkleres Blau für Hover-Effekt */
}

/* Footer-Stile */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    font-size: 14px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        margin-top: 20px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .content {
        padding: 40px 20px;
    }

    .content h2 {
        font-size: 30px;
    }

    .content form {
        padding: 20px;
    }
}
