<!DOCTYPE html>
<html lang="id">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>404 Not Found</title>
    <style>
        body {
            background-color: #fcfcfc; /* Warna background abu-abu sangat muda */
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            color: #444;
        }

        .container {
            background-color: white;
            padding: 40px 60px;
            border-radius: 6px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08); /* Efek bayangan halus */
            text-align: center;
            max-width: 600px;
            border: 1px solid #eaeaea;
        }

        h1 {
            color: #d9534f; /* Warna oranye kemerahan seperti di gambar */
            font-size: 36px;
            margin-bottom: 20px;
            margin-top: 0;
            font-weight: bold;
        }

        p {
            font-size: 16px;
            line-height: 1.5;
            color: #333;
        }

        .sub-text {
            margin-top: 15px;
            font-size: 13px;
            color: #888;
        }
    </style>
</head>
<body>

    <div class="container">
        <h1>404 Not Found</h1>
        
        <p>Maaf, file atau halaman yang Anda cari tidak ditemukan.</p>
        
        <p class="sub-text">
            Silakan periksa kembali URL atau kembali ke <a href="/">Halaman Utama</a>.
        </p>
    </div>

</body>
</html>