.latest-product {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1rem;
  background-color: #e0e0e0;
  color: black;
  max-width: 1200px;
  margin: 0 auto; /* Removes outside spacing and centers the section */
}

.latest-product-left,
.latest-product-right {
  flex: 1 1 45%;
}

.latest-product-left h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.latest-product-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.latest-product-right h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.latest-product-right p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.button-link {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: bold;
  background-color: #6fffe9;
  color: black;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button-link:hover {
  background-color: #5cc0c0;
}

/* Responsive layout */
@media (max-width: 768px) {
  .latest-product {
    flex-direction: column;
    text-align: center;
  }

  .latest-product-left,
  .latest-product-right {
    flex: 1 1 100%;
  }
}
