<style>
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.site-header {
  background: #000;
  padding: 15px 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: white;
  font-size: 20px;
  font-weight: 500;
}

.right-box {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px;
}

.phone-btn {
  display: inline-block;
  background: white;
  color: black;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  white-space: nowrap;
}

.facebook-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  text-decoration: none;
}

.facebook-link img {
  width: 32px !important;
  height: 32px !important;
  display: block;
  object-fit: contain;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* pousse l'image à droite */
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  display: block;
}
.hero-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
</style>