/* Wird der Container für die Layout-Konsistenz */
        /* SPEZIFISCH FÜR IMPRESSUM: Begrenzt die Breite des Textes */
        /* ==================================== */
        /* 2. IMPRESSUM SPEZIFISCHE STILE */
        /* ==================================== */

        /* SPEZIFISCH FÜR IMPRESSUM */
        .impressum-card {
            background-color: var(--color-white);
            padding: 2rem;
            border-radius: 1rem; 
            box-shadow: var(--shadow-lg);
            border: 1px solid #e5e7eb;
        }

        /* SPEZIFISCH FÜR IMPRESSUM */
        .impressum-card h1 {
            font-size: 2.25rem; /* text-4xl */
            font-weight: 800;
            color: var(--bg-menu);
            margin-top: 0;
            margin-bottom: 0.5rem;
        }
        
        /* SPEZIFISCH FÜR IMPRESSUM */
        .impressum-card h3 {
            font-size: 1.25rem; /* text-xl */
            font-weight: 700;
            color: var(--color-accent);
            margin-top: 2rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #f9fafb; /* leichte Trennlinie */
            padding-bottom: 0.5rem;
        }

        /* SPEZIFISCH FÜR IMPRESSUM */
        .impressum-card p, 
        .impressum-card ul {
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        /* SPEZIFISCH FÜR IMPRESSUM: Adressblöcke */
        .address-block {
            padding-left: 1rem;
            border-left: 3px solid var(--color-accent);
            margin-bottom: 2rem;
        }
        
        .address-block p {
            margin: 0.5rem 0;
        }
        
        /* SPEZIFISCH FÜR IMPRESSUM: Links in Disclaimer */
        .impressum-card a {
            color: var(--color-accent);
            text-decoration: none;
            font-weight: 500;
        }
        .impressum-card a:hover {
            text-decoration: underline;
        }