/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* BODY */
body {
  background-color: #f9f9f9;
  color: #222;
  margin: 0;
  line-height: 1.5;
  text-align: justify;
}

/* HEADER */
header {
  background-color: #111;
  color: white;
  padding: 25px 0;
  text-align: center;
}

header h1 {
  font-size: 32px;
  letter-spacing: 2px;
}

header h2 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 20px;
}

/* MENU */
.menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.menu li button {
  background-color: #222;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.menu li button:hover {
  background-color: #444;
}

.menu li button a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

/* TITRE PAGE */
.page-title {
  text-align: center;
  margin: 40px 0;
}

/* CONTENU */
.career {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  padding: 0 20px;
}

.career img {
  width: 500px;
  height: auto;
}

.career .text {
  width: 60%;
  padding: 0 20px;
}

.career.right {
  padding-left: 50px;
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .career {
    flex-direction: column;
    align-items: center;
  }

  .career .text {
    width: 100%;
    padding: 10px 0;
  }

  .career img {
    width: 90%;
    margin-bottom: 15px;
  }
}
