* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.hero {
  height: 100vh;
  background: url("search-image.jpeg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.45)
  );
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 1000px;
  padding: 20px;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content h1 span {
  color: #f3b4c1;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  opacity: 0.95;
}

.search-box {
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto 40px;
}

.search-box select {
  flex: 1;
  padding: 16px;
  border: none;
  font-size: 16px;
  outline: none;
}

.search-box button {
  background: #b76e79;
  color: #fff;
  border: none;
  padding: 0 35px;
  font-size: 16px;
  cursor: pointer;
}

.search-box button:hover {
  background: #9e5b64;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.stats div {
  text-align: center;
}

.stats strong {
  font-size: 28px;
  display: block;
}

.stats span {
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .search-box {
    flex-direction: column;
  }

  .search-box button {
    padding: 16px;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }
}
