  .container404 {
            text-align: center;
            max-width: 600px;
            padding: 40px;
            background-color: white;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(255, 145, 0, 0.15);
            transition: transform 0.3s ease;
            margin: 100px auto 40px;
        }
        
        .container404:hover {
            transform: translateY(-5px);
        }
        
 
 .error-code {
            font-size: 120px;
            font-weight: 800;
            color: #ff8c00;
            line-height: 1;
            margin-bottom: 10px;
            text-shadow: 3px 3px 0 rgba(255, 145, 0, 0.2);
        }

        .error-title {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ff7700;
        }

        .error-message {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #8a704c;
        }

        .home-button {
            display: inline-block;
            padding: 14px 32px;
            background: linear-gradient(to right, #ff9d00, #ff7700);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255, 119, 0, 0.4);
        }

        .home-button:hover {
            background: linear-gradient(to right, #ff7700, #ff9d00);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 119, 0, 0.6);
            color: white;
            text-decoration: none;
        }
        
        