body{
    background-color: #FAF8F5;
}
.error-404-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 20px 20px;
}

.error-404-page .container {
  max-width: 800px;
  margin: auto;
}

.error-code {
  font-size: 180px;
  line-height: 1;
  font-weight: 800;
  color: #00A499;
  margin-bottom: 20px;
  letter-spacing: -5px;
}

.error-404-page h1 {
        font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.error-404-page p {
  font-size: 20px;
  line-height: 1.8;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto 40px;
}

.error-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-secondary{
    color:black;
}
.error-cta{
    text-align:center;
    margin-bottom:80px;
    padding:50px 10px;
    border-top:1px solid #E5E7EB;
}

.error-cta h2{
        font-family: "Cormorant Garamond", serif;
    font-size:32px;
    color:#0F172A;
    margin-bottom:15px;
    font-weight:700;
}

.error-cta p{
    max-width:650px;
    margin:0 auto 30px;
    color:#64748B;
    line-height:1.8;
    font-size:18px;
}

.cta-button{
        display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-width: 280px;
    height: 64px;
    background: #00a499;
    color: #111;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.35s ease;
    font-family: sans-serif;
}
.cta-button svg{
    width:20px;
}
.cta-button:hover{
    background: #ffffff;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.18);
}
@media (max-width: 768px) {
  .error-code {
    font-size: 110px;
  }

  .error-404-page h1 {
    font-size: 32px;
  }

  .error-404-page p {
    font-size: 18px;
  }

  .error-actions {
    flex-direction: column;
    align-items: center;
  }
}
