.error-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            text-align: center;
            font-family: 'Arima Madurai', sans-serif;
        }
        
        .error-number {
            font-size: 120px;
            font-weight: bold;
            color: #8B4513;
            margin: 20px 0;
            text-shadow: 3px 3px 0 #D2B48C;
            font-family: 'Amatic SC', sans-serif;
        }
        
        .error-message {
            font-size: 28px;
            color: #745744;
            margin-bottom: 30px;
        }
        
        .error-description {
            font-size: 18px;
            color: #333;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }
        
        .error-keywords {
            background-color: #f8f4f0;
            border-left: 4px solid #8B4513;
            padding: 20px;
            margin: 30px auto;
            max-width: 800px;
            text-align: left;
        }
        
        .error-keywords h3 {
            color: #745744;
            margin-top: 0;
        }
        
        .error-keywords ul {
            columns: 2;
            list-style-type: none;
            padding: 0;
        }
        
        .error-keywords li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }
        
        .error-keywords li:before {
            content: "•";
            color: #8B4513;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .error-actions {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }
        
        .error-button {
            display: inline-block;
            background-color: #8B4513;
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 4px;
            font-size: 18px;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
            font-family: 'Arima Madurai', sans-serif;
        }
        
        .error-button:hover {
            background-color: #A0522D;
            color: white;
        }
        
        .error-button-secondary {
            background-color: #D2B48C;
            color: #333;
        }
        
        .error-button-secondary:hover {
            background-color: #C19A6B;
        }
        
        .error-image {
            max-width: 400px;
            margin: 30px auto;
        }
        
        .error-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        @media (max-width: 768px) {
            .error-number {
                font-size: 80px;
            }
            
            .error-message {
                font-size: 22px;
            }
            
            .error-description {
                font-size: 16px;
            }
            
            .error-keywords ul {
                columns: 1;
            }
            
            .error-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .error-button {
                width: 100%;
                max-width: 300px;
            }
        }
        
        /* Animacja dla numeru błędu */
        @keyframes shake {
            0%, 100% {transform: translateX(0);}
            10%, 30%, 50%, 70%, 90% {transform: translateX(-5px);}
            20%, 40%, 60%, 80% {transform: translateX(5px);}
        }
        
        .shake {
            animation: shake 0.8s ease-in-out;
        }
        
        /* Breadcrumb */
        .breadcrumb {
            padding: 15px 0;
            background-color: #f9f5f0;
            border-bottom: 1px solid #e8e0d8;
            margin-bottom: 30px;
        }
        
        .breadcrumb-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .breadcrumb a {
            color: #8B4513;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb span {
            color: #745744;
        }