.not-found-page {
  min-height: 100vh;
  padding: 40px 7%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(121, 180, 169, 0.18), transparent 34%),
    linear-gradient(180deg, #f7f4ee 0%, #ffffff 100%);
}

.not-found-card {
  width: 100%;
  max-width: 760px;
  padding: 64px 42px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e3ded4;
  border-radius: 34px;
  box-shadow: 0 22px 55px rgba(36, 49, 47, 0.1);
}

.not-found-logo {
  display: inline-block;
  font-family: "Belleza", sans-serif;
  font-size: 46px;
  letter-spacing: 8px;
  color: #79b4a9;
  margin-bottom: 22px;
}

.not-found-logo::after {
  content: "";
  display: block;
  width: 110px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: #d8b84f;
}

.not-found-code {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(121, 180, 169, 0.16);
  color: #4f857a;
  font-weight: 700;
  letter-spacing: 1px;
}

.not-found-card h1 {
  max-width: 620px;
  margin: 0 auto;
  font-family: "Belleza", sans-serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 1.05;
  color: #24312f;
}

.not-found-card p {
  max-width: 560px;
  margin: 24px auto 0;
  font-size: 17px;
  line-height: 1.8;
  color: #65716f;
}

.not-found-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-home-404,
.btn-contact-404 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-home-404 {
  background: #4f857a;
  color: #ffffff;
}

.btn-home-404:hover {
  background: #5b9488;
  transform: translateY(-1px);
}

.btn-contact-404 {
  border: 1px solid #4f857a;
  color: #4f857a;
}

.btn-contact-404:hover {
  background: rgba(79, 133, 122, 0.1);
  transform: translateY(-1px);
}

@media (max-width: 620px) {
  .not-found-card {
    padding: 46px 24px;
    border-radius: 26px;
  }

  .not-found-logo {
    font-size: 38px;
  }

  .not-found-card h1 {
    font-size: 40px;
  }

  .not-found-actions {
    flex-direction: column;
  }

  .btn-home-404,
  .btn-contact-404 {
    width: 100%;
  }
}