/* Section "Pourquoi mesurer votre empreinte carbone" */
.service-pourquoi-section {
  height: auto;
  padding: 112px 10px 0px 10px;
  background: white;
  box-sizing: border-box;
  text-align: center;
}

.service-pourquoi-container {
  margin: 0 auto 0px auto;
  text-align: center;
}

.service-pourquoi-image {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 20px;
  border-radius: 10px;
  display: block;
  box-sizing: border-box;
}

.service-pourquoi-badge {
  width: 134.4px;
  height: 33.2px;
  /* max-width: 738px; */
  margin: 80px auto 20px auto;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid #134F50;
  border-radius: 40px;
  color: #134F50;
  /* Police */
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.service-pourquoi-title {
  max-width: 768px;
  margin: 0px auto 24px auto;
  color: #0D0D0D;
  /* Police */
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 40px;
  font-weight: 700;
}

.service-pourquoi-text {
  max-width: 768px;
  margin: 0px auto 30px auto;
  color: #0D0D0D;
  /* Police */
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.service-pourquoi-buttons {
  max-width: 316px;
  margin: 0px auto 0px auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-pourquoi-button {
  width: 144px;
  height: 43px;
  padding: 10px 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  /* Police */
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.service-pourquoi-button-primary {
  background-color: #134F50;
  color: white;
}

.service-pourquoi-button-primary:hover {
  background-color: #267871;
}

.service-pourquoi-button-secondary {
  background-color: transparent;
  color: #134F50;
  border: 1px solid #134F50;
}

.service-pourquoi-button-secondary:hover {
  background-color: rgba(19, 79, 80, 0.1);
}

/* Media query pour les petits écrans (mobile) */
@media (max-width: 768px) {
  .service-pourquoi-section {
    padding: 50px 10px 0px 10px;
  }
  
  .service-pourquoi-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    width: 100%;
  }

  .service-pourquoi-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .service-pourquoi-text {
    font-size: 14px;
  }

  .service-pourquoi-badge {
    width: 120px;
    height: 30px;
    margin-top: 50px;
    font-size: 12px;
  }

  .service-pourquoi-button {
    width: 120px;
    height: 38px;
    font-size: 12px;
  }
}