body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e6f4f5; /* Baby Blau */
    color: #333;
}

html {
    scroll-behavior: smooth;
}

footer {
    background-color: #66aeb2;
    color: #ffffff;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer {
    width: 100%;
    padding: 0px 0%;
    background: #66aeb2;
    color: #fff;
    display: flex;
    flex-wrap: wrap; /* Anpassung für mobile Geräte */
    justify-content: center;
    align-items: center;
    
}

.footer div {
    text-align: center;
    flex: 1;
    padding: 10px;
    min-width: 250px; 
}

.footer div h3 {
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1.6px;
    font-size: 30px;
}

.col-1 a {
    display: block; 
    text-decoration: none;
    color: #fff;
    margin-bottom: 7px;
    font-size: 20px;
}

.col-1 {
    /* margin-top: -50px; */
    display: flexbox;
    flex-direction: column; 
    justify-content: center;
    align-items: center; 
}

.brand {
    text-align: center;
    background-color: #66aeb2;
    padding-top: 10px; /**/
}

.brand h1 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.legals {
    width: 100%;
    text-align: center;
    color: #66aeb2;
    position: relative;
    background-color: #66aeb2;
    text-decoration: none;
    padding-bottom: 7px;
}

.legaltext {
    text-decoration: none;
    display: flex; /* Flexbox aktivieren */
    justify-content: center; /* Elemente zentrieren */
    align-items: center; /* Vertikale Ausrichtung */
    flex-direction: row; 
}

.legaltext h1, .legaltext a {
    font-size: 12px;
    text-decoration: none;
    color: #fff;
}

.legaltext p {
    color: #fff;
    font-size: 16px;
}

@media (max-width: 1000px) {
    .footer {
        margin-top: 40px;
        flex-direction: column; 
        width: 100%;
    }

    .footer div {
        margin-bottom: 20px;
        text-align: center;
    }
}