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

html, body {
    width: 100%;
    min-height: 100vh;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container, .impressum-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 50px 40px;
    max-width: 700px;
    width: 100%;
}

/* Für lange Seiten scrollbar machen */
.impressum-container {
    max-height: 90vh;
    overflow-y: auto;
}

.container {
    text-align: center;
}

.logo img {
    max-width: 280px;
    height: auto;
    margin-bottom: 40px;
}

h1 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact p {
    margin: 15px 0;
    font-size: 1em;
}

.contact a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

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

.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.footer a {
    color: #999;
    text-decoration: none;
    font-size: 0.9em;
}

.footer a:hover {
    color: #667eea;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    padding: 10px 20px;
    color: #667eea;
    text-decoration: none;
    font-size: 0.95em;
    border: 2px solid #667eea;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: #667eea;
    color: white;
}

.impressum-container h1 {
    color: #667eea;
    margin-bottom: 30px;
    font-size: 2em;
    text-align: left;
}

.impressum-container h2 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.2em;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    text-align: left;
}

.impressum-container p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
    text-align: left;
}

.impressum-container a {
    color: #667eea;
    text-decoration: none;
}

.impressum-container a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container, .impressum-container {
        padding: 40px 25px;
    }
    h1 {
        font-size: 2em;
    }
    .impressum-container {
        max-height: 85vh;
    }
}

.location {
    background: #f0f0ff;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    border-left: 4px solid #667eea;
}

.location p {
    margin: 10px 0;
    color: #555;
}

.map-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background-color: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.map-button:hover {
    background-color: #764ba2;
}
