/* Reset und Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: #f8f8f8;
    color: #333;
}
.container {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
align-items: left;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    color: white;
    padding: 1rem 2rem;
}
.logo {
    font-size: 1rem;
    font-weight: bold;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1em;
}
.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}
.nav-toggle {
    display: none;
    font-size: 1rem;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background: #004080;
        width: 200px;
        display: none;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }
}

/* Hero Section */
.hero {
    background: #e0ecff;
    padding: 4rem 2rem;
    text-align: left;
    border-radius: 10px;
    margin-bottom: 2rem;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer {
    background: #fff;
    color: #000;
    padding: 2rem 1rem;
}
.footer-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    color: #000;
}
.footer-links {
    margin-bottom: 1rem;
     color: #000;
} 
.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #000;
}
.footer p {
    font-size: 0.85rem;
    color: #000;
}












/* Grundlayout */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1e1e1e;
    background-color: #000;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Überschrift */
.headline {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: #007bff;
    margin-bottom: 2rem;
}

/* Einleitender Absatz */
.intro {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Hervorhebung */
.highlight {
    background: linear-gradient(90deg, #e0f7ff, #ffffff);
    border-left: 5px solid #007bff;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 1.15rem;
    border-radius: 8px;
}

/* Bild */
.image-wrapper {
    text-align: center;
    margin: 2rem 0;
}

.responsive-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.responsive-image:hover {
    transform: scale(1.05);
}

/* Absätze */
p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #444;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .headline {
        font-size: 2.2rem;
    }

    .intro, p, .highlight {
        font-size: 1rem;
    }

    .responsive-image {
        max-width: 100%;
    }
}



        /* Grundlayout */
        body, html {
            margin: 0;
            padding: 0;
            width: 100%;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f7fa; /* heller, freundlicher Hintergrund */
            color: #333;
        }

       

        /* Hero-Sektion */
        .hero {
            padding: 60px 20px;
            background-color: #ffffff;
            text-align: center;
            border-bottom: 1px solid #e0e0e0;
            border-radius: 0 0 15px 15px;
            margin-bottom: 30px;
        }

        .hero h1 {
            margin-bottom: 15px;
            font-size: 2.5rem;
            color: #1a73e8; /* freundliche Akzentfarbe */
        }

        .hero p {
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Spaltenbereich */
        .columns {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            width: 100vw;
            padding: 20px;
            box-sizing: border-box;
        }

        /* Jede einzelne Spalte */
        .column {
            flex: 1 1 250px;
            background-color: #ffffff;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            box-sizing: border-box;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .column:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .column h2 {
            margin-top: 0;
            color: #1a73e8;
        }

        .column a {
            color: #ff7043; /* freundlicher Linkton */
            text-decoration: none;
            font-weight: 500;
        }

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

 