.pourquoi-qapa-adecco .container {
  max-width: 1200px;
  margin: 0 auto;
}

.qapa-flex-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
}

.qapa-image {
  width: 30%;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.qapa-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 100%;
  display: block;
}

.qapa-text {
  width: 70%;
  max-width: 600px;
  display: flex;
  padding: 40px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  flex: 1 0 0;
}

.qapa-title {
  font-size: 32px;
  font-weight: 600;
}

.qapa-description {
  font-size: 16px;
}

@media (max-width: 768px) {
  .qapa-flex-container {
    flex-direction: column;
    gap: 20px;
  }
  .qapa-image,
  .qapa-text {
    width: 100%;
    max-width: none;
  }
  .qapa-image img {
    height: auto;
  }
  .qapa-text {
    padding: 20px 0;
  }
}
