/* Grundlayout */
footer {
    background-color: #2F4992;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-family: sans-serif;
    font-size: 15px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.company, .services-hw, .services-vw {
    flex: 1;
    margin: 10px;
}

/* Responsive Anpassungen */
@media (max-width: 992px) {
    footer {
        font-size: 14px;
    }

    .info {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    footer {
        font-size: 13px;
    }

    .info {
        flex-direction: column;
        text-align: center;
    }

    .company, .services-hw, .services-vw {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    footer {
        font-size: 12px;
    }

    .container {
        padding: 0 10px;
    }

    .info {
        gap: 10px;
    }
}
