/* ==========================================
    1. GRUNDLAGEN & RESET
    ========================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #383838;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #6ea5c3;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4a84a6;
    text-decoration: underline;
}

/* Typografie */
h1, h2, h3 {
    font-weight: normal;
    margin-bottom: 1.5rem;
    color: #000;
}

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Impressum Text-Container (schmaler für bessere Lesbarkeit) */
.legal-text-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fdfdfd;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

/* ==========================================
    2. HEADER & NAVIGATION (Passend zur Startseite)
    ========================================== */
.header-content {
    background-color: #d1e3ed; /* Hellblau aus header_footer.css */
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.header-text h1 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
    text-align: center;
}

.header-text p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #444;
}

/* ==========================================
    3. FOOTER
    ========================================== */
footer {
    background-color: #f9f9f9;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #eaeaea;
    font-size: 0.9rem;
    color: #666;
    margin-top: 40px;
}

/* ==========================================
    4. RESPONSIVE DESIGN (TABLETS & DESKTOP)
    ========================================== */
@media (min-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: center;
        text-align: left;
        gap: 50px;
    }
    .header-text h1 {
        font-size: 2.5rem;
    }
}
@media (max-width: 600px) {
    .legal-text-container {
        padding: 20px;
        box-shadow: none;
        background: transparent;
    }
}