      	   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
			 word-wrap: break-word;        /* NEUE ZEILE */
			overflow-wrap: break-word;    /* NEUE ZEILE */
        }



        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
			word-break: break-word; 
        }

        header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
		
		.responsive-logo {
		width: 80%; /* Nimmt die volle Breite des Containers ein */
		height: auto; /* Höhe passt sich automatisch an */
		max-width: 90%; /* Verhindert Überlauf auf kleinen Bildschirmen */
		}
		
		
		
        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .nav-links a:hover {
            opacity: 0.8;
        }

        .hero {
            background-image: url("risk_logo_transparent.png"); /* Pfad zu deinem Bild */
			opacity: 100%;
			background-size: contain;
			background-position: center;
			background-repeat: no-repeat; /* Verhindert das Wiederholen des Bildes */
			background-position: center;
            
			color: white;
            text-align: center;
            padding: 8rem 4rem;
        }
		
		

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
			color:black;
            animation: fadeInUp 1s ease;
			position: relative; /* Wichtig für z-index */
			z-index: 1; /* Stellt sicher, dass Inhalt über dem Wasserzeichen liegt */
			padding: 20px;
        }

        .hero p {
            font-size: 1.8rem;
			color:black;
            margin-bottom: 2rem;
			font-weight: bold;
            animation: fadeInUp 1s ease 0.2s backwards;
			position: relative; /* Wichtig für z-index */
			z-index: 1; /* Stellt sicher, dass Inhalt über dem Wasserzeichen liegt */
			padding: 20px;
        }

        .cta-button {
            display: inline-block;
            background: #ff6b35;
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        }
		
		.link-ohne-markup {
		color: inherit; /* Nimmt die Farbe des umgebenden Textes an */
		text-decoration: none; /* Entfernt die Unterstreichung */
		/* Optional: Ändere die Farbe, um ihn fast unsichtbar zu machen (wenn gewünscht) */
		/* color: #f0f0f0; /* Beispiel: Weiß auf weißem Hintergrund */
		}

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .services {
            background: #f8f9fa;
        }

        .services h1 {
			hyphens: auto
		}
		
		.services h2, .about h2, .contact h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #1e3c72;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .service-card h3 {
            color: #1e3c72;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #2a5298;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text ul {
            list-style: none;
            margin-top: 1.5rem;
        }

        .about-text li {
            padding: 0.5rem 0;
            padding-left: 2rem;
            position: relative;
        }

        .about-text li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #ff6b35;
            font-weight: bold;
        }

        .ablauf-text li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #ff6b35;
            font-weight: bold;
        }
		
		
		.contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #1e3c72;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2a5298;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-button {
            width: 100%;
            padding: 1rem;
            background: #1e3c72;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-button:hover {
            background: #2a5298;
        }

        footer {
            background: #1e3c72;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: left;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
        }

        .footer-section p, .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }

        .footer-bottom {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        @media (max-width: 768px) {
            .nav-links {
                flex-direction: column;
                gap: 1rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .service-grid {
                grid-template-columns: 1fr;
            }
        }

/* Fix für lange Wörter - verhindert Überlauf beim Zoomen */
.service-card,
.content-card {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto; /* Automatische Silbentrennung für Deutsch */
}

.service-card h2,
.service-card h3,
.content-card h2,
.content-card h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.service-card p,
.content-card p,
.service-card li,
.content-card li {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2a5298;
    margin-bottom: 1.5rem;
}


/* Bessere Abstände zwischen Paragraphs und Headings */
.service-card h3,
.content-card h3 {
    margin-top: 2rem;        /* Mehr Abstand ÜBER H3 */
    margin-bottom: 1rem;
}

/* Wenn H3 direkt nach H2 kommt, weniger Abstand */
.service-card h2 + h3,
.content-card h2 + h3 {
    margin-top: 1.5rem;
}

/* Bessere Lesbarkeit durch mehr Zeilenabstand */
.service-card p,
.content-card p {
    line-height: 1.8;        /* War vorher 1.6 */
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

/* Listen mit besserem Abstand */
.service-card ul li,
.content-card ul li {
    line-height: 1.7;
    padding: 0.8rem 0 0.8rem 2.5rem;
}


@media (max-width: 768px) {
    .service-card h2,
    .content-card h2 {
        font-size: 1.5rem;
    }
    
    .service-card h3,
    .content-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p,
    .content-card p,
    .service-card ul li,
    .content-card ul li {
        font-size: 1rem;
    }
    
    .intro-text {
        font-size: 1.05rem;
        padding: 1rem;
    }
}

/* Improved typography and spacing for this page */
        .ablauf-page {
            background: #f8f9fa;
        }
        
        .ablauf-page .container {
            max-width: 900px; /* Narrower for better readability */
        }
        
        /* Better H1 styling */
        .page-title {
            font-size: 2.2rem;
            line-height: 1.3;
            color: #1e3c72;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid #2a5298;
            text-align: left;
        }
        
        /* Improved service-card for content pages */
        .content-card {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }
        
        .content-card:hover {
            transform: none; /* Remove hover transform for content cards */
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }
        
        /* Better H2 styling */
        .content-card h2 {
            font-size: 1.8rem;
            color: #1e3c72;
            margin-bottom: 1.5rem;
            margin-top: 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e9ecef;
            text-align: left;
            line-height: 1.3;
        }
        
        /* Better H3 styling with proper spacing */
        .content-card h3 {
            font-size: 1.3rem;
            color: #2a5298;
            margin-top: 2rem; /* More space above H3 */
            margin-bottom: 1rem;
            font-weight: 600;
            line-height: 1.4;
        }
        
        /* First H3 should have less top margin */
        .content-card h2 + h3 {
            margin-top: 1.5rem;
        }
        
        /* Improved paragraph styling */
        .content-card p {
            line-height: 1.8; /* More line spacing for better readability */
            margin-bottom: 1.2rem;
            color: #444;
            font-size: 1.05rem;
        }
        
        /* Special styling for intro paragraph */
        .intro-text {
            font-size: 1.15rem;
            line-height: 1.9;
            color: #333;
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #2a5298;
            margin-bottom: 1.5rem;
        }
        
        /* Better list styling */
        .content-card ul {
            margin: 1.5rem 0;
            padding-left: 0;
            list-style: none;
        }
        
        .content-card ul li {
            padding: 0.8rem 0 0.8rem 2.5rem;
            position: relative;
            line-height: 1.7;
            color: #444;
            font-size: 1.05rem;
        }
        
        .content-card ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #2a5298;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        /* Note/Hinweis box styling */
        .note-box {
            background: #fff8e1;
            border-left: 4px solid #ffc107;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        
        .note-box p {
            margin-bottom: 0.8rem;
            color: #333;
        }
        
        .note-box p:last-child {
            margin-bottom: 0;
        }
        
        /* Italic text in lists */
        .content-card ul li i {
            color: #666;
            font-size: 0.98rem;
        }
        
        /* Contact section styling */
        .contact-box {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
        }
        
        .contact-box h2 {
            color: white;
            border-bottom: none;
            margin-bottom: 1rem;
        }
        
        .contact-box p {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        
        .contact-box a {
            color: #ffd700;
            text-decoration: none;
            font-weight: bold;
        }
        
        .contact-box a:hover {
            text-decoration: underline;
        }
        
        /* Better link styling in content */
        .content-card a {
            color: #2a5298;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid transparent;
            transition: border-bottom 0.3s;
        }
        
        .content-card a:hover {
            border-bottom: 1px solid #2a5298;
        }
        
        /* Process steps styling */
        .process-step {
            margin-bottom: 2.5rem;
        }
        
        .process-step:last-child {
            margin-bottom: 0;
        }
        
        .step-number {
            display: inline-block;
            background: #2a5298;
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            text-align: center;
            line-height: 35px;
            font-weight: bold;
            margin-right: 0.5rem;
            font-size: 1.1rem;
        }
        
        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .page-title {
                font-size: 1.6rem;
            }
            
            .content-card {
                padding: 1.5rem;
            }
            
            .content-card h2 {
                font-size: 1.5rem;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }
            
            .content-card h3 {
                font-size: 1.2rem;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }
            
            .content-card p,
            .content-card ul li {
                font-size: 1rem;
            }
            
            .intro-text {
                font-size: 1.05rem;
                padding: 1rem;
            }
        }
        
        /* Small screen navigation fixes */
        @media (max-width: 768px) {
            nav {
                padding: 0 1rem;
            }
            
            .nav-links {
                gap: 0.5rem;
                font-size: 0.9rem;
            }
        }