footer {
    font-size: 18px;
    background-color: #add4d0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    border-top: 1px solid rgba(85, 98, 97, 0.3);
    box-sizing: border-box;
}

/* FOOTER CONTAINER */
.footer-container {
    max-width: 100%;
    margin: 0 auto;

}

/* FOOTER INHALT IN 3 SPALTEN */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Flexible Spalten */
    gap: 5px; /* Mehr Abstand für bessere Lesbarkeit */
}

/* JEDE BOX IM FOOTER */
.footer-box {
    text-align: left;
}

.footer-box h3 {
    font-size: 20px;
    color: #2B3534;
    margin-bottom: 1px;
	padding: 0px 10px 0px 10px;
}

.footer-box p, 
.footer-box a {
    font-size: 18px;
    color: #5C7F7B;
    text-decoration: none;
	padding: 0px 10px 0px 10px;
}

.footer-box a:hover {
    color: #2B3534;
    transform: scale(1.1);
}

/* SOCIAL MEDIA ICONS */
.social-icons {
    margin-top: 10px;
}

.social-icon {
    font-size: 32px;
    margin-right: 10px;
    color: #5C7F7B;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.social-icon:hover {
    color: #2B3534;
}

/* FOOTER WIDGET */
.footer-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.footer-widget iframe {
    width: 250px;
    height: 150px;
}

/* FEINE TRENNLINIE */
.footer-divider {
    border: none;
    height: 1px;
    background: rgba(85, 98, 97, 0.2);

}

/* COPYRIGHT UND LINKS */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

.footer-copyright {
    color: #556261;
    font-size: 18px;
}

.footer-nav a {
    color: #5C7F7B;
    text-decoration: none;
    font-size: 18px;
}

.footer-nav a:hover {
    color: #2B3534;
    text-decoration: underline;
}

/* Einheitliche Social Media Icons */
.footer-icons img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    transition: transform 0.2s ease-in-out;
}

.footer-icons img:hover {
    transform: scale(1.1);
}