/* GMB: ADDING CSS FOR 404 FILE */
/* --- Custom 404 Error Page Styles --- */
.error-page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    text-align: center;
}

.error-page-content {
    max-width: 500px;
    padding: 20px;
}

.error-icon svg {
    width: 60px;
    height: 60px;
    color: #fbbc05; /* Yellowish-orange color */
    margin-bottom: 20px;
}

.error-code {
    font-size: 6rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.error-message-primary {
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 10px;
}

.error-message-secondary {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    margin-bottom: 40px;
}

.error-button {
    display: inline-block;
    background-color: #fbbc05; /* Same as icon */
    color: #000;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.2s;
}

.error-button:hover {
    background-color: #f9ca24; /* A slightly lighter yellow */
    color: #000;
}

.error-contact {
    margin-top: 30px;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.5);
}

.error-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}