body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
}
header {
    background: #004080;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
}
header img {
    height: 60px;
    margin-right: 15px;
}


.header-container {
    display: flex;
    justify-content: space-between; /* Logos an die Seiten */
    align-items: center;
    padding: 10px 0; /* nur vertikaler Abstand */
    width: 100%;
}

.header-nav {
    background: #E3E3E3;
	display: flex;
    justify-content: space-between; /* Logos an die Seiten */
    align-items: left;
    /*padding: 0px 0px;*/ /* nur vertikaler Abstand */
    width: 100%;
}

.logo-left img,
.logo-right img {
    width: 80px; /* anpassen */
    height: auto;
}

.header-container img {
    width: 80px; /* oder passend für deine Logos */
    height: auto;
}

.header-container h1 {
    text-align: center;
    font-size: 1.8rem;
    margin: 0;
    flex-grow: 1; /* sorgt dafür, dass der Text mittig bleibt */
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 7px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}
footer {
    background: #004080;
    color: #fff;
    text-align: center;
    padding: 15px;
}
.hero-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}
.team-section {
    padding: 40px 20px;
    text-align: center;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.team-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.team-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}
.team-card h3 {
    margin: 10px 0 5px;
    color: #004080;
    font-size: 18px;
}
.team-card p {
    color: #333;
    font-size: 14px;
}
.slider {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}
.slide {
    display: none;
}
.slide img {
    width: 100%;
    border-radius: 8px;
}
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transform: translateY(-50%);
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}
.dots {
    text-align: center;
    margin-top: 10px;
}
.dots span {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}
.active {
    background-color: #004080;
}

/* Responsive Layout */
    .gallery-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        padding: 20px;
    }

    /* Fester Bildbereich */
    .gallery-item {
        width: 100%;
        height: 200px; /* feste Höhe */
        background-color: #f0f0f0;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .gallery-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover; /* Bild wird zugeschnitten */
    }

    /* Responsive iFrame */
    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Verhältnis */
        height: 0;
        overflow: hidden;
        margin: 20px;
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
