        * {
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            min-height: 100vh;
            padding-bottom: 80px;
            padding-top: 80px;
            color: #333;
            background-color: #f8f9fa;
        }
        .error-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 70vh;
            padding: 40px 20px;
            text-align: center;
        }
        .error-icon {
            font-size: 80px;
            margin-bottom: 20px;
            color: #ff7f2a;
        }
        .error-code {
            font-size: 120px;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #ff7f2a 0%, #ff9a5a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        .error-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }
        .error-description {
            font-size: 16px;
            max-width: 500px;
            margin-bottom: 30px;
            line-height: 1.5;
            color: #666;
        }
        .error-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        .error-btn {
            font-size: 16px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            padding: 12px 24px;
            cursor: pointer;
            transition: all .3s ease;
            text-decoration: none;
            color: white;
            border: none;
            border-radius: 30px;
            background-color: #ff7f2a;
            box-shadow: 0 4px 10px rgba(255,127,42,.3);
            gap: 8px;
        }
        .error-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255,127,42,.4);
        }
        .error-btn.secondary {
            color: #ff7f2a;
            background-color: white;
            border: 2px solid #ff7f2a;
        }
        .error-btn.secondary:hover {
            background-color: rgba(255,127,42,.05);
        }
        .error-search-container {
            position: relative;
            max-width: 400px;
            width: 100%;
            margin: 30px auto;
        }
        .error-search-bar {
            font-size: 16px;
            width: 100%;
            padding: 16px 20px 16px 50px;
            transition: all .3s ease;
            border: none;
            border-radius: 30px;
            outline: none;
            background-color: #fff;
            box-shadow: 0 5px 20px rgba(0,0,0,.1);
        }
        .error-search-bar:focus {
            box-shadow: 0 5px 25px rgba(255,127,42,.2);
        }
        .error-search-icon {
            font-size: 18px;
            position: absolute;
            top: 50%;
            left: 20px;
            transform: translateY(-50%);
            color: #ff7f2a;
        }
        @media (max-width: 768px) {
            .error-code {
                font-size: 80px;
            }
            .error-title {
                font-size: 20px;
            }
            .error-description {
                font-size: 15px;
            }
            .error-actions {
                flex-direction: column;
                align-items: center;
            }
            .error-btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
        }