body {
  margin: 0 auto;
  font-family: "Public Sans", serif;
  background-color: #ffffff;
  color: black;
  overflow-x: hidden;
}

.services-heading {
  height: 250px;
  background: conic-gradient(
    from 135deg at 36% 50%,
    #0a3d0a 0deg 180deg,
    #000000 180deg 360deg
  );
  width: 100%;
}

.services-heading-text {
  font-size: 80px;
  color: white;
  text-transform: uppercase;
  font-style: italic;
  display: flex;
  align-items: end;
  height: 100%;
}
.services-heading-text span {
  margin: 30px;
}

/* Modifier so you can reuse the same hero shell */
.firewood-hero {
  background-image: url("../photos/service-background-top-green.webp"); /* keep your bg */
}

/* Two stacked images on the left */
.firewood-images {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 420px;
  width: 100%;
}

.firewood-images img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  /* optional: keep a consistent crop */
  aspect-ratio: 4 / 3;
}

/* Inline contact emphasis */
.contact-inline {
  color: #7fc70b;
  font-weight: 700;
  text-decoration: underline;
}
.contact-inline:hover {
  color: #a2e734;
}

/* Free delivery badge */
.free-delivery {
  display: inline-block;
  margin: 12px 0 18px;
  padding: 8px 12px;
  border-radius: 6px;
  background-color: #a2e734; /* light green that pops on dark bg */
  color: #000;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-size: 14px;
}

/* Optional: tighten the text area a touch on large screens */
.firewood-hero .service-text {
  max-width: 650px;
}
