body,
html {
  margin: 0;
  padding: 0;
  font-family: "Public Sans", sans-serif;
  color: white;
}

.service-hero {
  position: relative;
  width: 100%;
  height: auto;
  background-image: url("../photos/service-background-top-green.webp"); /* replace with your own image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

.service-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 150px;
}

.service-header-group {
  display: flex;
  justify-content: flex-start;
}

.service-title {
  font-size: 80px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 20px 0;
  font-style: italic;
}

.service-body {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.service-image img {
  max-width: 420px;
  width: 100%;
  border-radius: 10px;
}

.service-text {
  max-width: 650px;
}

.intro-text {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 400;
}

.detail-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 300;
}
.title-text {
  font-size: 32px;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 0px;
}

.estimate-btn {
  background-color: #7fc70b;
  color: black;
  text-decoration: none;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.estimate-btn:hover {
  background-color: #a2e734;
}
