


        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            padding: 80px 20px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Geometric Patterns */
        .pattern {
            position: absolute;
            opacity: 0.03;
        }

        .pattern-1 {
            top: 10%;
            right: 10%;
            width: 200px;
            height: 200px;
            border: 3px solid white;
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }

        .pattern-2 {
            bottom: 15%;
            left: 5%;
            width: 150px;
            height: 150px;
            border: 3px solid white;
            transform: rotate(45deg);
            animation: rotate 15s linear infinite reverse;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .hero-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            z-index: 1;
        }

        /* Überschrift */
        .hero-title {
            font-size: 5em;
            font-weight: 900;
            color: white;
            line-height: 1.1;
            margin-bottom: 40px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
            letter-spacing: -2px;
            animation: fadeInDown 1s ease-out;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            animation: shimmer 3s ease-in-out infinite;
            position: relative;
        }

        @keyframes shimmer {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.4); }
        }

        /* Beschreibungstext */
        .hero-description {
            font-size: 1.5em;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            margin-bottom: 50px;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
            font-weight: 400;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        /* Buttons Container */
        .hero-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 70px;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .btn {
            padding: 22px 50px;
            font-size: 1.2em;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            cursor: pointer;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 400px;
            height: 400px;
        }

        .btn span {
            position: relative;
            z-index: 1;
        }

        .btn-primary {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            font-weight: 800;
            box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 12px 40px rgba(59, 130, 246, 0.6);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2.5px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(15px);
            font-weight: 700;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
        }

        /* Statistiken */
        .hero-stats {
            display: flex;
            gap: 60px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .stat-item {
            text-align: center;
            position: relative;
            padding: 35px 45px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            min-width: 220px;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
            border-radius: 25px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .stat-item:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .stat-item:hover::before {
            opacity: 1;
        }

        .stat-icon {
            font-size: 3em;
            margin-bottom: 15px;
            display: block;
            filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
        }

        .stat-number {
            font-size: 3.5em;
            font-weight: 900;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            line-height: 1;
            margin-bottom: 15px;
            letter-spacing: -2px;
            position: relative;
            z-index: 1;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1em;
            font-weight: 600;
            letter-spacing: 0.5px;
            position: relative;
            z-index: 1;
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.6);
            text-align: center;
            animation: bounce 2s ease-in-out infinite;
            cursor: pointer;
            z-index: 2;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(15px); }
        }

        .scroll-indicator span {
            display: block;
            font-size: 0.85em;
            margin-bottom: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .scroll-arrow {
            width: 28px;
            height: 45px;
            border: 2px solid rgba(255, 255, 255, 0.6);
            border-radius: 20px;
            position: relative;
            margin: 0 auto;
        }

        .scroll-arrow::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: scrollDot 2s ease-in-out infinite;
        }

        @keyframes scrollDot {
            0% { top: 10px; opacity: 1; }
            100% { top: 28px; opacity: 0; }
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 4em;
            }

            .hero-description {
                font-size: 1.3em;
            }

            .hero-stats {
                gap: 40px;
            }

            .stat-item {
                padding: 30px 40px;
                min-width: 200px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                min-height: auto;
                padding: 60px 20px;
            }

            .hero-title {
                font-size: 2.8em;
                margin-bottom: 30px;
                letter-spacing: -1px;
            }

            .hero-description {
                font-size: 1.15em;
                margin-bottom: 40px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
                margin-bottom: 50px;
            }

            .btn {
                padding: 18px 40px;
                font-size: 1.1em;
                width: 100%;
                max-width: 400px;
                justify-content: center;
            }

            .hero-stats {
                gap: 25px;
            }

            .stat-item {
                padding: 25px 35px;
                min-width: 160px;
            }

            .stat-icon {
                font-size: 2.5em;
            }

            .stat-number {
                font-size: 3em;
            }

            .stat-label {
                font-size: 0.95em;
            }

            .pattern-1, .pattern-2 {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.2em;
            }

            .hero-description {
                font-size: 1em;
            }

            .stat-item {
                width: 100%;
                max-width: 300px;
            }

            .btn {
                width: 100%;
                padding: 16px 30px;
            }
        }

















    .dienstleistungen-section {
      max-width: 1400px;
      margin: 0 auto;
    }

    .dienstleistungen-container h2 {
      font-size: 3rem;
      color: white;
      text-align: center;
      margin-bottom: 10px;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    }

    .dienstleistungen-container > p {
      text-align: center;
      color: rgba(255,255,255,0.9);
      font-size: 1.3rem;
      margin-bottom: 60px;
    }

    .services-wrapper {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 100px;
    }

    .arrow-connector {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    .arrow-line {
      animation: dash 3s linear infinite;
    }

    @keyframes dash {
      to {
        stroke-dashoffset: -20;
      }
    }

    .arrow-head {
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.7; transform: scale(1.2); }
    }

    .service-item {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      background: white;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    }

    .service-item:nth-child(even) {
      grid-template-columns: 1fr 1fr;
    }

    .service-item:nth-child(even) .service-image {
      order: 2;
    }

    .service-item:nth-child(even) .service-content {
      order: 1;
    }

    .service-image {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .placeholder {
      width: 100%;
      height: 350px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #0077ff 0%, #0055cc 100%);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
    }

    .service-item:hover .placeholder {
      transform: scale(1.05);
    }

    .placeholder-content {
      text-align: center;
      color: white;
    }

    .placeholder-icon {
      font-size: 80px;
      display: block;
      margin-bottom: 15px;
      filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    }

    .placeholder-text {
      font-size: 1.5rem;
      font-weight: 600;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    }

    .service-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .badge {
      display: inline-block;
      padding: 8px 20px;
      background: linear-gradient(135deg, #0077ff, #0055cc);
      color: white;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 15px;
      width: fit-content;
    }

    .service-content h3 {
      font-size: 2rem;
      color: #2c3e50;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .service-content > p {
      color: #7f8c8d;
      font-size: 1.1rem;
      margin-bottom: 25px;
      line-height: 1.6;
    }

    .service-features {
      list-style: none;
      margin-bottom: 30px;
    }

    .service-features li {
      padding: 12px 0;
      color: #34495e;
      font-size: 1rem;
      border-bottom: 1px solid #ecf0f1;
      position: relative;
      padding-left: 30px;
    }

    .service-features li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #27ae60;
      font-weight: bold;
      font-size: 1.2rem;
    }

    .cta-button {
      padding: 15px 35px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
      border-radius: 30px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      width: fit-content;
      box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.7);
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .modal-content {
      background-color: white;
      margin: 5% auto;
      padding: 0;
      border-radius: 20px;
      width: 90%;
      max-width: 800px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      animation: slideIn 0.3s ease;
    }

    @keyframes slideIn {
      from {
        transform: translateY(-50px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .modal-header {
      padding: 30px 40px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border-radius: 20px 20px 0 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .modal-header h2 {
      margin: 0;
      font-size: 2rem;
    }

    .close-btn {
      background: none;
      border: none;
      color: white;
      font-size: 2.5rem;
      cursor: pointer;
      line-height: 1;
      transition: transform 0.2s ease;
    }

    .close-btn:hover {
      transform: scale(1.2);
    }

    .modal-body {
      padding: 40px;
      color: #2c3e50;
      font-size: 1.1rem;
      line-height: 1.8;
      max-height: 60vh;
      overflow-y: auto;
    }

    .modal-body h3 {
      color: #667eea;
      margin-top: 25px;
      margin-bottom: 15px;
      font-size: 1.5rem;
    }

    .modal-body ul {
      margin: 15px 0;
      padding-left: 25px;
    }

    .modal-body li {
      margin: 10px 0;
      color: #34495e;
    }

    @media (max-width: 968px) {
      .service-item,
      .service-item:nth-child(even) {
        grid-template-columns: 1fr;
      }

      .service-item:nth-child(even) .service-image,
      .service-item:nth-child(even) .service-content {
        order: unset;
      }

      .arrow-connector {
        display: none;
      }

      .services-wrapper {
        gap: 40px;
      }

      .dienstleistungen-container h2 {
        font-size: 2rem;
      }
    }












        /*============================ Unsere Angebote für Bewerber ========================================= */






        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 18px;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .job-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-bottom: 50px;
        }

        .featured-card {
            grid-column: 1;
        }

        .bottom-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .job-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .featured-card .job-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 400px;
        }

        .job-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
        }

        .job-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .job-card:hover::before {
            opacity: 1;
        }

        .job-card-image-wrapper {
            position: relative;
            overflow: hidden;
        }

        .featured-card .job-card-image-wrapper {
            height: 100%;
        }

        .job-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .job-card:hover .job-card-image {
            transform: scale(1.1);
        }

        .image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
        }

        .job-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            backdrop-filter: blur(10px);
            z-index: 2;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .badge-blue {
            background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
            color: white;
        }

        .badge-pink {
            background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
            color: white;
        }

        .badge-purple {
            background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
            color: white;
        }

        .job-content {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex: 1;
        }

        .job-title {
            font-size: 28px;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .featured-card .job-title {
            font-size: 36px;
        }

        .job-description {
            font-size: 16px;
            color: #64748b;
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .job-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }

        .tag {
            padding: 8px 16px;
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
            color: #475569;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }

        .tag:hover {
            background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .job-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 24px;
            border-top: 2px solid #f1f5f9;
        }

        .apply-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.4s ease;
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
            position: relative;
            overflow: hidden;
        }

        .apply-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .apply-button:hover::before {
            left: 100%;
        }

        .apply-button:hover {
            transform: translateX(8px);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
        }

        .apply-button::after {
            content: '→';
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .apply-button:hover::after {
            transform: translateX(5px);
        }

        .learn-more {
            color: #6366f1;
            text-decoration: none;
            font-size: 15px;
            font-weight: 700;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .learn-more:hover {
            color: #4f46e5;
            gap: 10px;
        }

        .learn-more::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .more-offers-container {
            text-align: center;
            margin-top: 60px;
        }

        .more-offers-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 48px;
            background: white;
            color: #6366f1;
            text-decoration: none;
            border-radius: 15px;
            font-weight: 700;
            font-size: 17px;
            transition: all 0.4s ease;
            box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
            border: 2px solid #e2e8f0;
            position: relative;
            overflow: hidden;
        }

        .more-offers-button::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .more-offers-button:hover::before {
            opacity: 1;
        }

        .more-offers-button:hover {
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(99, 102, 241, 0.3);
            border-color: transparent;
        }

        .more-offers-button::after {
            content: '↓';
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .more-offers-button:hover::after {
            transform: translateY(5px);
        }

        @media (max-width: 1024px) {
            .featured-card .job-card {
                grid-template-columns: 1fr;
            }

            .featured-card .job-card-image-wrapper {
                height: 300px;
            }

            .bottom-cards {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 32px;
            }

            .section-subtitle {
                font-size: 16px;
            }

            .job-content {
                padding: 28px;
            }

            .job-title {
                font-size: 22px;
            }

            .featured-card .job-title {
                font-size: 28px;
            }

            .job-footer {
                flex-direction: column;
                gap: 16px;
                align-items: stretch;
            }

            .apply-button {
                justify-content: center;
            }

            .more-offers-button {
                padding: 18px 36px;
                font-size: 16px;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-header {
            animation: fadeInUp 0.8s ease forwards;
        }

        .featured-card {
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.2s;
            opacity: 0;
        }

        .bottom-cards .job-card:nth-child(1) {
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.4s;
            opacity: 0;
        }

        .bottom-cards .job-card:nth-child(2) {
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.5s;
            opacity: 0;
        }

        .more-offers-container {
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.6s;
            opacity: 0;
        }













           /*============================ Für Deutschkurse ========================================= */

            /* Nur diese Section wird gestylt - keine globalen Styles */
        .deutschkurse-section {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .deutschkurse-section *,
        .deutschkurse-section *::before,
        .deutschkurse-section *::after {
            box-sizing: border-box;
        }

        .deutschkurse-section .section-container {
            width: 100%;
            padding: 80px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            perspective: 1000px;
        }

        .deutschkurse-section .section-content {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 60px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            opacity: 0;
            transform: translateY(50px);
            animation: dkFadeInUp 1s ease-out forwards;
        }

        @keyframes dkFadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .deutschkurse-section .text-content {
            grid-column: 1;
        }

        .deutschkurse-section .icon-wrapper {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            margin-bottom: 30px;
            animation: dkFloat 3s ease-in-out infinite;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        @keyframes dkFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .deutschkurse-section .icon-wrapper i {
            font-size: 36px;
            color: white;
        }

        .deutschkurse-section h2 {
            font-size: 48px;
            color: #2d3748;
            margin: 0 0 20px 0;
            padding: 0;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .deutschkurse-section p {
            font-size: 18px;
            line-height: 1.8;
            color: #4a5568;
            margin: 0 0 35px 0;
            padding: 0;
        }

        .deutschkurse-section .features {
            display: flex;
            gap: 20px;
            margin-bottom: 35px;
            flex-wrap: wrap;
        }

        .deutschkurse-section .feature-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 14px;
            color: #667eea;
            font-weight: 600;
            transition: all 0.3s ease;
            margin: 0;
        }

        .deutschkurse-section .feature-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        .deutschkurse-section .feature-badge i {
            font-size: 16px;
        }

        .deutschkurse-section .dk-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 18px 45px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
            position: relative;
            overflow: hidden;
            display: inline-block;
            text-decoration: none;
        }

        .deutschkurse-section .dk-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
        }

        .deutschkurse-section .dk-button:hover::before {
            left: 100%;
        }

        .deutschkurse-section .dk-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
        }

        .deutschkurse-section .dk-button:active {
            transform: translateY(-1px);
        }

        .deutschkurse-section .image-wrapper {
            grid-column: 2;
            position: relative;
        }

        .deutschkurse-section .dk-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            transition: all 0.5s ease;
            display: block;
        }

        .deutschkurse-section .dk-image:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
        }

        .deutschkurse-section .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .deutschkurse-section .floating-icon {
            position: absolute;
            background: white;
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: dkFloatRandom 4s ease-in-out infinite;
        }

        .deutschkurse-section .floating-icon i {
            font-size: 24px;
            color: #667eea;
        }

        .deutschkurse-section .floating-icon:nth-child(1) {
            top: 10%;
            left: -5%;
            animation-delay: 0s;
        }

        .deutschkurse-section .floating-icon:nth-child(2) {
            top: 60%;
            left: -8%;
            animation-delay: 1s;
        }

        .deutschkurse-section .floating-icon:nth-child(3) {
            top: 20%;
            right: -5%;
            animation-delay: 2s;
        }

        @keyframes dkFloatRandom {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        @media (max-width: 968px) {
            .deutschkurse-section .section-content {
                grid-template-columns: 1fr;
                padding: 40px 30px;
                gap: 40px;
            }

            .deutschkurse-section .text-content {
                grid-column: 1;
            }

            .deutschkurse-section .image-wrapper {
                grid-column: 1;
            }

            .deutschkurse-section h2 {
                font-size: 36px;
            }

            .deutschkurse-section p {
                font-size: 16px;
            }

            .deutschkurse-section .dk-image {
                height: 350px;
            }

            .deutschkurse-section .floating-icon {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .deutschkurse-section .section-content {
                padding: 30px 20px;
            }

            .deutschkurse-section h2 {
                font-size: 28px;
            }

            .deutschkurse-section p {
                font-size: 15px;
            }

            .deutschkurse-section .dk-button {
                width: 100%;
                padding: 16px 35px;
                font-size: 16px;
            }

            .deutschkurse-section .icon-wrapper {
                width: 65px;
                height: 65px;
            }

            .deutschkurse-section .icon-wrapper i {
                font-size: 28px;
            }

            .deutschkurse-section .features {
                gap: 10px;
            }

            .deutschkurse-section .feature-badge {
                font-size: 12px;
                padding: 8px 15px;
            }

            .deutschkurse-section .dk-image {
                height: 280px;
            }
        }