* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #ffffff;
            color: #ef709b;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Hintergrundsbild Container */
        .background-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.5;
            background-image: url('images/luftbild_laar.jpg'); /* <-- Hier Bild einfügen */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }


        /* Header mit bunten Wimpeln */
        header {
            background: linear-gradient(135deg, #a8e6cf 0%, #dcedc8 100%);
            padding: 20px 0;
            position: relative;
            overflow: hidden;
        }

        .header-bunting {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 20px;
            background: repeating-linear-gradient(
                45deg,
                #ef709b 0px,
                #ef709b 20px,
                #ffd54f 20px,
                #ffd54f 40px,
                #81c784 40px,
                #81c784 60px,
                #64b5f6 60px,
                #64b5f6 80px
            );
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            text-align: center;
        }

        .logo-container {
            margin-bottom: 10px;
        }

        .logo {
            max-width: 250px;
            height: auto;
            /*border-radius: 50%;
            border: 3px solid #423655;
            /*display: none; /* Wird sichtbar wenn Logo hinzugefügt wird */
        }

        h1 {
            color: #423655;
            font-size: 2.5em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .subtitle {
            color: #ef709b;
            font-size: 1.2em;
            font-weight: bold;
        }

        /* Navigation */
        nav {
            background-color: #423655;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 30px;
            padding: 0 20px;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
            background-color: rgba(255,255,255,0.1);
        }

        .nav-link:hover, .nav-link.active {
            background-color: #ef709b;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(239,112,155,0.3);
        }

        /* Main Content */
        main {
            flex: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .form-container {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 3px solid #a8e6cf;
            position: relative;
            overflow: hidden;
        }

        .form-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(168,230,207,0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }


        .imprint-container {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 3px solid #a8e6cf;
            position: relative;
            overflow: hidden;
        }

        .imprint-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(168,230,207,0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        } 
        .intern-container {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 3px solid #a8e6cf;
            position: relative;
            overflow: hidden;
        }

        .intern-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(168,230,207,0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .form-content {
            position: relative;
            z-index: 1;
        }

        .imprint-content {
            position: relative;
            z-index: 1;
        }

        .intern-content {
            position: relative;
            z-index: 1;
        }

        h2 {
            color: #423655;
            font-size: 2em;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #ef709b, #ffd54f);
            border-radius: 2px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #423655;
            font-weight: bold;
            font-size: 1.1em;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea,
        select {
            width: 100%;
            padding: 15px;
            border: 2px solid #a8e6cf;
            border-radius: 10px;
            font-size: 1em;
            transition: all 0.3s ease;
            background-color: #fafafa;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="tel"]:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: #ef709b;
            box-shadow: 0 0 15px rgba(239,112,155,0.3);
            background-color: white;
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
        }

        input[type="checkbox"] {
            width: 20px;
            height: 20px;
            accent-color: #ef709b;
        }

        .submit-btn {
            background: linear-gradient(135deg, #ef709b, #ffd54f);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 30px;
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(239,112,155,0.3);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(239,112,155,0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Info Box */
        .info-box {
            background: linear-gradient(135deg, #a8e6cf, #dcedc8);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
            border-left: 5px solid #ef709b;
        }

        .info-box h3 {
            color: #423655;
            margin-bottom: 15px;
            font-size: 1.3em;
        }

        .info-box p {
            margin-bottom: 10px;
        }

        /* Footer */
        footer {
            background: #423655;
            color: white;
            text-align: center;
            padding: 30px 0;
            margin-top: auto;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            padding: 10px 15px;
            border-radius: 20px;
            transition: all 0.3s ease;
            background-color: rgba(255,255,255,0.1);
        }

        .footer-links a:hover {
            background-color: #ef709b;
            transform: translateY(-2px);
        }

        .footer-text {
            margin-top: 20px;
            font-size: 0.9em;
            opacity: 0.8;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .form-container {
                padding: 25px;
                margin: 20px 10px;
            }

            h1 {
                font-size: 2em;
            }

            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }

        /* Datei-Upload Styling */
        .file-upload {
            position: relative;
            overflow: hidden;
            display: inline-block;
            width: 100%;
        }

        .file-upload input[type="file"] {
            position: absolute;
            left: -9999px;
        }

        .file-upload-label {
            display: block;
            padding: 15px;
            background: linear-gradient(135deg, #a8e6cf, #dcedc8);
            border: 2px dashed #ef709b;
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #423655;
            font-weight: bold;
        }

        .file-upload-label:hover {
            background: linear-gradient(135deg, #ef709b, #ffd54f);
            color: white;
        }


h3 {
      font-size: 1.3rem;
      color: #003366;
      margin-top: 1.5rem;
    }

    ul {
      padding-left: 1.2rem;
    }

    ul li {
      margin-bottom: 0.5rem;
    }

    p {
      margin-bottom: 1rem;
    }

    strong {
      color: #b30000;
    }

    @media (max-width: 600px) {
      section {
        padding: 1rem;
      }


      h3 {
        font-size: 1.1rem;
      }
    }