* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 50%, #f0f9f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.error-container {
    max-width: 1000px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.error-content {
    flex: 1;
    max-width: 500px;
}

.error-title {
    font-size: 4rem;
    font-weight: 300;
    color: #00673e;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.error-message {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
}

.btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline {
    background: transparent;
    color: #00673e;
    border: 2px solid #00673e;
}

    .btn-outline:hover {
        background: #00673e;
        color: white;
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 103, 62, 0.2);
    }

.btn-filled {
    background: #00673e;
    color: white;
    border: 2px solid #00673e;
}

    .btn-filled:hover {
        background: #004d2e;
        border-color: #004d2e;
        color: white;
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 103, 62, 0.3);
    }

.help-link {
    color: #adb5bd;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .help-link:hover {
        color: #00673e;
        text-decoration: none;
    }

.error-page-logo-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: contain;
    border: 3px solid #00673e;
    background: white;
    padding: 20px;
}



/* Responsive design */
@media (max-width: 1024px) {
    .error-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .error-page-logo-container {
        order: -1;
    }

    .logo-placeholder {
        width: 150px;
        height: 150px;
    }

        .logo-placeholder i {
            font-size: 3rem;
        }
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .error-title {
        font-size: 3rem;
    }

    .error-message {
        font-size: 1.1rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        justify-content: center;
    }

    .logo-placeholder {
        width: 120px;
        height: 120px;
    }

        .logo-placeholder i {
            font-size: 2.5rem;
        }
}

@media (max-width: 480px) {
    .error-title {
        font-size: 2.5rem;
    }

    .error-message {
        font-size: 1rem;
    }
}
