body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

.impressum-container {
    max-width: 560px;
    margin: 50px auto; /* Zentriert die Box horizontal und sorgt für Abstand oben */
    padding: 20px 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #c5a100;
}

.impressum-container h1 {
    font-size: 1.8em;
    color: #4CAF50; /* Grün für den Haupttitel */
    text-align: center;
    margin-bottom: 20px;
}

.impressum-container h2 {
    font-size: 1.5em;
    color: #333; /* Dunkler Text für die Untertitel */
    margin-bottom: 15px;
}

.impressum-container p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.impressum-container strong {
    color: #006400; /* Dunkelgrün für Hervorhebungen */
}

.impressum-container ul {
    margin: 10px 0 15px 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.impressum-container ol {
    margin: 15px 0;
    padding-left: 20px;
    list-style-type: decimal;
}

.impressum-container a {
    color: #004b23;
    text-decoration: none;
    font-weight: bold;
}

.impressum-container a:hover {
    color: #DAA520; /* Goldfarbe beim Hover */
    text-decoration: underline;
}

.impressum-back-container {
    text-align: center; /* Zentriert den Button */
    margin-top: 20px; /* Abstand vom Impressum-Inhalt */
}

.impressum-back-button {
    display: inline-block;
    background: linear-gradient(to bottom, #006400, #004b23); /* Grüner Verlauf */
    color: #F0EDE4; /* Heller Text */
    border: 2px solid #c5a100; /* Goldener Rand */
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 1.1em;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Schatteneffekt */
    margin-bottom: 50px;
}

.impressum-back-button:hover {
    transform: scale(1.1); /* Leichtes Vergrößern beim Hover */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3); /* Stärkerer Schatten */
}

.impressum-back-button:active {
    transform: scale(0.95); /* Leichtes Schrumpfen beim Klicken */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3); /* Reduzierter Schatten */
}
