/*footer*/

.footer {
    padding: 0px 0;
    color: #333;
    /*border-top: 1px solid #ddd;*/
}
.footer-container {
    display: flex;
    width: 100%;
    margin: 0 0;
    padding: 20px;
    background-color: #388a9c;
}

/* einstellungen für mobilansicht*/

@media (max-width:576px) {
    .footer-container {
        flex-direction: column;
        padding: 10px;
        }
}

.footer-info,
.footer-links,
.footer-social {
    padding: 20px;
    text-align: left;
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: shadow for visualization */
    flex-grow: 1;
}

.contact-item {
    display: flex;
    align-items: center;
}
.contact-item p{
    margin-left: 7px;
}
.footer-info h4,
.footer-links h4,
.footer-social h4 {
    margin-top: 0;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 24.5px;
}



.footer-info p {
    margin-top: 5px;
    margin-bottom: 5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin-top: 0px;
}

.footer-links li {
    padding-left: 0px;
}

.footer-links ul li {
    margin-top: 0px;
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: white;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-social a {
    display: block;
    margin-bottom: 10px;
    color: white;
    text-decoration: none;
}

.footer-social a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 5px 0;
    background-color: #e0e0e0;
    color: #666;
}

.impressum-link {
    color: #388a9c;
    margin-left: 15px;
}



