/* Zusammengeführte Inline-Styles aus Original */


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #1e3a5f;
            --secondary-color: #2c5282;
            --accent-color: #3182ce;
            --light-bg: #f7fafc;
            --dark-text: #2d3748;
            --light-text: #718096;
            --success-color: #48bb78;
            --warning-color: #ed8936;
            --discord-color: #5865F2;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            overflow-x: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            position: relative;
        }

        /* Animated Background Grid */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(30, 58, 95, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(30, 58, 95, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: -1;
            animation: grid-move 30s linear infinite;
            pointer-events: none;
        }

        @keyframes grid-move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Simple Floating Elements */
        .simple-float {
            position: fixed;
            width: 60px;
            height: 60px;
            background: rgba(49, 130, 206, 0.05);
            border-radius: 50%;
            top: 50%;
            left: 5%;
            z-index: -1;
            animation: simple-float 12s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes simple-float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-50px) rotate(180deg);
            }
        }

        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--light-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent-color);
            border-radius: 5px;
        }

        /* RP Disclaimer Banner */
        .rp-disclaimer {
            background: linear-gradient(90deg, var(--warning-color), #f6ad55);
            color: white;
            text-align: center;
            padding: 10px;
            font-weight: bold;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            animation: slideDown 0.5s ease-out;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        /* Navigation */
        nav {
            background: rgba(30, 58, 95, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 45px;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
            background: var(--light-bg);
            border: 2px dashed #cbd5e0;
            border-radius: 8px;
            position: relative;
        }

        .logo:hover {
            transform: scale(1.05);
            border-color: var(--accent-color);
        }

        .logo-placeholder {
            font-size: 1.2rem;
            color: var(--accent-color);
            text-align: center;
            font-weight: 600;
        }

        .logo-text {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            position: relative;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            position: relative;
            overflow: hidden;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-menu a:hover::before {
            width: 80%;
        }

        .nav-menu a:hover {
            color: #a5b4fc;
            transform: translateY(-2px);
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--primary-color);
            min-width: 200px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
            border-radius: 8px;
            z-index: 1000;
            overflow: hidden;
            animation: dropdown-slide 0.3s ease-out;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown-content a {
            color: white;
            padding: 1rem 1.5rem;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }

        @keyframes dropdown-slide {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-arrow {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .dropdown:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            min-height: calc(100vh - 100px);
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.9), rgba(44, 82, 130, 0.9)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            color: white;
            font-weight: 700;
        }

        .hero-title {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.8rem;
            line-height: 1.2;
        }

        .hero-word {
            display: inline-block;
            opacity: 0;
            animation: fadeInWord 0.8s ease-out forwards;
        }

        .hero-word:nth-child(1) { animation-delay: 0.3s; }
        .hero-word:nth-child(2) { animation-delay: 0.5s; }
        .hero-word:nth-child(3) { animation-delay: 0.7s; }

        @keyframes fadeInWord {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-info {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            opacity: 0.95;
        }

        .hero-location, .hero-time {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero .subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            background: linear-gradient(135deg, var(--discord-color), #4752c4);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(88, 101, 242, 0.4);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button.secondary {
            background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
        }

        .cta-button.secondary:hover {
            background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.2));
            border-color: rgba(255,255,255,0.5);
        }

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

        /* Section Styling */
        section {
            padding: 5rem 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        section:nth-child(even) {
            background: var(--light-bg);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
            width: 100%;
            animation: fadeInUp 0.8s ease-out;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
            border-radius: 2px;
            animation: expandLine 1s ease-out 0.5s forwards;
        }

        @keyframes expandLine {
            to { width: 80px; }
        }

        /* Minister Section */
        .minister-section {
            background: linear-gradient(135deg, #f6f9fc 0%, #e9f3ff 100%);
            padding: 4rem 0;
            position: relative;
        }

        .minister-card {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            display: flex;
            gap: 3rem;
            align-items: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .minister-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 80px rgba(0,0,0,0.15);
        }

        .minister-photo {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            flex-shrink: 0;
        }

        .minister-info h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .minister-title {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .minister-message {
            color: var(--dark-text);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* Department Cards */
        .departments {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .department-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .department-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: left;
        }

        .department-card:hover::before {
            transform: scaleX(1);
        }

        .department-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0,0,0,0.2);
        }

        .department-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            transition: all 0.4s ease;
        }

        .department-card:hover .department-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 25px rgba(49, 130, 206, 0.4);
        }

        .department-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .department-card p {
            color: var(--light-text);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .department-link {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .department-link:hover {
            gap: 1rem;
        }

        /* Page Container System */
        .page-container {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .page-container.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .page-hero {
            padding: 5rem 0;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-title {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .page-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
        }

        .page-content {
            padding: 4rem 0;
            background: white;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
            position: relative;
        }

        .content-main {
            background: white;
        }

        .content-main h2 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .content-main p {
            color: var(--dark-text);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .content-sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .sidebar-card {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .sidebar-card:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .sidebar-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .sidebar-card.job-highlight {
            background: linear-gradient(135deg, #48bb78, #38a169);
            color: white;
        }

        .sidebar-card.job-highlight h3 {
            color: white;
        }

        .sidebar-card.discord-highlight {
            background: var(--discord-color);
            color: white;
        }

        .sidebar-card.discord-highlight h3 {
            color: white;
        }

        .info-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border-left: 4px solid var(--accent-color);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        }

        .info-card h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        /* Tables for Gebühren */
        .cost-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .cost-table th {
            background: var(--primary-color);
            color: white;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }

        .cost-table td {
            padding: 1rem;
            border-bottom: 1px solid #e2e8f0;
            background: white;
        }

        .cost-table tr:nth-child(even) td {
            background: var(--light-bg);
        }

        .cost-table tr:hover td {
            background: rgba(49, 130, 206, 0.1);
        }

        .price-highlight {
            font-weight: bold;
            color: var(--accent-color);
        }

        /* Iframe Styles */
        .iframe-container {
            width: 100%;
            height: 800px;
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            background: var(--light-bg);
        }

        .iframe-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Coming Soon Animation */
        .coming-soon {
            text-align: center;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 15px;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }

        .coming-soon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .coming-soon h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            animation: pulse-text 2s ease-in-out infinite;
            position: relative;
            z-index: 1;
        }

        .coming-soon p {
            font-size: 1.2rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        @keyframes pulse-text {
            0%, 100% { 
                transform: scale(1);
                text-shadow: 0 0 20px rgba(255,255,255,0.5);
            }
            50% { 
                transform: scale(1.05);
                text-shadow: 0 0 30px rgba(255,255,255,0.8);
            }
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 1rem;
            background: var(--light-bg);
            margin-bottom: 0.5rem;
            border-radius: 8px;
            position: relative;
            padding-left: 2.5rem;
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 1rem;
            color: var(--success-color);
            font-weight: bold;
        }

        .apply-button {
            background: white;
            color: var(--primary-color);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 1rem;
            text-align: center;
            width: 100%;
        }

        .apply-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        /* Footer */
        footer {
            background: var(--primary-color);
            color: white;
            padding: 2rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .footer-section h4 {
            margin-bottom: 0.8rem;
            color: #a5b4fc;
            font-size: 1.1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-section a:hover {
            opacity: 1;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        /* Floating Discord Button */
        .floating-discord {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--discord-color);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
            z-index: 999;
            transition: all 0.3s ease;
            animation: float-discord 3s ease-in-out infinite;
            text-decoration: none;
        }

        @keyframes float-discord {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        .floating-discord:hover {
            transform: scale(1.15) translateY(-5px);
            box-shadow: 0 15px 40px rgba(88, 101, 242, 0.6);
            animation: none;
        }

        /* Loading Animation */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10001;
            transition: opacity 0.5s ease;
        }

        .loader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader-content {
            text-align: center;
            color: white;
        }

        .loader-icon {
            width: 80px;
            height: 80px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top: 4px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 1rem;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 10001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
            margin: 2rem;
            position: relative;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 2rem;
            cursor: pointer;
            color: var(--light-text);
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: var(--primary-color);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--primary-color);
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            }

            .nav-menu.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero .subtitle {
                font-size: 1.1rem;
            }

            .minister-card {
                flex-direction: column;
                text-align: center;
            }

            .departments {
                grid-template-columns: 1fr;
            }

            .content-grid {
                grid-template-columns: 1fr;
            }

            .page-title {
                font-size: 2rem;
            }

            /* Disable animations on mobile for performance */
            body::before,
            .simple-float {
                display: none;
            }
        }
    

/* --- Zusatz-CSS aus index für Inhalte --- */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #1e3a5f;
            --secondary-color: #2c5282;
            --accent-color: #3182ce;
            --light-bg: #f7fafc;
            --dark-text: #2d3748;
            --light-text: #718096;
            --success-color: #48bb78;
            --warning-color: #ed8936;
            --discord-color: #5865F2;
        }

        /* Simplified Working Animations */
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            overflow-x: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            position: relative;
        }

        /* Animated Background Grid */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(30, 58, 95, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(30, 58, 95, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: -1;
            animation: grid-move 30s linear infinite;
            pointer-events: none;
        }

        @keyframes grid-move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Floating Elements */
        body::after {
            content: '';
            position: fixed;
            top: 20%;
            right: 10%;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(49, 130, 206, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
            animation: float-blob 8s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes float-blob {
            0%, 100% {
                transform: translateY(0px) scale(1);
                opacity: 0.1;
            }
            50% {
                transform: translateY(-30px) scale(1.1);
                opacity: 0.2;
            }
        }

        /* Simple Floating Shapes */
        .simple-float {
            position: fixed;
            width: 60px;
            height: 60px;
            background: rgba(49, 130, 206, 0.05);
            border-radius: 50%;
            top: 50%;
            left: 5%;
            z-index: -1;
            animation: simple-float 12s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes simple-float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-50px) rotate(180deg);
            }
        }

        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--light-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent-color);
            border-radius: 5px;
        }

        /* RP Disclaimer Banner */
        .rp-disclaimer {
            background: linear-gradient(90deg, var(--warning-color), #f6ad55);
            color: white;
            text-align: center;
            padding: 10px;
            font-weight: bold;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            animation: slideDown 0.5s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }

        /* Navigation */
        nav {
            background: rgba(30, 58, 95, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 45px;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
            background: var(--light-bg);
            border: 2px dashed #cbd5e0;
            border-radius: 8px;
            position: relative;
        }

        .logo:hover {
            transform: scale(1.05);
            border-color: var(--accent-color);
        }

        .logo-placeholder {
            font-size: 1.2rem;
            color: var(--accent-color);
            text-align: center;
            font-weight: 600;
        }

        .logo-text {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            position: relative;
            overflow: hidden;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-menu a:hover::before {
            width: 80%;
        }

        .nav-menu a:hover {
            color: #a5b4fc;
            transform: translateY(-2px);
        }

        .discord-nav-btn {
            background: var(--discord-color);
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
        }

        .discord-nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            min-height: calc(100vh - 100px);
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.9), rgba(44, 82, 130, 0.9)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            animation:none;
        }

        @keyframes moveGrid {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(50px, 50px);
            }
        }

        .hero-content {
            max-width: 800px;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            color: white;
            font-weight: 700;
        }

        .hero-title {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.8rem;
            line-height: 1.2;
        }

        .hero-word {
            display: inline-block;
            opacity: 0;
            animation: fadeInWord 0.8s ease-out forwards;
        }

        .hero-word:nth-child(1) { animation-delay: 0.3s; }
        .hero-word:nth-child(2) { animation-delay: 0.5s; }
        .hero-word:nth-child(3) { animation-delay: 0.7s; }

        @keyframes fadeInWord {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-info {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            opacity: 0.95;
        }

        .hero-location, .hero-time {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .animate-fade {
            animation: fadeIn 1s ease-out 1s forwards;
            opacity: 0;
        }

        .animate-slide {
            animation: slideUp 0.8s ease-out 1.2s forwards;
            opacity: 0;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button.secondary {
            background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
        }

        .cta-button.secondary:hover {
            background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.2));
            border-color: rgba(255,255,255,0.5);
        }

        .hero .subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .working-hours {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .cta-button {
            background: linear-gradient(135deg, var(--discord-color), #4752c4);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(88, 101, 242, 0.4);
            animation: pulse-glow 1.5s infinite;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 15px 40px rgba(88, 101, 242, 0.4);
            }
            50% {
                box-shadow: 0 15px 40px rgba(88, 101, 242, 0.6), 0 0 30px rgba(88, 101, 242, 0.3);
            }
        }

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

        /* Enhanced Section Effects */
        section {
            padding: 5rem 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        section:nth-child(even) {
            background: var(--light-bg);
        }

        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
            animation: scan-line 6s infinite;
        }

        @keyframes scan-line {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* Working Card Animations */
        .department-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .department-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: left;
        }

        .department-card:hover::before {
            transform: scaleX(1);
        }

        .department-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.2);
        }

        /* Simple but effective button animations */
        .cta-button {
            background: linear-gradient(135deg, var(--discord-color), #4752c4);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
            position: relative;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(88, 101, 242, 0.5);
        }

        .cta-button:active {
            transform: translateY(-1px);
        }

        /* Section Styling */
        section {
            padding: 5rem 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        section:nth-child(even) {
            background: var(--light-bg);
        }

        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
            animation: scan 8s infinite;
        }

        section::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 1px;
            height: 100%;
            background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
            opacity: 0.1;
            animation: vertical-scan 12s infinite;
        }

        @keyframes scan {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

        @keyframes vertical-scan {
            0%, 100% {
                opacity: 0.1;
                transform: scaleY(1);
            }
            50% {
                opacity: 0.3;
                transform: scaleY(1.5);
            }
        }

        /* Page-specific Background Enhancements */
        .page-content {
            padding: 4rem 0;
            background: white;
            position: relative;
        }

        /* Enhanced Hero Effects */
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(
                0deg,
                rgba(255,255,255,0.1) 0%,
                transparent 100%
            );
            pointer-events: none;
        }

        /* Subtle Border Animations */
        .content-grid::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
            opacity: 0.2;
            animation: border-pulse 6s ease-in-out infinite;
        }

        @keyframes border-pulse {
            0%, 100% {
                opacity: 0.2;
                transform: scaleX(1);
            }
            50% {
                opacity: 0.5;
                transform: scaleX(1.1);
            }
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
            width: 100%;
            animation: fadeInUp 0.8s ease-out;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
            border-radius: 2px;
            animation: expandLine 1s ease-out 0.5s forwards;
        }

        @keyframes expandLine {
            to {
                width: 80px;
            }
        }

        /* Minister Section */
        .minister-section {
            background: linear-gradient(135deg, #f6f9fc 0%, #e9f3ff 100%);
            padding: 4rem 0;
            position: relative;
        }

        .minister-card {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            display: flex;
            gap: 3rem;
            align-items: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .minister-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(49, 130, 206, 0.05) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .minister-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 80px rgba(0,0,0,0.15);
        }

        .minister-card:hover::before {
            opacity: 1;
        }

        .minister-photo {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            flex-shrink: 0;
        }

        .minister-info h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .minister-title {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .minister-message {
            color: var(--dark-text);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* Department Cards */
        .departments {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .department-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .department-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: left;
        }

        .department-card::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: linear-gradient(135deg, rgba(49, 130, 206, 0.05), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .department-card:hover::before {
            transform: scaleX(1);
        }

        .department-card:hover::after {
            opacity: 1;
        }

        .department-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0,0,0,0.2);
        }

        .department-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .department-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

        .department-card:hover .department-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 25px rgba(49, 130, 206, 0.4);
        }

        .department-card:hover .department-icon::before {
            left: 100%;
        }

        .department-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .department-card p {
            color: var(--light-text);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .department-link {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .department-link:hover {
            gap: 1rem;
        }

        /* Detail Sections */
        .detail-section {
            background: white;
            border-radius: 15px;
            padding: 3rem;
            margin: 2rem 0;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .detail-section.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .detail-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--light-bg);
        }

        .detail-header h2 {
            color: var(--primary-color);
            font-size: 2rem;
        }

        .close-detail {
            background: var(--light-bg);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
            color: var(--dark-text);
            transition: all 0.3s ease;
        }

        .close-detail:hover {
            background: var(--accent-color);
            color: white;
        }

        .detail-content {
            display: grid;
            gap: 2rem;
        }

        .detail-item {
            padding: 1.5rem;
            background: var(--light-bg);
            border-radius: 10px;
            border-left: 4px solid var(--accent-color);
        }

        .detail-item h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .detail-item ul {
            list-style: none;
            padding-left: 0;
        }

        .detail-item li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        .detail-item li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--accent-color);
        }

        .job-posting {
            background: linear-gradient(135deg, #48bb78, #38a169);
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 1rem;
            text-align: center;
        }

        .job-posting h4 {
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 5rem 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact-card h3 {
            margin-bottom: 1rem;
        }

        /* Footer optimized */
        footer {
            background: var(--primary-color);
            color: white;
            padding: 2rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .footer-section h4 {
            margin-bottom: 0.8rem;
            color: #a5b4fc;
            font-size: 1.1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-section a:hover {
            opacity: 1;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (min-width: 1600px) {
            .container {
                max-width: 1600px;
            }
            
            .departments {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .hero h1 {
                font-size: 4rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--primary-color);
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            }

            .nav-menu.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero .subtitle {
                font-size: 1.1rem;
            }

            .minister-card {
                flex-direction: column;
                text-align: center;
            }

            .departments {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            /* Disable animations on mobile for performance */
            body::before,
            body::after,
            .simple-float {
                display: none;
            }
        }

        /* Floating Discord Button */
        .floating-discord {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--discord-color);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
            z-index: 999;
            transition: all 0.3s ease;
            animation: float-discord 3s ease-in-out infinite;
        }

        @keyframes float-discord {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        .floating-discord:hover {
            transform: scale(1.15) translateY(-5px);
            box-shadow: 0 15px 40px rgba(88, 101, 242, 0.6);
            animation: none;
        }

        /* Breathing effect for important elements */
        .breathe {
            animation: breathe 4s ease-in-out infinite;
        }

        @keyframes breathe {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.02);
            }
        }

        /* Loading Animation */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10001;
            transition: opacity 0.5s ease;
        }

        .loader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader-content {
            text-align: center;
            color: white;
        }

        .loader-icon {
            width: 80px;
            height: 80px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top: 4px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 1rem;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Page Container System */
        .page-container {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .page-container.active {
            display: block;
        }

        .page-hero {
            padding: 5rem 0;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
            background-size: 30px 30px;
            animation: moveGrid 15s linear infinite;
        }

        .page-title {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .page-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
        }

        .page-content {
            padding: 4rem 0;
            background: white;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
            position: relative;
        }

        .content-main {
            background: white;
        }

        .content-main h2 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .content-main p {
            color: var(--dark-text);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .content-sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .sidebar-card {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .sidebar-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }

        .sidebar-card:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .sidebar-card:hover::before {
            left: 100%;
        }

        .sidebar-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .sidebar-card.job-highlight {
            background: linear-gradient(135deg, #48bb78, #38a169);
            color: white;
        }

        .sidebar-card.job-highlight h3 {
            color: white;
        }

        .sidebar-card.discord-highlight {
            background: var(--discord-color);
            color: white;
        }

        .sidebar-card.discord-highlight h3 {
            color: white;
        }

        .info-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border-left: 4px solid var(--accent-color);
            position: relative;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(49, 130, 206, 0.02), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        }

        .info-card:hover::before {
            opacity: 1;
        }

        /* Special dark-border cards for department introductions */
        .info-card.dark-border {
            border-left: 4px solid var(--dark-text);
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        }

        .info-card.dark-border::before {
            background: linear-gradient(135deg, rgba(45, 55, 72, 0.02), transparent);
        }

        .info-card.dark-border:hover {
            border-left-color: var(--primary-color);
        }

        .info-card h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .leadership-card {
            display: flex;
            gap: 2rem;
            align-items: center;
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 10px;
        }

        .leader-photo {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            flex-shrink: 0;
        }

        .leader-info h4 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .leader-title {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .task-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .task-item {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .task-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .task-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
            display: block;
        }

        .task-item h4 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 1rem;
            background: var(--light-bg);
            margin-bottom: 0.5rem;
            border-radius: 8px;
            position: relative;
            padding-left: 2.5rem;
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 1rem;
            color: var(--success-color);
            font-weight: bold;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            text-align: center;
        }

        .stat-item {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 10px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-color);
            display: block;
        }

        .stat-label {
            color: var(--light-text);
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        .apply-button {
            background: white;
            color: var(--primary-color);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 1rem;
            text-align: center;
            width: 100%;
        }

        .apply-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .mini-stats {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mini-stat {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem;
            background: white;
            border-radius: 8px;
        }

        .mini-stat-number {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--accent-color);
        }

        .mini-stat-label {
            font-size: 0.9rem;
            color: var(--light-text);
        }

        /* Additional styles for specific pages */
        .principles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .principle-item {
            text-align: center;
            padding: 1.5rem;
            background: var(--light-bg);
            border-radius: 10px;
        }

        .principle-item h4 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .court-types {
            display: grid;
            gap: 1.5rem;
        }

        .court-card {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 3px solid var(--accent-color);
        }

        .court-card h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .court-card ul {
            margin-left: 1.5rem;
            color: var(--dark-text);
        }

        .schedule-notice {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
        }

        .process-timeline {
            display: grid;
            gap: 1.5rem;
            position: relative;
            padding-left: 2rem;
        }

        .timeline-item {
            display: flex;
            gap: 1.5rem;
            align-items: start;
        }

        .timeline-number {
            width: 40px;
            height: 40px;
            background: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

        .timeline-content h4 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .facility-grid {
            display: grid;
            gap: 1.5rem;
        }

        .facility-card {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 3px solid var(--accent-color);
        }

        .facility-stats {
            display: flex;
            gap: 1rem;
            margin: 1rem 0;
        }

        .facility-stats span {
            background: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--dark-text);
        }

        .security-features {
            display: grid;
            gap: 1.5rem;
        }

        .security-item {
            display: flex;
            gap: 1.5rem;
            align-items: start;
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 10px;
        }

        .security-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .service-item {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 10px;
            border-top: 3px solid var(--accent-color);
        }

        .service-item h4 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .career-paths {
            display: grid;
            gap: 1.5rem;
        }

        .career-path {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 10px;
        }

        .career-path h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .career-progression {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            color: var(--dark-text);
        }

        .training-programs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .training-item {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 3px solid var(--success-color);
        }

        .job-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .job-item {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .job-item h4 {
            color: var(--primary-color);
            font-size: 1rem;
        }

        .job-tag {
            background: var(--accent-color);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        /* Contact Page Styles */
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
        }

        .contact-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .contact-method-card {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-method-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .contact-method-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact-form {
            display: grid;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .form-group {
            display: grid;
            gap: 0.5rem;
        }

        .form-group label {
            color: var(--primary-color);
            font-weight: 600;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 0.8rem;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        .submit-button {
            background: var(--warning-color);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .map-placeholder {
            height: 400px;
            background: var(--light-bg);
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border: 2px dashed #cbd5e0;
            transition: all 0.3s ease;
        }

        .map-placeholder:hover {
            border-color: var(--accent-color);
            background: #f8fafc;
        }

        .map-overlay {
            text-align: center;
            padding: 2rem;
        }

        .map-overlay span {
            font-size: 4rem;
            display: block;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        .map-overlay p {
            color: var(--light-text);
            margin: 0.5rem 0;
        }

        /* Bundesadler Image Placeholder - removed as it's now in header */

        .contact-person {
            padding: 1rem;
            background: white;
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .contact-person h4 {
            color: var(--primary-color);
            margin-bottom: 0.3rem;
        }

        .faq-item {
            margin-bottom: 1.5rem;
        }

        .faq-item h4 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .discord-button-large {
            background: white;
            color: var(--discord-color);
            padding: 1rem;
            border-radius: 50px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .discord-button-large:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 10001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
            margin: 2rem;
            position: relative;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 2rem;
            cursor: pointer;
            color: var(--light-text);
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: var(--primary-color);
        }

        @media (max-width: 768px) {
            .content-grid,
            .contact-layout {
                grid-template-columns: 1fr;
            }

            .page-title {
                font-size: 2rem;
            }

            .task-grid,
            .training-programs {
                grid-template-columns: 1fr;
            }
        }
    


/* Performance: non-visual optimization */
.page-container{content-visibility:auto;contain-intrinsic-size:auto 1200px;}


/* auto-patch: remove white separator under header */
header, .site-header, .nav, .navbar, .nav-container { border-bottom: none !important; box-shadow: none !important; }
.separator, .header-separator, .nav-separator, .top-divider, hr { display: none !important; }
body{ margin:0; }


/* --- Hotfix 2025-08-13: weiße Leiste unter der Navi entfernen --- */
.page-wrapper { background: transparent !important; padding-top: 0 !important; }
