/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 84px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
}

.hero-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 43.57px;
  color: #D0D0D0;
  margin-bottom: 32px;
  text-align: center;
}

.hero-description {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #919090;
  opacity: 0.9;
  margin-bottom: 40px;
  text-align: center;
  /* max-width: 439px; */
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  margin-top: 20px;
}

/* Mobile Hero */
@media screen and (max-width: 640px) {
  .hero-section {
    padding-top: 70px;
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 24px;
  }
  
  .hero-description {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 32px;
    max-width: 100%;
  }
}
