:root {
    --primary: #fb62987d;
    --complementary: #46b06bc7; /* Komplementärfarbe zu Pink (grün), wie in start.css */
    --secondary: #121112;
    --accent: #161515;
    --bg-gradient: linear-gradient(100deg, rgba(120, 40, 67, 0.927), #dd5685ef);
    --glass: rgba(255, 255, 255, 0.08);
    --blur: blur(12px);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    --border: 1px solid rgba(255, 255, 255, 0.1);
}

body {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg-gradient);
    min-height: 100vh;
    color: white;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Standardcontainer ohne Glaseffekt */
.content {
    max-width: 800px;
    text-align: left; /* Links ausgerichtet */
    margin: 0 auto;
    padding: 40px;
}

.text-section {
    margin-bottom: 20px;
    text-align: left; /* Links ausgerichtet */
}

.logo-container {
    text-align: center; /* Logo bleibt zentriert */
    margin-bottom: 20px;
}

.site-logo {
    max-width: 200px;
    height: auto;
}

.impressum-section {
    margin-bottom: 2rem;
    text-align: left;
}

.impressum-section h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center; /* Überschriften dürfen zentriert bleiben */
}

.impressum-section h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    text-align: left;
}

.impressum-section h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.impressum-section h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.impressum-section p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Link-Styling auf typisches Web-Blau ändern */
.impressum-section a {
    color: #0066cc; /* Typisches Link-Blau statt var(--primary) */
    text-decoration: none;
}

.impressum-section a:hover {
    text-decoration: underline;
    color: #004499; /* Dunkleres Blau beim Hover */
}

/* Text-Box ohne Glaseffekt */
.text-box {
    text-align: left;
    line-height: 1.6;
    padding: 1.5rem;
    border-radius: 10px;
}

/* Text-Box Links ebenfalls anpassen */
.text-box a {
    color: #0066cc; /* Typisches Link-Blau statt var(--primary) */
    text-decoration: none;
}

.text-box a:hover {
    text-decoration: underline;
    color: #004499; /* Dunkleres Blau beim Hover */
}

.stand {
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
}

/* Button-Styling angepasst an start.css */
.button-container {
    text-align: center;
    margin: 30px 0;
}

/* Button-Stil aus start.css übernommen */
.button {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--complementary);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.2em;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 
                0 1px 3px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.button:hover {
    transform: translateY(-3px) scale(1.02);
    background-color: #4eb472c6;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
                0 3px 6px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .content {
        padding: 20px 15px;
    }
    
    .impressum-section h1 {
        font-size: 1.8rem;
    }
    
    .impressum-section h2 {
        font-size: 1.4rem;
    }
    
    .impressum-section h3 {
        font-size: 1.2rem;
    }
    
    .impressum-section h4 {
        font-size: 1.1rem;
    }
    
    .site-logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 15px 10px;
    }
    
    .impressum-section h1 {
        font-size: 1.6rem;
    }
    
    .impressum-section h2 {
        font-size: 1.3rem;
    }
    
    .button {
        padding: 12px 24px;
        font-size: 1rem;
    }
}