/* ===== 404 ERROR PAGE ===== */
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    background-color: #f8f9fa;
}
.error-page__code {
    font-size: 120px;
    font-weight: 800;
    color: #d40000;
    line-height: 1;
    margin-bottom: 16px;
}
.error-page__title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.error-page__message {
    font-size: 16px;
    color: #667085;
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.5;
}
.error-page__btn {
    background-color: #d40000;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}
.error-page__btn:hover {
    background-color: #b30000;
    color: white;
}
