* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #536a7d;
    color: #fff;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #384859;
}

.logo img {
    height: 90px;
    margin-right: 10px;
}

.logo h2 {
    font-size: 1.5rem;
}

.btn {
    background-color: #28aade;
    color: #212121;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #4999c8;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    text-align: center;
}

    .left {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f0f0f0;
        color: #212121;
    }

    .right {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #dcdcdc;
        color: #212121;
    }

.intro {
    margin-bottom: 50px;
}

.intro h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.image-container img {
    max-width: 100%;
    border-radius: 10px;
}

.impressum {
    margin: auto;
    padding: 20px;
    background-color: #fff;
    color: black;
    width: 50%;
    border-radius: 10px;
    text-align: left;
}

.impressum h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.impressum p {
    font-size: 1rem;
    margin-bottom: 5px;
}