        :root {
            --primary: #0d47a1;
            --secondary: #0d47a1;
            --accent: #d32f2f;
            --dark: #212121;
            --light: #f5f5f5;
            --text: #263238;
            --gray: #607d8b;
        }
        
        body { 
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; 
            line-height: 1.6;
            margin: 0;
            color: var(--text);
            font-weight: 400;
        }
        
        /* Modern Navigation */
        .modern-nav {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0,0,0,0.1);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .modern-nav .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 600;
            color: var(--text);
        }
        
        .brand-text {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .nav-phone .phone-link {
            background: var(--primary);
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .nav-phone .phone-link:hover {
            background: #0a3d91;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link {
            color: var(--text);
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }
        
        .phone-mobile {
            background: var(--primary);
            color: white !important;
            border-radius: 8px;
            margin: 0.5rem 0;
        }
        
        /* Modern Hero */
        .modern-hero {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            padding: 130px 0 50px;
            position: relative;
        }
        
        /* Emergency Tag */
.emergency-tag {
    display: inline-flex
;
    align-items: center;
    background: #ffeed3;
    color: #0b7e2a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid #0b7e2a;
}
        
        .emergency-dot {
            width: 8px;
            height: 8px;
            background: #02ff00;
            border-radius: 50%;
            margin-right: 0.5rem;
            animation: pulse 2s infinite;
        }
        
        /* Hero Content */
        .hero-headline {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            color: var(--dark);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }
        
        .hero-description {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }
        
        /* Modern Buttons */
        .hero-actions {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        
        .btn-primary-modern {
            background: var(--primary);
            color: white;
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(13, 71, 161, 0.25);
            border: none;
        }
        
        .btn-primary-modern:hover {
            background: #0a3d91;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(13, 71, 161, 0.35);
            color: white;
        }
        
        .btn-primary-modern i {
            font-size: 1.2rem;
        }
        
        .btn-text {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .btn-phone {
            font-size: 1.1rem;
            font-weight: 700;
        }
        
        .btn-secondary-modern {
            background: white;
            color: var(--text);
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            border: 2px solid #e0e0e0;
        }
        
        .btn-secondary-modern:hover {
            background: var(--light);
            border-color: #bdbdbd;
            transform: translateY(-1px);
            color: var(--text);
        }
        
        /* Trust Elements */
        .trust-elements {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .trust-elements .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray);
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .trust-elements .trust-item i {
            color: #ffc107;
            font-size: 1rem;
        }
        
        /* Hero Visual */
        .hero-visual {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            gap: 2rem;
        }
        
        .hero-main-image {
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            transition: transform 0.3s ease;
        }
        
       
        
        .hero-info-box {
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            max-width: 400px;
            width: 100%;
            text-align: center;
            position: relative;
            transform: translateY(-30px);
            z-index: 10;
        }
        
        .info-box-image {
            width: 30%;
            max-width: 350px;
            height: auto;
            border-radius: 10px;
            margin: 0 auto;
            object-fit: contain;
        }
        
        .info-box-highlight {
            background: #e8f5e9;
            color: var(--secondary);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        /* Service Cards */
        .service-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }
        
        /* Features Section */
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        /* About Sections */
        .about-section {
            padding: 4rem 0;
        }
        
        .about-section h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }
        
     
        
        /* Experience Badge */
        .experience-badge {
            position: absolute;
            bottom: 250px;
            right: 80px;
            background-color: var(--primary);
            color: white;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .experience-badge h3 {
            font-size: 2.5rem;
            margin-bottom: 0;
        }
        
        .experience-badge p {
            margin-bottom: 0;
            font-size: 0.9rem;
        }
        
        /* Emergency Service Box */
        .emergency-service-box {
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(211, 47, 47, 0.15);
        }
        
        .emergency-service-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../assets/bilder/background-24-stunden-service.webp') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
            z-index: 0;
        }
        
        .emergency-service-content {
            position: relative;
            z-index: 1;
        }
        
        .emergency-service-box h2 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-size: 2.2rem;
        }
        
        .emergency-service-box p {
            color: var(--dark);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .emergency-highlight {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .emergency-highlight i {
            font-size: 2rem;
            color: var(--accent);
        }
        
        .emergency-highlight-text {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark);
        }
        
        /* Contact Section */
        .contact-info-box {
            background-color: var(--primary);
            color: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .contact-info-box h2 {
            color: white;
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .contact-item i {
            font-size: 1.5rem;
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .contact-item h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: white;
        }
        
        .contact-item p {
            margin-bottom: 0;
        }
        
        /* Mobile Call Button */
        .mobile-call-btn {
            position: fixed;
            bottom: 50px;
            right: 20px;
            width: 70px;
            height: 70px;
            background-color: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.8rem;
            box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
            z-index: 1000;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .mobile-call-btn:hover {
            transform: scale(1.1);
            background-color: #c62828;
        }
        
        .mobile-call-btn .btn-text {
            position: absolute;
            bottom: -30px;
            right: 0;
            background-color: var(--accent);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            white-space: nowrap;
        }
        
        /* Sticky CTA */
        .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--primary);
            padding: 1rem;
            text-align: center;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        }
        
        .sticky-cta a {
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            color: white;
            padding: 20px 0;
            z-index: 1000;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .cookie-banner .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .cookie-text {
            flex: 1;
            min-width: 300px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background-color: var(--secondary);
            color: white;
        }
        
        .cookie-accept:hover {
            background-color: #00695c;
        }
        
        .cookie-decline {
            background-color: transparent;
            color: white;
            border: 1px solid white;
        }
        
        .cookie-decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 70px 0 0;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        }
        
        .footer-column p {
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #bbb;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-contact i {
            color: var(--secondary);
            margin-right: 10px;
        }
        
        .footer-contact p {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .footer-contact p span {
            margin-left: 10px;
        }
        
        .footer-social {
            margin-top: 20px;
        }
        
        .footer-social a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background-color: var(--secondary);
            color: white;
        }
        
        .footer-bottom {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            text-align: center;
        }
        
        .footer-bottom p {
            margin-bottom: 0;
            font-size: 0.9rem;
            color: #bbb;
        }
        
        .footer-bottom a {
            color: var(--secondary);
        }
        
        /* Animations */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            body {
                padding-top: 40px;
            }
            .mobile-call-btn {
                display: none;
            }
             
            .experience-badge{
                position: absolute;
    bottom: 200px;
    right: 10px;
    background-color: var(--primary);
    color: white;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);



            }
            
            .modern-hero {
                padding: 60px 0 30px;
            }
            
            .hero-headline {
                font-size: 2.2rem;
                margin-bottom: 1rem;
            }
            
            .hero-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            
            .hero-actions {
                flex-direction: column;
                gap: 0.75rem;
                margin-bottom: 2rem;
            }
            
            .btn-primary-modern,
            .btn-secondary-modern {
                justify-content: center;
                text-align: center;
                width: 100%;
                padding: 0.875rem 1.5rem;
            }
            
            .trust-elements {
                justify-content: center;
                gap: 0.75rem;
                margin-bottom: 1.5rem;
            }
            
            .trust-elements .trust-item {
                font-size: 0.8rem;
            }
            
            .hero-visual {
                margin-top: 2rem;
                gap: 1.5rem;
            }
            
            .hero-main-image {
                max-width: 100%;
                border-radius: 15px;
            }
            
            .hero-info-box {
                border-radius: 15px;
                transform: translateY(-20px);
                max-width: 100%;
            }
            
            .info-box-image {
                max-width: 100%;
                border-radius: 8px;
            }
            
            .mobile-call-btn {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .mobile-call-btn .btn-text {
                font-size: 0.8rem;
                padding: 4px 12px;
            }
        }
        
        @media (max-width: 480px) {
            .hero-headline {
                font-size: 1.8rem;
            }
               
            .hero-description {
                font-size: 0.95rem;
            }
            
            .trust-elements .trust-item {
                font-size: 0.75rem;
            }
            
            .emergency-tag {
                font-size: 0.8rem;
                padding: 0.375rem 0.75rem;
            }
            
            .hero-info-box {
                padding: 0.75rem;
                transform: translateY(-15px);
            }
            
            .info-box-image {
                max-width: 100%;
                border-radius: 6px;
            }
            
            .mobile-call-btn {
                bottom: 15px;
                right: 15px;
                width: 55px;
                height: 55px;
                font-size: 1.3rem;
                display: none;
            }
          
 .modern-hero {
    background-color: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
 }
        }
.feature-box {
  background: #fff;
  border-radius: 1rem;
  padding: 20px 15px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fw-bold {
}
.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgb(1 104 167) !important;
}

/* Ziel: nur die Icon+Titel-Zeile in deinen Karten zentrieren */
.row.g-4 .card-body .d-flex.align-items-center.mb-3{
  display: flex !important;          /* Sicherheit */
  justify-content: center !important;/* horizontal in die Mitte */
  width: 100%;                       /* damit das Zentrieren wirkt */
  gap: .75rem;                       /* sauberer Abstand (me-3 kann bleiben) */
  text-align: center;                /* Text mittig, falls nur H5 übrig bleibt */
}

/* Icon-Kreis sauber zentrieren */
.row.g-4 .card-body .d-flex.align-items-center.mb-3 .icon-circle{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Überschrift bündig zur Icon-Höhe */
.row.g-4 .card-body .d-flex.align-items-center.mb-3 h5{
  margin: 0;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .mobile-call-btn {
    display: none;
  }
}