/* Footer Styling */

footer {
    position: relative;
    bottom: auto;
    margin-top: 0px; /* Abstand zum Grid-Inhalt */
    width: 100%;
    min-height: 330px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: 1px solid black;
	padding-bottom: 35px
}

footer li,
footer li a {
    cursor: cell;
}

.footer-logo {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
	flex-shrink: 0;
}


    .footer-logo img {
        height: 100%;
    }

    ul {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }

    li {
        border-bottom: 1px solid black;
        width: 100%;
    }

li:first-child {
    border-top: 1px solid black;
}


    .footer-button {
        display: block;
        text-decoration: none;
        color: black;
        background-color: white;
        padding: 10px 20px;
        width: 100%;
        box-sizing: border-box;
        text-align: left;
        transition: background-color 0.3s ease;
        font-family: Arial, sans-serif;
        font-weight: normal;
    }

    .footer-button:hover {
        background-color: white;
		color: black;
    }

    .copyright {
        width: 100%;
        text-align: center;
        color: black;
        font-family: Arial, sans-serif;
        font-size: 10px;
        margin-top: 5px;
		margin-bottom: 10px;
		padding: 10px 20px;
		box-sizing: border-box;
		overflow-x: hidden;
        background-color: #FFFFFF;
    }


/* Media Query für mobile Geräte */
@media (max-width: 768px) {

	
	.footer-logo img {
		width: 350px;
}
	
	
    footer {

        min-height: 330px;
    }