        .jobs-section {
            padding: 60px 0;
        }
        .jobs-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        .card-job {
            background: #ffffff;
            border-radius: 15px;
            padding: 40px;
            border: 1px solid #eef2f6;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
        }
        .job-header {
            margin-bottom: 25px;
        }
        .badge-urgent {
            display: inline-block;
            background: #fff5f5;
            color: #e53e3e;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
            border: 1px solid #feb2b2;
        }
        .card-job h2 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        .card-job p {
            line-height: 1.7;
            color: #4a5568;
            margin-bottom: 20px;
        }
        .job-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 14px;
            margin-bottom: 20px;
        }
        .tag {
            background: #f7fafc;
            color: #4a5568;
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            border: 1px solid #edf2f7;
        }
        .tag.clickable {
            cursor: pointer;
            transition: all 0.2s;
        }
        .tag.clickable:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        .apply-info {
            background: #f8fafc;
            padding: 25px;
            border-radius: 12px;
            margin-top: auto;
        }
        .apply-info h4 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 0.95rem;
        }
        .contact-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .contact-list li strong { color: #2d3748; }
        .btn-form {
            display: flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            width: 100%;
            height: 48px;
            background: var(--primary);
            color: white;
            padding: 0 12px;
            border-radius: 8px;
            text-decoration: none;
            margin-top: 15px;
            font-weight: 600;
            font-family: inherit;
            font-size: 1rem;
            transition: opacity 0.3s;
        }
        .btn-form:hover { opacity: 0.9; }

        /* Styles de la modale */
		.job-modal {
			display: none;
			position: fixed;
			z-index: 1000;
			left: 0;
			top: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0,0,0,0.5);
			padding: 20px;
			box-sizing: border-box;
			overflow-y: auto;
		}

		.job-modal.active {
			display: flex;
		}

		.modal-content {
			background: white;
			padding: 40px;
			border-radius: 15px;
			max-width: 600px;
			width: 100%;
			max-height: 85vh;
			overflow-y: auto;
			position: relative;
			box-shadow: 0 15px 40px rgba(0,0,0,0.15);
			box-sizing: border-box;
			margin: auto;
		}
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #4a5568;
        }

        @media (max-width: 992px) {
            .jobs-grid { grid-template-columns: 1fr; }
        }
		.stage-table-highlight {
			background-color: #bae6fd !important;
			border-color: #0284c7 !important;
			font-weight: 600;
			color: #0369a1;
		}