.hero {
  background: linear-gradient(135deg,
      #979797 0%,
      rgba(12, 57, 35, 0.4) 65%,
      rgba(12, 57, 36, 1) 100%),
    url('../images/forest-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #ffffff;
}

.hero-content {
  text-align: center;
  max-width: 660px;
  z-index: 2;
}

.hero-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 59.6px;
  margin-bottom: 48px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.hero-decoration {
  position: absolute;
  top: 241px;
  right: 135px;
}

.decoration-dot {
  width: 9px;
  height: 9px;
  background-color: #F9D6FF;
  border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    height: 500px;
    padding: 0 20px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 32px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }

  .hero-decoration {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 400px;
  }

  .hero-title {
    font-size: 24px;
    line-height: 32px;
  }
}