/* Services Hero Section */
.services-hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  height: 60vh;
  min-height: 25rem;
  display: flex;
  align-items: center;
  background-color: #010101;
}

.services-hero__overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

.services-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.25rem;
}

.services-hero__title {
  color: #fff;
  font-size: 3rem;
  margin: 0 0 1.5rem;
  font-weight: 700;
}

.services-hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin: 0;
  max-width: 40rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 48rem) {
  .services-hero {
    height: 50vh;
    min-height: 20rem;
  }

  .services-hero__inner {
    padding: 0 1rem;
  }

  .services-hero__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .services-hero__subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width: 36rem) {
  .services-hero__title {
    font-size: 1.75rem;
  }

  .services-hero__subtitle {
    font-size: 1rem;
  }
}