.offert-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 3rem 2rem;
  margin: 0 auto;
}

.offert-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #444;
}

.offert-text ul {
  margin: 1rem 0;
  padding-left: 1.2rem;
  font-size: 1rem;
  color: #444;
}

.btn-large {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #f49fb0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 16px;
  text-decoration: none;
  margin-top: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  grid-column: span 2;
  justify-self: center;
}

.btn-large:hover {
  background-color: #d43f73;
  transform: scale(1.05);
}

.hero-image {
  max-width: 100%;
  height: auto;
}


@media (max-width: 768px) {
  .offert-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .btn-large {
    grid-column: auto;
    width: 100%;
    max-width: none;
  }

  .offert-text ul {
    text-align: left;
    display: inline-block;
  }
}