        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f5f5f5;
        }

        h1 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #1e3c72;
            font-size: 2.5rem;
            border-bottom: 3px solid #ffd700;
        }

        
        p {
            margin-bottom: 1rem;
        }

        h3 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #f5f5f5;
            font-size: 1rem;;
        }

        /* Navigation */
        nav {
            min-width: 1150px;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            font-size: 1em;
        }

        nav ul {
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
            font-size: 1rem;
        }

        nav a:hover {
            color: #ffd700;
        }

        .contactButton {
            color: white;
            background-color: rgb(108, 108, 255);
            padding: 8px 80px;
            display: inline-block;
            border-radius: 8px;
            margin-top: 16px;
            margin-bottom: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .contactButton:hover {
            text-decoration: none;
            background-color: rgb(128, 128, 248);
        }

        .back-link {
            display: inline-block;
            margin-top: 2rem;
            padding: 0.75rem 1.5rem;
            background: #1e3c72;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s;
        }

        .back-link:hover {
            background: #2a5298;
        }

        .spendenButton {
            color: #274A40;
            background-color: #CCF88E;
            padding: 8px 80px;
            display: inline-block;
            border-radius: 20px;
            margin-top: 1px;
            margin-bottom: 1px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .spendenButton:hover {
            text-decoration: none;
            color: #274A34;
            background-color: #E9FCCE;
        }

        .iconMail {
            height: 24px;
            margin-right: 4px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-left: auto;
        }

        .social-links a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Hero Slider */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 650px;
            overflow: hidden;
            background: #000;
        }

        .kontaktbereich {
            display: flex;
            justify-content: center;
            text-decoration: none;
        }

        .spenden {
            display: flex;
            justify-content: center;
            text-decoration: none;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img, .slide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.3);
            color: white;
            border: none;
            font-size: 2rem;
            padding: 1rem 1.5rem;
            cursor: pointer;
            z-index: 10;
            transition: background 0.3s;
        }

        .slider-arrow:hover {
            background: rgba(255,255,255,0.5);
        }

        .slider-arrow.prev {
            left: 20px;
        }

        .slider-arrow.next {
            right: 20px;
        }

        /* Section Styles */
        section {
            padding: 4rem 2rem;
        }

        section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #1e3c72;
        }

        /* Team Slider */
        .team-slider {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            padding: 2rem 0;
        }

        .team-track {
            display: flex;
            gap: 2rem;
            transition: transform 0.5s ease;
        }

        .team-member {
            min-width: 300px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            text-align: center;
            flex-shrink: 0;
        }

        .team-member img {
            aspect-ratio: 1;
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .team-info {
            padding: 1.5rem;
        }

        .team-info h3 {
            color: #1e3c72;
            margin-bottom: 0.5rem;
        }

        .team-info p {
            color: #666;
        }

        .team-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #1e3c72;
            color: white;
            border: none;
            font-size: 1.5rem;
            padding: 1rem;
            cursor: pointer;
            border-radius: 50%;
            z-index: 10;
            transition: background 0.3s;
        }

        .team-arrow:hover {
            background: #2a5298;
        }

        .team-arrow.prev {
            left: 10px;
        }

        .team-arrow.next {
            right: 10px;
        }

        /* Instagram Gallery */
        #instagram {
            background: #f5f5f5;
        }

        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .instagram-post {
            aspect-ratio: 1;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .instagram-post:hover {
            transform: scale(1.05);
        }

        .instagram-post img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .insta-logo {
            width:20px;
            height:20px;
        }

        /* Events */
        .events-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .event {
            background: white;
            padding: 1rem;
            margin-bottom: 1.1rem;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #1e3c72;
        }

        .event h3 {
            color: #1e3c72;
            margin-bottom: 0.5rem;
        }

        .event-date {
            color: #ffd700;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        /* Contact Form */
        #kontakt {
            background: #f5f5f5;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #1e3c72;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            background: #1e3c72;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            background: #2a5298;
        }

        /* Sponsor Bar */
        .sponsor-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(30, 60, 114, 0.9);
            padding: 0.5rem 0;
            overflow: hidden;
            z-index: 999;
        }

        .sponsor-track {
            display: flex;
            gap: 2rem;
            animation: scroll 30s linear infinite;
        }

        .sponsor-bar:hover .sponsor-track {
            animation-play-state: paused;
        }

        .sponsor-item {
            min-width: 150px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            flex-shrink: 0;
        }

        .sponsor-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: brightness(0) invert(1);
            transition: filter 0.3s;
        }

        .sponsor-item:hover img {
            filter: brightness(1) invert(0);
        }

        .container {
            max-width: 900px;
            min-width: 750px;
            margin: 3rem auto;
            padding: 3rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            display: flex; /* Aktiviert Flexbox */
            justify-content: space-around; /* Verteilt Spalten mit Abstand */
            gap: 20px;
            align-content: center;
            flex: 1;
        }

        .container2 {
            max-width: 900px;
            min-width: 900px;
            margin: 3rem auto;
            padding: 3rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            justify-content: space-around; /* Verteilt Spalten mit Abstand */
            gap: 20px;
            align-content: center;
            flex: 1;
        }

        .cf {
            min-width: 300px;
        }

        .cf2 {
            min-width: 700px;
        }


        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Footer */
        footer {
            background: #1e3c72;
            color: white;
            text-align: center;
            padding: 2rem;
            margin-bottom: 100px;
        }

        footer a {
            color: white;
            margin: 0 1rem;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }