/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
body {
    font-family: "Century Gothic", Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #222;
    line-height: 1.6;
    font-weight: 400;
}

/* Layout */
.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* Logo */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.logo {
    width: 33%;
    max-width: 280px;
}

/* Content */
.content h1 {
    font-size: 28px;
    font-weight: 500; /* wichtig: nicht zu fett */
    margin-bottom: 22px;
    text-align: center;
}

.content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #333;
}

.address {
    margin-top: 30px;
    font-size: 14px;
    color: #555;
}

/* Mobile */
@media (max-width: 600px) {
    .logo {
        width: 60%;
    }

    .content h1 {
        font-size: 22px;
    }

    .content p {
        font-size: 15px;
    }

    .container {
        padding: 30px 15px;
    }
}