 * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: "Inter", sans-serif;
            background: linear-gradient(135deg, #001a3d, #003366); /* Dunkelblau */
            color: #fff;
            display: flex;
            justify-content: center;
            min-height: 100vh;
        }

        /* --- Kompaktmenü oben rechts --- */
            .top-menu {
                position: fixed;
                top: 15px;
                right: 15px;
                z-index: 9999;
            }

            .menu-btn {
                background: #ffffff22;
                color: #fff;
                border: 1px solid #ffffff33;
                padding: 10px 14px;
                border-radius: 8px;
                font-size: 1.2rem;
                cursor: pointer;
                backdrop-filter: blur(6px);
                transition: 0.2s ease;
            }

            .menu-btn:hover {
                background: #cc0000;
            }

            .menu-panel {
                display: none;
                position: absolute;
                right: 0;
                margin-top: 10px;
                background: #001a3d;
                border: 1px solid #ffffff22;
                border-radius: 10px;
                padding: 10px 0;
                width: 180px;
                backdrop-filter: blur(6px);
                opacity: 0;
                transform: translateY(-10px);
                transition: opacity 0.25s ease, transform 0.25s ease;

            }

            .menu-panel.open {
                display: block;
                opacity: 1;
                transform: translateY(0);
            }

            .menu-panel a {
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 12px 18px;
                white-space: nowrap; /* verhindert Zeilenumbruch */
                color: #fff;
                text-decoration: none;
                font-weight: 500;
                transition: background 0.2s ease, padding-left 0.2s ease;

            }


            .menu-panel a:hover {
                background: #cc0000;
                padding-left: 24px; /* kleiner Slide-Effekt */

            }

        .container {
            max-width: 420px;
            width: 90%;
            text-align: center;
            padding: 40px 0;
        }

        .profile-img {
            max-width: 140px; /* Begrenzung wie vorher */
            width: 100%;
            height: auto; /* Originalskalierung */
            margin-bottom: 20px;
            border: none; /* Kein Rahmen */
            border-radius: 0; /* Keine Rundung */
        }



        h1 {
            margin: 10px 0;
            font-size: 1.8rem;
            font-weight: 600;
        }

        p {
            opacity: 0.85;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .quick-btn {
            color: #8ab4ff; /* sanftes, modernes Hellblau */
            font-weight: 600;
            text-decoration: none;
            transition: 0.2s ease;
        }

        .quick-btn:hover {
            color: #ffffff; /* wird beim Hover weiß */
        }

        .link {
            display: block;
            background: #ffffff10;
            backdrop-filter: blur(6px);
            padding: 15px 20px;
            margin: 12px 0;
            border-radius: 12px;
            text-decoration: none;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 500;
            transition: 0.2s ease;
            border: 1px solid #ffffff22;
        transition: transform 0.2s ease, background 0.2s ease;
        }

        .link:hover {
            background: #cc0000; /* Feuerwehr-Rot */
            transform: scale(1.03);
            transform: translateY(-2px);

        }

        /* Horizontal scroll für Social Links auf Handy */
            .scroll-links {
                display: flex;
                gap: 12px;
                overflow-x: auto;
                    padding-bottom: 10px;
                    margin-bottom: 20px;
                scroll-snap-type: x mandatory;
                scroll-behavior: smooth;

            }

            .scroll-links .link {
                flex: 0 0 auto;
                min-width: 240px;
                scroll-snap-align: start;
            }

            .show-all-btn {
                font-size: 0.8rem;
                padding: 4px 10px;
                margin-left: 10px;
                background: #ffffff22;
                border: 1px solid #ffffff33;
                border-radius: 6px;
                color: #fff;
                cursor: pointer;
                backdrop-filter: blur(4px);
                transition: 0.2s ease;
            }

            .show-all-btn:hover {
                background: #cc0000;
            }

            .scroll-links.expanded {
                display: block !important;
                overflow: visible !important;
                gap: 0 !important;
                flex-wrap: unset !important; /* Safari Fix */
                    min-width: unset !important;
                margin: 12px 0 !important;
            }


            .scroll-links.expanded .link {
                min-width: unset !important;
                margin: 12px 0 !important;
            }

        /* Desktop: wieder normal untereinander */
            @media (min-width: 600px) {
                .scroll-links {
                    display: block;
                    overflow: visible;
                }
            
                .scroll-links .link {
                    min-width: unset;
                    margin: 12px 0;
                }

                .show-all-btn {
                    display: none;
                }
            }
	
        .pdf-preview {
            max-width: 900px;   /* sinnvolle Begrenzung */
            width: 100%;        /* responsive */
            height: auto;       /* Originalseitenverhältnis */
            margin: 0 auto;     /* zentriert */
            display: block;     /* für zentrierung nötig */
            cursor: pointer;
            border-radius: 8px; /* optional, kannst du entfernen */
        }

        .box {
            background: #ffffff10;
            border: 1px solid #ffffff22;
            padding: 30px 22px;
            border-radius: 14px;
            backdrop-filter: blur(6px);
            text-align: left;
        }

        input, textarea, select {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #ffffff33;
            background: #ffffff15;
            color: #fff;
            margin-top: 5px;
            margin-bottom: 18px;
        }

        /* Dropdown sichtbar machen */
        select option {
            color: #000;
        }

        label {
            font-weight: 600;
        }

        .required {
            color: #ff6666;
        }

        .join-box {
            margin: 25px 0 35px 0;
            text-align: center;
        }

        .join-btn {
            display: inline-block;
            background: #cc0000; /* Feuerwehr-Rot */
            color: #fff;
            padding: 14px 26px;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            transition: 0.25s ease;
            box-shadow: 0 4px 12px rgba(204, 0, 0, 0.4);
        }

        .join-btn:hover {
            background: #ff1a1a;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(255, 0, 0, 0.45);
        }

        .btn {
            display: inline-block;
            background: #cc0000;
            color: #fff;
            padding: 14px 26px;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: 0.25s ease;
            box-shadow: 0 4px 12px rgba(204, 0, 0, 0.4);
            width: 100%;
            text-align: center;
            margin-top: 20px;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background: #ff1a1a;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(255, 0, 0, 0.45);
        }

        .why-join {
            margin: 40px 0;
            text-align: left;
            background: #ffffff10;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid #ffffff22;
        }

        .why-join ul {
            padding-left: 20px;
            line-height: 1.6;
        }

        .contact-box {
            margin-top: 40px;
            margin-bottom: 40px;
            text-align: center;
        }

        footer {
            margin-top: 40px;
            opacity: 0.5;
            font-size: 0.85rem;
        }

        @media (min-width: 1000px) {
            .pdf-preview {
                max-width: 600px;
            }
        
            /* Burger-Button ausblenden */
            .menu-btn {
                display: none;
            }

            /* Kopfzeile für Desktop */
            .top-menu {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                padding: 20px 0;
                background: rgba(0, 26, 61, 0.9); /* dunkles Blau */
                backdrop-filter: blur(6px);
                display: flex;
                justify-content: center; /* ZENTRIERT */
                z-index: 9999;
                border-bottom: 1px solid #ffffff22;
            }

            /* Menü dauerhaft sichtbar */
            .menu-panel {
                display: flex !important;
                gap: 20px;
                opacity: 1 !important;
                transform: none !important;
                position: static !important;
                background: none !important;
                border: none !important;
                padding: 0 !important;
                margin: 0 auto !important;
                justify-content: center; /* ZENTRIERT */
            }

            /* Menü-Links */
            .menu-panel a {
                background: #ffffff10;
                border: 1px solid #ffffff22;
                padding: 10px 16px;
                border-radius: 8px;
                backdrop-filter: blur(6px);
                transition: 0.2s ease;
                font-size: 1rem;
                text-align: center;
                white-space: nowrap;
            }

            .menu-panel a:hover {
                background: #cc0000;
                padding-left: 16px;
            }

            /* Abstand unter der Kopfzeile schaffen */
            .container {
                margin-top: 140px; /* genug Platz für Menü + Luft */
                max-width: 800px;
            }


            /* Abstand unter der Kopfzeile schaffen */
            .container {
                margin-top: 120px; /* genug Platz für Menü + Luft */
                max-width: 800px;
            }

            section, 
            div[id] {
                scroll-margin-top: 120px; /* Höhe deiner Kopfzeile */
            }

            .kinder-scroll-links {
                display: flex;
                overflow-x: auto;
                gap: 10px;
            }

            .kinder-scroll-links .link {
                min-width: 180px;
            }


        }