        
        
        
        .karriere-hero {
            margin-top: 0;
            padding: 8rem 2rem 6rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            opacity: 0.1;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #9cbb44;
            border-radius: 50%;
            animation: float-up 20s linear infinite;
        }
        
        @keyframes float-up {
            from {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            to {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }
        
        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(156, 187, 68, 0.1);
            border: 2px solid #9cbb44;
            border-radius: 50px;
            color: #9cbb44;
            font-weight: 600;
            margin-bottom: 2rem;
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        .hero-content h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: #2d2d2d;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-content h1 .highlight {
            color: #9cbb44;
            position: relative;
        }
        
        .hero-content p {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.6;
        }
        
        
        .stats-bar {
            background: white;
            padding: 3rem 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: #9cbb44;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: #6c757d;
            font-size: 1rem;
        }
        
        
        .benefits-section {
            padding: 5rem 2rem;
            background: #f8f9fa;
        }
        
        .benefits-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: #2d2d2d;
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            text-align: center;
            color: #6c757d;
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 4rem;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .benefit-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #9cbb44, #7a9633);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .benefit-card:hover::before {
            transform: scaleX(1);
        }
        
        .benefit-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .benefit-title {
            font-size: 1.3rem;
            color: #2d2d2d;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        .benefit-description {
            color: #6c757d;
            line-height: 1.6;
        }
        
        
        .positions-section {
            padding: 5rem 2rem;
            background: white;
        }
        
        .positions-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .position-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border: 2px solid #f0f0f0;
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }
        
        .position-card:hover {
            border-color: #9cbb44;
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(156, 187, 68, 0.1);
        }
        
        .position-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 1rem;
        }
        
        .position-title {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            color: #2d2d2d;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        .position-type {
            display: inline-block;
            padding: 0.3rem 1rem;
            background: #9cbb44;
            color: white;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            white-space: nowrap;
        }
        
        .position-details {
            display: flex;
            gap: 2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        
        .detail-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #6c757d;
            font-size: clamp(0.85rem, 2vw, 1rem);
        }
        
        .position-description {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }
        
        .position-requirements {
            background: rgba(156, 187, 68, 0.05);
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }
        
        .requirements-title {
            font-weight: 600;
            color: #2d2d2d;
            margin-bottom: 0.5rem;
            font-size: clamp(0.95rem, 2vw, 1.1rem);
        }
        
        .requirements-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .requirements-list li {
            padding: 0.3rem 0;
            color: #6c757d;
            position: relative;
            padding-left: 1.5rem;
            font-size: clamp(0.85rem, 2vw, 1rem);
        }
        
        .requirements-list li::before {
            content: '✔';
            position: absolute;
            left: 0;
            color: #9cbb44;
            font-weight: bold;
        }
        
        
        .culture-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #9cbb44 0%, #7a9633 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .culture-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .culture-content h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 1.5rem;
        }
        
        .culture-content p {
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }
        
        .culture-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        .culture-image {
            background: rgba(255,255,255,0.1);
            border-radius: 20px;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(2rem, 5vw, 3rem);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .culture-image:hover {
            transform: scale(1.05);
            background: rgba(255,255,255,0.2);
        }
        
        
        .process-section {
            padding: 5rem 2rem;
            background: #f8f9fa;
        }
        
        .process-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .process-timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
            padding: 4rem 0;
            margin-top: 2rem;
        }
        
        .process-timeline::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: #9cbb44;
            z-index: 0;
        }
        
        .process-step {
            flex: 1;
            text-align: center;
            position: relative;
            padding: 0 1rem;
        }
        
        .step-indicator {
            width: 60px;
            height: 60px;
            background: #9cbb44;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            margin: 0 auto 2rem;
            position: relative;
            z-index: 2;
            box-shadow: 0 4px 12px rgba(156, 187, 68, 0.3);
        }
        
        .step-content {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            min-height: 200px;
            height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .step-title {
            font-size: 1.3rem;
            color: #2d2d2d;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        .step-description {
            color: #6c757d;
            line-height: 1.6;
        }
        
        
        .cta-section {
            padding: 5rem 2rem;
            background: white;
            text-align: center;
        }
        
        .cta-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-title {
            font-size: 2.5rem;
            color: #2d2d2d;
            margin-bottom: 1rem;
        }
        
        .cta-text {
            font-size: 1.2rem;
            color: #6c757d;
            margin-bottom: 2rem;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        
        @media (max-width: 768px) {
            .karriere-hero {
                padding: 6rem 1rem 4rem;
                margin-top: 0;
            }
            
            .hero-badge {
                font-size: 0.9rem;
                padding: 0.4rem 1rem;
                margin-bottom: 1.5rem;
            }
            
            .hero-content h1 {
                font-size: 1.75rem;
                margin-bottom: 1rem;
            }
            
            .hero-content p {
                font-size: 0.95rem;
                margin-bottom: 2rem;
            }
            
            
            .stats-bar {
                padding: 2rem 1rem;
            }
            
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .stat-icon {
                font-size: 2rem;
                margin-bottom: 0.5rem;
            }
            
            .stat-value {
                font-size: 1.8rem;
            }
            
            .stat-label {
                font-size: 0.85rem;
            }
            
            
            .benefits-section {
                padding: 3rem 1rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .section-subtitle {
                font-size: 0.95rem;
                margin-bottom: 2rem;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .benefit-card {
                padding: 1.5rem;
            }
            
            .benefit-icon {
                font-size: 1.8rem;
                margin-bottom: 0.75rem;
            }
            
            .benefit-title {
                font-size: 1.1rem;
            }
            
            .benefit-description {
                font-size: 0.9rem;
            }
            
            
            .positions-section {
                padding: 3rem 1rem;
            }
            
            .position-card {
                padding: 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .position-card:hover {
                transform: none;
            }
            
            .position-header {
                flex-direction: column;
                gap: 1rem;
            }
            
            .position-title {
                font-size: 1.15rem;
                line-height: 1.3;
            }
            
            .position-type {
                font-size: 0.8rem;
                padding: 0.25rem 0.75rem;
                align-self: flex-start;
            }
            
            .position-details {
                gap: 0.75rem;
                margin-bottom: 0.75rem;
            }
            
            .detail-item {
                font-size: 0.8rem;
                gap: 0.3rem;
            }
            
            .position-description {
                font-size: 0.85rem;
                margin-bottom: 1rem;
                line-height: 1.5;
            }
            
            .position-requirements {
                padding: 0.75rem;
                margin-bottom: 1rem;
            }
            
            .requirements-title {
                font-size: 0.95rem;
                margin-bottom: 0.3rem;
            }
            
            .requirements-list li {
                font-size: 0.8rem;
                padding: 0.2rem 0;
                padding-left: 1.2rem;
            }
            
            .apply-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
                width: 100%;
                justify-content: center;
            }
            
            
            .culture-section {
                padding: 3rem 1rem;
            }
            
            .culture-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .culture-content h2 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
                text-align: center;
            }
            
            .culture-content p {
                font-size: 0.9rem;
                margin-bottom: 1rem;
                text-align: center;
            }
            
            .culture-images {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
                max-width: 300px;
                margin: 0 auto;
            }
            
            .culture-image {
                font-size: 2rem;
                border-radius: 15px;
            }
            
            
            .process-section {
                padding: 3rem 1rem;
            }
            
            .process-timeline {
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
            }
            
            .process-timeline::before {
                display: none;
            }
            
            .process-step {
                width: 100%;
                max-width: 400px;
                margin-bottom: 2rem;
            }
            
            .step-indicator {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .step-content {
                padding: 1.5rem;
                min-height: 170px;
                height: 170px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            
            .step-title {
                font-size: 1.1rem;
            }
            
            .step-description {
                font-size: 0.85rem;
            }
            
            
            .cta-section {
                padding: 3rem 1rem;
            }
            
            .cta-title {
                font-size: 1.5rem;
            }
            
            .cta-text {
                font-size: 0.95rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 0.75rem;
            }
            
            .cta-buttons .apply-button {
                width: 100%;
                justify-content: center;
            }
        }
        
        
        @media (max-width: 380px) {
            .position-title {
                font-size: 1rem;
            }
            
            .detail-item {
                font-size: 0.75rem;
            }
            
            .position-description,
            .requirements-list li {
                font-size: 0.75rem;
            }
            
            .culture-images {
                max-width: 250px;
            }
            
            .culture-image {
                font-size: 1.5rem;
            }
        }
        
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }
        
        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }
        
        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
