/* Réinitialisation des marges et paddings */
body,
h1,
p {
  margin: 0;
  padding: 0;
}

/* Style de la section des offres d'emploi */
.job-offers {
  text-align: center;
  padding: 40px;
}

.section-header-f {
  margin-bottom: 40px;
}

h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

p-f {
  font-size: 18px;
  color: #666;
}

.job-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.job-item {
  width: calc(33.33% - 20px);
  margin-bottom: 20px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  background-color: #f9f9f9;
}

.job-item h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.job-item p {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}

.button-f {
  display: inline-block;
  padding: 8px 16px;
  text-decoration: none;
  color: #fff;
  background-color: #3498db;
  border-radius: 4px;
}

.button-f:hover {
  background-color: #2980b9;
}

/* Media queries pour la responsivité */
@media screen and (max-width: 768px) {
  .job-offers {
    padding: 20px;
  }

  h1 {
    font-size: 28px;
    margin-bottom: 5px;
  }

  p-f {
    font-size: 16px;
  }

  .job-item {
    width: calc(50% - 20px);
  }
}
