:root {
            --primary-color: #2a9d8f;
            --secondary-color: #264653;
            --accent-color: #e9c46a;
            --success-color: #4CAF50;
            --soft-bg: #f9f7f3;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            padding-top: 76px; /* Für fixed navbar */
            background-color: var(--soft-bg);
        }
        
        .license-badge {
            position: fixed;
            top: 10px;
            right: 10px;
            background: var(--success-color);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8em;
            z-index: 1001;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
            margin-top: -76px;
        }
        
        .service-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            background: white;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 30px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 50px;
        }
        
        .btn-primary:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
        }
        
        .btn-outline-primary {
            border-color: var(--primary-color);
            color: var(--primary-color);
            border-radius: 50px;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        .section-title {
            color: var(--secondary-color);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }
        
        .section-title.text-start:after {
            left: 0;
            transform: none;
        }
        
        .why-us-item {
            padding: 20px;
            border-radius: 12px;
            background-color: white;
            height: 100%;
            border-left: 4px solid var(--primary-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .why-us-item:hover {
            transform: translateX(5px);
        }
        
        .price-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            border: 1px solid #eee;
            height: 100%;
        }
        
        .price-card:hover {
            transform: scale(1.03);
        }
        
        .price-card.popular {
            border: 3px solid var(--primary-color);
            position: relative;
        }
        
        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-color);
            color: white;
            padding: 5px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .price small {
            font-size: 1rem;
            color: #999;
        }
        
        footer {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .contact-info i {
            color: var(--accent-color);
            margin-right: 10px;
        }
        
        .testimonial-card {
            background-color: white;
            border-left: 4px solid var(--primary-color);
            padding: 25px;
            border-radius: 0 15px 15px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            height: 100%;
            transition: transform 0.3s;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
        
        .gallery-img {
            height: 250px;
            object-fit: cover;
            width: 100%;
            border-radius: 15px;
            transition: transform 0.5s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .gallery-img:hover {
            transform: scale(1.05);
        }
        
        .system-info {
            display: none; /* Nur für Admin sichtbar */
        }
        
        /* Navigation */
        .navbar {
            background-color: white !important;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        
        .navbar-brand {
            color: var(--primary-color) !important;
            font-weight: 700;
            font-size: 1.6rem;
        }
        
        .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 5px;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }
        
        /* Stats Counter */
        .stats-counter {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .stats-label {
            color: #666;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .step-item {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            height: 100%;
            position: relative;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 20px;
            padding: 50px;
            margin: 50px 0;
        }
        
        .feature-badge {
            background: var(--accent-color);
            color: var(--secondary-color);
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
        }
        
        .cleaning-checklist {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        /* Footer Styling */
        .footer-datetime {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px dashed rgba(255,255,255,0.2);
            display: inline-block;
        }
        
        .footer-credit {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.7);
            letter-spacing: 0.5px;
        }
        
        .footer-credit i {
            color: #ff6b6b;
            margin: 0 3px;
        }
        
        .footer-credit a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
        }
        
        .footer-credit a:hover {
            text-decoration: underline;
        }

        /* Zusätzliche mobile Navbar Optimierungen */
        @media (max-width: 991.98px) {
            .navbar {
                padding: 10px 0 !important;
            }
            
            .navbar-brand {
                font-size: 1.2rem !important;
            }
            
            .navbar-brand i {
                font-size: 1.1rem;
            }
            
            .navbar-toggler {
                border: none;
                padding: 8px 10px;
                margin-right: 0;
            }
            
            .navbar-toggler:focus {
                box-shadow: 0 0 0 2px rgba(42, 157, 143, 0.3);
                outline: none;
            }
            
            .navbar-collapse {
                background: white;
                border-radius: 15px;
                padding: 20px;
                margin-top: 15px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                max-height: 80vh;
                overflow-y: auto;
            }
            
            .navbar-nav {
                margin-bottom: 15px;
            }
            
            .nav-item {
                margin: 5px 0;
            }
            
            .nav-link {
                padding: 12px 15px !important;
                border-radius: 10px;
                transition: all 0.3s ease;
            }
            
            .nav-link:hover, .nav-link.active {
                background-color: rgba(42, 157, 143, 0.1);
            }
            
            .btn-primary.ms-lg-3 {
                width: 100%;
                text-align: center;
                margin-top: 10px !important;
                padding: 12px !important;
            }
        }
        
        /* Für sehr kleine Geräte */
        @media (max-width: 480px) {
            .navbar-brand {
                font-size: 1rem !important;
                max-width: 60%;
                white-space: normal;
                line-height: 1.3;
            }
            
            .navbar-brand i {
                font-size: 0.9rem;
            }
            
            .navbar-toggler {
                padding: 6px 8px;
            }
        }
        
        /* Verhindert, dass der Header beim Scrollen zu klein wird */
        @media (max-width: 991.98px) {
            body {
                padding-top: 70px !important;
            }
        }