.home-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 40px 80px;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

.left-section {
  flex: 1;
  max-width: 500px;
  padding-bottom: 80px;
}

.left-section h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: #e22326;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-align: left;
}

.left-section p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 35px;
  text-align: left;
  max-width: 380px; 
}

.btn-produk {
  display: inline-block;
  width: 200px;
  height: 68px;
  background-image: url('../icon/Produk%20Before.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  text-indent: -9999px; 
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-produk:hover {
  background-image: url('../icon/Produk%20After.png');
}

.right-section {
  flex: 1.2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image {
  max-width: 130%;
  height: auto;
  margin-top: -120px;
  margin-left: -50px;
  margin-bottom: -60px;
  object-fit: contain;
}