/* Section Recrutement */
.recrutement {
    padding: 60px 0;
    background-color: #f8f9fa;
}



.recrutement .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.recrutement .section-title p {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.recrutement .description-title {
    color: #007bff;
}

/* Style des cartes d'offres d'emploi */
.job-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.job-card h4 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.job-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Bouton Postuler */
.btn-apply {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-apply:hover {
    background-color: #333;
	 color: white;
}

/* Effet au survol */
.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}
