.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  max-width: 820px;
}

.hero-image {
  width: 398px;
  height: auto;
}

.hero-subtitle {
  font-family: "Syne", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .hero {
    padding: 60px 30px;
  }

  .hero-image {
    width: 280px;
  }

  .hero-subtitle {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 50px 20px;
  }

  .hero-image {
    width: 200px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .btn {
    font-size: 14px;
    padding: 14px 24px 14px 40px;
    gap: 12px;
  }
}
