.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../Images/ICR_Images/Touchpoint/Bar4_RGB.webp');
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: #6fffe6;
  padding: 20px;
  max-width: 800px;
  z-index: 1;
}

.hero-logo {
  max-width: 220px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-button {
  display: inline-block;
  background-color: #333;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.25rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-button:hover {
  background-color: #6fffe6;
  color: black;
  transform: translateY(-2px);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-logo {
    max-width: 150px;
  }

  .hero-button {
    font-size: 1rem;
    padding: 12px 25px;
  }
}