.footer {
    background-color: #1a1a1a;
    padding: 40px 20px;
}

.footerIntro {
    text-align: center;
    color: orange;
    margin-bottom: 20px;
    font-size: 14px;
}


.footerContainer {
    display: flex;              /* ← das fehlte */
    flex-direction: row;
    justify-content: space-between;
    /* align-items: flex-start; */
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footerLogo img {
    width: 100px;
}

.footerContent {
    text-align: right;          /* ← Adresse rechtsbündig */
    color: orange;
}

.footerContent p {
    margin: 5px 0;
    font-size: 14px;
}

.footerSocialMedia {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footerSocialMedia a {
    color: orange;
    text-decoration: none;
    font-size: 14px;
}

.footerSocialMedia a:hover {
    text-decoration: underline;
}
