        :root {
            --primary-color: #1a5490;
        }

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

        @import url('https://fonts.googleapis.com/css2?family=DejaVu+Sans:wght@400;600;700&display=swap');

        body {
            font-family: 'DejaVu Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
            padding-top: 70px;
            padding-bottom: 70px;
        }

        /* Header Styles - Always visible at top */
        .site-header {
            background: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            height: 70px;
            overflow: visible;
            transition: box-shadow 0.3s ease;
        }

        .site-header.scrolled {
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .main-navigation {
            padding: 0.35rem 0;
            height: 100%;
        }

        .nav-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0.35rem 0;
            height: 100%;
        }

        .logo-section {
            text-align: center;
        }

        .logo-section a {
            text-decoration: none;
            color: var(--primary-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .logo-section h1 {
            margin: 0;
            font-size: 1.3rem;
            font-weight: bold;
            background: linear-gradient(135deg, #1a5490, #2a6bad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 0.5px;
            line-height: 1.2;
        }

        .tagline {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.7rem;
            margin-top: 0.15rem;
            line-height: 1;
        }

        .tagline-word {
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            font-size: 0.65rem;
            line-height: 1.1;
        }

        .tagline-word.integration { color: #1a5490; }
        .tagline-word.chancen { color: #2a6bad; }
        .tagline-word.diversity { color: #f39c12; }
        .tagline-word.support {
            color: #27ae60;
            display: flex;
            align-items: center;
            gap: 0.15rem;
        }

        .degree-360 {
            font-weight: bold;
            font-size: 0.8rem;
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tagline-separator {
            color: #cbd5e0;
            font-size: 0.8rem;
        }

        /* Footer Styles - Always visible at bottom */
        .site-footer {
            background: #2c3e50;
            color: #ecf0f1;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 998;
            padding: 10px 0;
            text-align: center;
            font-size: 0.8rem;
            box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
        }

        .footer-content p {
            margin: 2px 0;
            line-height: 1.4;
        }

        /* Main Content */
        .container {
            max-width: 900px;
            margin: 20px auto;
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

        .document-header {
            text-align: center;
            padding: 40px 0;
            border-bottom: 3px solid #0066cc;
            margin-bottom: 40px;
        }

        .document-header h2 {
            color: #0066cc;
            font-size: 2.5em;
            margin-bottom: 10px;
            border-bottom: none;
            padding-bottom: 0;
        }

        .subtitle {
            font-size: 1.2em;
            color: #666;
            margin: 10px 0;
        }

        .version-info {
            font-style: italic;
            color: #888;
            margin-top: 130px;
        }

        h2 {
            color: #0066cc;
            font-size: 1.8em;
            margin-top: 40px;
            margin-bottom: 80px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e0e0e0;
        }

        h3 {
            color: #333;
            font-size: 1.3em;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        h4 {
            color: #444;
            font-size: 1.1em;
            margin-top: 130px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        p {
            margin-bottom: 15px;
            text-align: justify;
        }

        ul {
            margin-left: 30px;
            margin-bottom: 15px;
        }

        li {
            margin-bottom: 8px;
        }

        .highlight {
            background-color: #f0f7ff;
            padding: 20px;
            border-left: 4px solid #0066cc;
            margin: 20px 0;
            font-style: italic;
        }

        .section {
            margin-bottom: 30px;
        }

        /* Language Selector Styles */
        .language-globe {
            position: fixed;
            top: 28vh;
            right: 30px;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: white;
            border: 2px solid #1a5490;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(26, 84, 144, 0.3);
            transition: all 0.3s ease;
            z-index: 9999;
        }

        .language-globe:hover {
            transform: scale(1.15);
            box-shadow: 0 6px 20px rgba(26, 84, 144, 0.5);
            border-color: #2a6bad;
        }

        .language-globe:hover svg {
            stroke: #2a6bad;
            transform: rotate(180deg);
        }

        .language-globe svg {
            transition: all 0.5s ease;
        }

        .language-globe.hidden {
            opacity: 0;
            pointer-events: none;
            transform: translateY(-50%) translateX(100px);
        }

        .dark-mode-toggle.hidden,
        .scroll-to-top.hidden {
            opacity: 0;
            pointer-events: none;
            transform: translateX(100px);
        }

        .language-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }

        .language-modal.active {
            display: flex !important;
        }

        .language-modal-content {
            background: white;
            border-radius: 20px;
            padding: 0;
            max-width: 700px;
            width: 90%;
            max-height: 85vh;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .language-modal-body {
            padding: 40px;
            max-height: 85vh;
            overflow-y: auto;
            border-radius: 20px;
        }

        .language-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            justify-items: center;
        }

        .language-option {
            background: transparent;
            border: 3px solid transparent;
            border-radius: 12px;
            padding: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 120px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .language-option:hover {
            border-color: #1a5490;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 20px rgba(26, 84, 144, 0.3);
            background: rgba(26, 84, 144, 0.05);
        }

        .language-option.active {
            border-color: #27ae60;
            box-shadow: 0 8px 20px rgba(39, 174, 96, 0.4);
            background: rgba(39, 174, 96, 0.1);
        }

        .language-option .flag-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }


        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 80px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: white;
            border: 2px solid #1a5490;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(26, 84, 144, 0.3);
            transition: all 0.3s ease;
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
        }

        .scroll-to-top.visible {
            opacity: 1;
            pointer-events: all;
        }

        .scroll-to-top:hover {
            transform: scale(1.15) translateY(-5px);
            box-shadow: 0 6px 20px rgba(26, 84, 144, 0.5);
            border-color: #2a6bad;
        }

        .scroll-to-top:hover svg {
            stroke: #2a6bad;
        }


        /* Home Button - Left Side */
        .home-button { display: none !important; /* In header */
            position: fixed;
            top: 130px;
            left: 30px;
            width: 60px;
            height: 60px;
            background: white;
            border: 2px solid #1a5490;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(26, 84, 144, 0.3);
            transition: all 0.3s ease;
            z-index: 9999;
        }

        .home-button:hover {
            transform: scale(1.15);
            box-shadow: 0 6px 20px rgba(26, 84, 144, 0.5);
            border-color: #2a6bad;
        }

        .home-button:hover svg {
            stroke: #2a6bad;
        }

        .home-button.hidden {
            opacity: 0;
            pointer-events: none;
            transform: translateX(-100px);
        }

        .scroll-to-top svg {
            transition: all 0.3s ease;
        }

        .scroll-to-top.hidden {
            transform: translateX(100px);
        }


        /* Dark Mode Toggle Button */
        .dark-mode-toggle { display: none !important; /* In header */
            position: fixed;
            top: 130px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: white;
            border: 2px solid #1a5490;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(26, 84, 144, 0.3);
            transition: all 0.3s ease;
            z-index: 9999;
        }

        .dark-mode-toggle:hover {
            transform: scale(1.15);
            box-shadow: 0 6px 20px rgba(26, 84, 144, 0.5);
            border-color: #2a6bad;
        }

        .dark-mode-icon {
            transition: all 0.3s ease;
        }

        /* Dark Mode Styles */
        body.dark-mode {
            background-color: #1a1a1a;
            color: #e0e0e0;
        }

        body.dark-mode .container {
            background-color: #2c2c2c;
            box-shadow: 0 0 10px rgba(255,255,255,0.1);
        }

        body.dark-mode .site-header {
            background: #2c2c2c;
            box-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        body.dark-mode h2,
        body.dark-mode h3,
        body.dark-mode h4 {
            color: #64b5f6;
        }

        body.dark-mode p,
        body.dark-mode li {
            color: #d0d0d0;
        }

        body.dark-mode .highlight {
            background-color: #1e3a5f;
            border-left-color: #64b5f6;
        }

        /* Quick Menu, Live Chat, Contact, Scroll Top */
        .quick-menu-button, .live-chat-button, .contact-button, .scroll-to-top {
            position: fixed;
            width: 60px;
            height: 60px;
            background: white;
            border: 2px solid #1a5490;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(26, 84, 144, 0.3);
            transition: all 0.3s ease;
            z-index: 9999;
        }

        .quick-menu-button { top: 28vh; left: 30px; transform: translateY(-50%); }
        .contact-methods-button { top: 56vh; right: 30px; transform: translateY(-50%); }
        .contact-button { display: none; /* Removed */ }
        .scroll-to-top { bottom: 120px; right: 30px; opacity: 0; pointer-events: none; }
        
        .scroll-to-top.visible { opacity: 1; pointer-events: all; }

        .quick-menu-button:hover, .live-chat-button:hover, 
        .contact-button:hover, .scroll-to-top:hover {
            transform: scale(1.15);
            box-shadow: 0 6px 20px rgba(26, 84, 144, 0.5);
            border-color: #2a6bad;
        }

        .quick-menu-button.hidden { opacity: 0; transform: translateY(-50%) translateX(-100px); }
        .live-chat-button.hidden { opacity: 0; transform: translateY(-50%) translateX(100px); }
        .contact-button.hidden, .scroll-to-top.hidden { opacity: 0; transform: translateX(100px); }

        /* Quick Menu Modal */
        .quick-menu-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.7);
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }
        .quick-menu-modal.active { display: flex !important; }
        .quick-menu-content {
            background: white;
            border-radius: 20px;
            padding: 30px;
            max-width: 400px;
        }
        .quick-menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .quick-menu-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 25px;
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 15px;
            text-decoration: none;
            gap: 10px;
        }
        .quick-menu-item:hover {
            background: linear-gradient(135deg, #1a5490, #2a6bad);
            transform: translateY(-5px);
        }
        .quick-menu-item:hover svg { stroke: white !important; }
        .quick-menu-item span { font-size: 0.85rem; font-weight: 600; color: #333; }
        .quick-menu-item:hover span { color: white; }

        /* Dark Mode - Floating Buttons */
        body.dark-mode .quick-menu-button,
        body.dark-mode .live-chat-button,
        body.dark-mode .language-globe,
        body.dark-mode .scroll-to-top {
            background: #2c2c2c;
            border-color: #64b5f6;
        }

        body.dark-mode .quick-menu-button svg,
        body.dark-mode .live-chat-button svg,
        body.dark-mode .language-globe svg,
        body.dark-mode .scroll-to-top svg {
            stroke: #64b5f6 !important;
        }

        body.dark-mode .quick-menu-button:hover,
        body.dark-mode .live-chat-button:hover,
        body.dark-mode .language-globe:hover,
        body.dark-mode .scroll-to-top:hover {
            background: #3a3a3a;
            border-color: #90caf9;
        }

        body.dark-mode .quick-menu-button:hover svg,
        body.dark-mode .live-chat-button:hover svg,
        body.dark-mode .language-globe:hover svg,
        body.dark-mode .scroll-to-top:hover svg {
            stroke: #90caf9 !important;
        }

        /* Contact Methods Button & Modal */
        .contact-methods-button {
            position: fixed;
            top: 56vh;
            right: 30px;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: white;
            border: 2px solid #1a5490;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(26, 84, 144, 0.3);
            transition: all 0.3s ease;
            z-index: 9999;
        }

        .contact-methods-button:hover {
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 6px 20px rgba(26, 84, 144, 0.5);
        }

        .contact-methods-button.hidden {
            opacity: 0;
            transform: translateY(-50%) translateX(100px);
        }

        body.dark-mode .contact-methods-button {
            background: #2c2c2c;
            border-color: #64b5f6;
        }

        body.dark-mode .contact-methods-button svg {
            stroke: #64b5f6 !important;
        }

        .contact-methods-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }

        .contact-methods-modal.active {
            display: flex !important;
        }

        .contact-methods-content {
            background: white;
            border-radius: 20px;
            padding: 35px;
            max-width: 450px;
            animation: modalSlideIn 0.3s ease-out;
        }

        .contact-methods-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .contact-method-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 15px;
            text-decoration: none;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .contact-method-item:hover {
            background: linear-gradient(135deg, #1a5490, #2a6bad);
            border-color: #1a5490;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(26, 84, 144, 0.3);
        }

        .contact-method-item:hover svg {
            stroke: white !important;
        }

        .contact-method-item span {
            font-size: 0.95rem;
            font-weight: 600;
            color: #333;
        }

        .contact-method-item:hover span {
            color: white;
        }

        /* Dark Mode pentru Modale */
        body.dark-mode .language-modal-content,
        body.dark-mode .contact-methods-content,
        body.dark-mode .quick-menu-content {
            background: #1e1e1e;
            color: #e0e0e0;
        }

        body.dark-mode .language-option,
        body.dark-mode .contact-method-item,
        body.dark-mode .quick-menu-item {
            background: #2d2d2d;
            border-color: #3a3a3a;
            color: #e0e0e0;
        }

        body.dark-mode .language-option:hover,
        body.dark-mode .contact-method-item:hover,
        body.dark-mode .quick-menu-item:hover {
            background: linear-gradient(135deg, #1a5490, #2a6bad);
            border-color: #64b5f6;
            color: white;
        }

        body.dark-mode .language-option span,
        body.dark-mode .contact-method-item span,
        body.dark-mode .quick-menu-item span {
            color: #e0e0e0;
        }

        body.dark-mode .language-option:hover span,
        body.dark-mode .contact-method-item:hover span,
        body.dark-mode .quick-menu-item:hover span {
            color: white;
        }

        body.dark-mode .contact-methods-content h3 {
            color: #64b5f6;
        }
        @media print {
            body {
                background-color: white;
                padding-top: 0;
                padding-bottom: 0;
            }
            .site-header, .site-footer {
                position: static;
            }
            .container {
                box-shadow: none;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 80px;
                padding-bottom: 80px;
            }
            .container {
                padding: 10px;
                margin: 10px;
            }
            .document-header h2 {
                font-size: 2em;
            }
            h2 {
                font-size: 1.5em;
            }
            .logo-section h1 {
                font-size: 1.1rem;
            }
            .tagline {
                flex-wrap: wrap;
                font-size: 0.6rem;
                gap: 0.2rem;
            }
            .tagline-separator {
                display: none;
            }
            .site-footer {
                font-size: 0.7rem;
                padding: 8px 0;
            }
        }
    
        /* Hide extra Satzung sections for Impressum */
    </style>

/* Hide empty translation elements */
[data-translate-key]:empty { 
    display: none !important; 
}
[data-translate-key]:empty + br { 
    display: none !important; 
}
li[data-translate-key]:empty {
    display: none !important;
}
p[data-translate-key]:empty {
    display: none !important;
}
h2[data-translate-key]:empty {
    display: none !important;
}
h3[data-translate-key]:empty {
    display: none !important;
}
