.error-page{
    min-height:70vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:80px 0;
}

.error-content h1{
    font-size:120px;
    font-weight:700;
    color:var(--primary-blue);
    line-height:1;
    margin-bottom:15px;
}

.error-content h2{
    font-size:42px;
    margin-bottom:20px;
    color:#1d293f;
}

.error-content p{
    max-width:600px;
    margin:0 auto 30px;
    color:#666;
    line-height:1.8;
}

.error-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

@media(max-width:768px){

    .error-content h1{
        font-size:80px;
    }

    .error-content h2{
        font-size:30px;
    }

}