
body.error-page-design {
    background-color: #f8f9fa;
    color: #343a40;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

.error-container {
    max-width: 600px;
    padding: 40px 20px;
}

.error-container .error-code {
    font-size: 6rem;
    font-weight: 700;
    color: #001760;
    margin: 0;
}

.error-container .error-title {
    font-size: 2rem;
    font-weight: 500;
    margin: 10px 0;
}

.error-container .error-description {
    font-size: 1.1rem;
    margin: 20px 0;
}

.error-container .error-actions {
    margin-top: 30px;
}

.error-container .error-actions a {
    text-decoration: none;
    color: #fff;
    background-color: #001760;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1rem;
    margin: 0 10px;
    transition: background-color 0.3s;
}

.error-container .error-actions a:hover {
    background-color: #0033a0;
}

.error-container .error-graphic {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.error-container .error-graphic svg {
    width: 100%;
    height: 100%;
}
