
        body { margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background: #050505; color: #ffffff; line-height: 1.5; overflow: hidden; height: 100vh; display: flex; flex-direction: column; }
        #tsparticles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
        
        nav { display: flex; justify-content: space-between; padding: 40px; position: relative; z-index: 1; }
        .logo-img { height: 40px; width: auto; }
        .menu { display: flex; gap: 30px; }
        .menu a { color: #fff; text-decoration: none; font-size: 0.9rem; cursor: pointer; transition: 0.3s; text-transform: uppercase; }
        .menu a:hover { color: #00aaff; }
        
        .hero { padding: 150px 40px; position: relative; z-index: 1; flex: 1; }
        h1 { font-size: clamp(3rem, 10vw, 8rem); line-height: 0.9; margin: 0; letter-spacing: -2px; color: #ffffff; font-weight: 700; }
        
        /* Modal Hintergrund */
        .modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 100; align-items: center; justify-content: center; opacity: 1; transition: opacity 0.3s ease; }
        
        /* Pop-Up Animation (Wie früher bei Flash) */
        @keyframes popIn {
            0% { transform: scale(0.7); opacity: 0; }
            80% { transform: scale(1.02); opacity: 1; }
            100% { transform: scale(1); opacity: 1; }
        }
        @keyframes popOut {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(0.8); opacity: 0; }
        }
        
        .modal-content { background: #080808; padding: 60px; border: 1px solid #333; max-width: 1000px; width: 90%; max-height: 85vh; overflow-y: auto; color: #fff; position: relative; display: flex; gap: 40px; transform: scale(1); opacity: 1; }
        .modal-content.anim-in { animation: popIn 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
        .modal-content.anim-out { animation: popOut 0.2s forwards; }
        
        @media (max-width: 768px) { .modal-content { flex-direction: column; } #modal-slideshow { width: 100% !important; } }
        
        .close { position: absolute; top: 20px; right: 20px; cursor: pointer; font-size: 2rem; z-index: 20; transition: 0.3s; }
        .close:hover { color: #00aaff; }
        ul { list-style: none; padding: 0; }
        ul li { margin-bottom: 10px; color: #00aaff; }

        /* Slideshow Styles */
        #modal-slideshow { position: relative; width: 450px; height: 350px; flex-shrink: 0; border: 1px solid #333; border-radius: 4px; overflow: hidden; display: none; background: #000; }
        #slideshow-img { width: 100%; height: 100%; object-fit: cover; }
        .slide-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.6); color: #fff; border: none; padding: 15px 10px; cursor: pointer; font-size: 1.5rem; transition: 0.3s; z-index: 5; }
        .slide-btn:hover { background: #00aaff; }
        .slide-prev { left: 0; border-radius: 0 4px 4px 0; }
        .slide-next { right: 0; border-radius: 4px 0 0 4px; }

       footer { 
    padding: 10px 40px; /* Weniger Platz im Footer selbst */
    margin-top: -30px;  /* Zieht den Footer aktiv nach oben */
    position: relative; 
    z-index: 1; 
    display: flex; 
    justify-content: space-around; 
    color: #888; 
    font-size: 0.8rem; 
    text-align: left; 
}
	   .footer-col { width: 25%; }
        .footer-col h4 { color: #fff; margin-bottom: 10px; font-size: 0.9rem; }
        .phone-icon { color: #ffffff !important; margin-right: 5px; font-size: 1.1rem; font-style: normal; }
        .imprint-link { color: #888; text-decoration: none; display: block; margin-top: 10px; cursor: pointer; }
        .imprint-link:hover { color: #fff; }
		/* Handy-Optimierung */
@media (max-width: 768px) {
    /* WICHTIG: align-items: center verhindert, dass das Logo in die Breite gezogen wird */
    nav { flex-direction: column; padding: 20px; gap: 20px; align-items: center; } 
    
    body { height: auto; overflow-y: auto; }
    .menu { flex-wrap: wrap; justify-content: center; gap: 15px; }
    h1 { font-size: 3rem !important; }
    .modal-content { flex-direction: column; }
    #modal-slideshow { width: 100%; }
    footer { flex-direction: column; text-align: center; gap: 15px; }
    .footer-col { width: 100%; }
}
    