.hero-block {
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
}

.hero-content {
  max-width: 850px;
}

.hero-content h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  font-weight: 700;
  margin: 0 0 2rem;
}

.hero-text {
  max-width: 650px;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-text p:last-child {
  margin-bottom: 0;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #000;
  transition: all 0.25s ease;
}

.hero-button:hover {
  background: transparent;
  color: #000;
}

@media (max-width: 767.98px) {
  .hero-block {
    min-height: 65vh;
    padding: 4rem 0;
  }

  .hero-content h1 {
    font-size: clamp(2.75rem, 12vw, 4.5rem);
  }

  .hero-text {
    font-size: 1.1rem;
  }
}
