    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', 'Open Sans', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #ffffff;
        }

        /* Header */
        header {
            background: #1a3a52;
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 600;
        }

        .logo-subtitle {
            font-size: 0.9rem;
            opacity: 0.9;
            font-weight: 300;
        }

        .contact-button {
            background: #2c5f2d;
            color: white;
            padding: 0.7rem 1.5rem;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            transition: background 0.3s;
        }

        .contact-button:hover {
            background: #3d7a3e;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1a3a52 0%, #2c5f2d 100%);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }

        .hero-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .hero h2 {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            font-weight: 300;
            opacity: 0.95;
			color: white;
        }

        .hero-profile {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .profile-image {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: #f4f4f4;
            border: 5px solid rgba(255,255,255,0.3);
			overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: #1a3a52;
        }
		
		    .profile-image img {
            width: 155%;
            height: 155%;
            object-fit: cover;
            object-position: center middle;
        }

        .profile-info {
            text-align: left;
        }

        .profile-info p {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        section {
            padding: 4rem 2rem;
        }

        .section-light {
            background: #ffffff;
        }

        .section-gray {
            background: #f8f9fa;
        }

        h2 {
            font-size: 2rem;
            color: #1a3a52;
            margin-bottom: 2rem;
            text-align: center;
            font-weight: 600;
        }

        /* Qualifications Grid */
        .qual-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .qual-item {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            border-left: 4px solid #2c5f2d;
        }

        .qual-item h3 {
            color: #1a3a52;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .qual-item p {
            color: #666;
            line-height: 1.6;
        }

        .checkmark {
            color: #2c5f2d;
            font-weight: bold;
            margin-right: 0.5rem;
            font-size: 1.2rem;
        }

        /* Arbeitsweise */
        .arbeitsweise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 2rem auto;
        }

        .arbeitsweise-card {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .arbeitsweise-card h3 {
            color: #1a3a52;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .arbeitsweise-card ul {
            list-style: none;
            text-align: left;
        }

        .arbeitsweise-card li {
            margin-bottom: 0.7rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .arbeitsweise-card li:before {
            content: "•";
            color: #2c5f2d;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        /* Einsatzgebiet */
        .einsatzgebiet-box {
            max-width: 800px;
            margin: 2rem auto;
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            text-align: center;
        }

        .einsatzgebiet-box h3 {
            color: #1a3a52;
            margin-bottom: 1rem;
        }

        .bezirke {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 1.5rem 0;
        }

        .bezirk {
            background: #1a3a52;
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 20px;
            font-weight: 500;
        }

        .verfuegbarkeit {
            color: #2c5f2d;
            font-weight: 600;
            margin-top: 1rem;
            font-size: 1.1rem;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 900px;
            margin: 2rem auto;
        }

        .contact-card {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            text-align: center;
        }

        .contact-card h3 {
            color: #1a3a52;
            margin-bottom: 1rem;
        }

        .contact-card a {
            color: #2c5f2d;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
        }

        .contact-card a:hover {
            text-decoration: underline;
        }

        .download-button {
            display: inline-block;
            background: #1a3a52;
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 4px;
            margin-top: 2rem;
            font-weight: 500;
            transition: background 0.3s;
        }

        .download-button:hover {
            background: #2c5f2d;
        }

        /* Footer */
        footer {
            background: #1a3a52;
            color: white;
            padding: 2rem;
            text-align: center;
        }

        footer a {
            color: white;
            text-decoration: none;
            margin: 0 1rem;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .hero h2 {
                font-size: 1.1rem;
            }

            .hero-profile {
                flex-direction: column;
                gap: 1.5rem;
            }

            .profile-info {
                text-align: center;
            }

            .header-container {
                flex-direction: column;
                gap: 1rem;
            }

            section {
                padding: 3rem 1rem;
            }
        }