    .site-footer {
        background: #292524;
        padding: 10px 20px;
        box-sizing: border-box;
    }

    .footer-inner {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-row {
        display: flex;
        align-items: center;     
        justify-content: center; 
        gap: 14px;
        width: 100%;
    }

    .footer-copy {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: rgba(255,255,255,0.92);
        font-size: 14px;
        letter-spacing: 0.6px;
    }

    .footer-copy .copyright {
        display: inline-block;
        transform: translateY(-1px);
        line-height: 1;
        color: rgba(255,255,255,0.7);
        font-size: 14px;
    }

    .footer-copy .company {
        display: inline-block;
    }

    .footer-sep {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,0.55);
        display: inline-block;
        transform: translateY(-1px);
    }

    .footer-link {
        color: rgba(255,255,255,0.92);
        text-decoration: none;
        font-size: 14px;
        font-family: Arial;
    }

    .impressum-und-datenschutzerklärung-link {
        color: rgba(255,255,255,0.92);
        text-decoration: none;
        font-size: 14px;
        font-family: Arial;
    }

    .footer-link:hover,
    .footer-link:focus {
        text-decoration: underline;
        outline: none;
    }

    .impressum-und-datenschutzerklärung-link:hover,
    .impressum-und-datenschutzerklärung-link:focus {
        text-decoration: underline;
        outline: none;
    }

    header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    }

    header {
    transition: padding 0.3s ease, box-shadow 0.3s ease;
    }

    header.scrolled {
    padding-top: 8px;
    padding-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }

    @media (max-width: 480px) {
        .footer-row { gap: 10px; padding: 0 6px; }
        .footer-copy, .footer-link { font-size: 13px; }
        .footer-sep { width: 7px; height: 7px; }
        .footer-copy .copyright { transform: translateY(-0.5px); }
    }