.not-found {
  padding: 80px 0;
  text-align: center;
}

.not-found-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.not-found-image {
  margin-bottom: 40px;
  max-width: 300px;
  width: 100%;
}

.not-found-image img {
  width: 100%;
  height: auto;
}

.not-found-title {
  font-family: "Jost", sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.not-found-text {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 500px;
}

@media (max-width: 767px) {
  .not-found {
    padding: 60px 0;
  }

  .not-found-image {
    margin-bottom: 30px;
    max-width: 200px;
  }

  .not-found-title {
    font-size: 60px;
    margin-bottom: 15px;
  }

  .not-found-text {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
