.hero-section {
  height: 50vh;
  color: white;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('/public/images/404/404_background_outsourcingdev.webp');
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #58dac0;
}

.hero-text .subtitle {
  font-size: 1.2rem;
  color: #6998e1;
  margin-top: 10px;
}

.error-content {
  text-align: center;
  padding: 40px 20px;
}

.error-content p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
}

.error-content .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #58dac0;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin: 0 10px 20px;
}

.error-content .btn:hover {
  background-color: #4bb3a4;
}

.helpful-links {
  margin: 20px 0 30px;
}

.search-suggestion {
  margin-top: 30px;
  max-width: 600px;
  margin: 0 auto;
}

.search-suggestion ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.search-suggestion li {
  margin-bottom: 10px;
}

.search-suggestion a {
  color: #6998e1;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.search-suggestion a:hover {
  color: #58dac0;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-section {
    height: 40vh;
  }
  
  .error-content .btn {
    margin-bottom: 10px;
    display: block;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}
