﻿

        .header {
            /* padding: 25px 5%; */
            /* display: flex; */
            justify-content: space-between;
            /* align-items: center; */
            /* position: relative; */
            /* z-index: 100; */
            /* background: rgba(255, 255, 255, 0.9); */
            /* backdrop-filter: blur(10px); */
            /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05); */
        }

        .logo-container {
            /* display: flex; */
            /* align-items: center; */
            /* gap: 12px; */
        }

        .logo-icon {
            /* width: 45px; */
            /* height: 45px; */
            /* background: linear-gradient(135deg, #ff6b35, #ff8c42); */
            /* border-radius: 12px; */
            /* display: flex; */
            /* align-items: center; */
            /* justify-content: center; */
            /* position: relative; */
            /* box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25); */
        }

        .logo-icon svg {
            /* width: 28px; */
            /* height: 28px; */
        }

        .company-name {
            /* font-size: 24px; */
            /* font-weight: 700; */
            /* color: #1a1a2e; */
            /* letter-spacing: -0.5px; */
        }

        .company-name .e {
            /* color: #ff6b35; */
        }

        .nav-menu {
            /* display: flex; */
            /* gap: 35px; */
            /* list-style: none; */
        }

        .nav-menu a {
            /* color: #4a5568; */
            /* text-decoration: none; */
            /* font-size: 15px; */
            /* font-weight: 500; */
            /* transition: color 0.3s; */
            /* position: relative; */
        }

        .nav-menu a:hover {
            color: #ff6b35;
        }

        .main-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16% 5% 13%;
            position: relative;
        }

        .animated-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            opacity: 0.4;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.15));
            animation: float-shape 20s infinite ease-in-out;
        }

        @keyframes float-shape {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(50px, -50px) scale(1.1);
            }
            66% {
                transform: translate(-30px, 30px) scale(0.9);
            }
        }

        .content-wrapper {
            max-width: 1200px;
            display: flex;
            align-items: center;
            gap: 80px;
            position: relative;
            z-index: 1;
        }

        .error-visual {
            flex: 1;
            position: relative;
        }

        .error-number {
            font-size: 220px;
            font-weight: 900;
            line-height: 0.9;
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffb366 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            animation: float-number 3s ease-in-out infinite;
            text-align: center;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        @keyframes float-number {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        .error-visual::before {
            content: '404';
            position: absolute;
            font-size: 220px;
            font-weight: 900;
            color: rgba(255, 107, 53, 0.08);
            top: 15px;
            left: 15px;
            z-index: -1;
            width: 100%;
            text-align: center;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .robot-svg {
            /* position: absolute; */
            /* right: -40px; */
            /* top: 50%; */
            /* transform: translateY(-50%); */
            /* width: 180px; */
            animation: hover 3s ease-in-out infinite;
            /* filter: drop-shadow(0 10px 20px rgba(255, 107, 53, 0.15)); */
        }

        @keyframes hover {
            0%, 100% { transform: translateY(-50%) rotate(-5deg); }
            50% { transform: translateY(-60%) rotate(5deg); }
        }

        .error-content {
            flex: 1;
        }

        .main-content .error-title {
            font-size: 36px;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 20px;
            line-height: 1.2;
        }

       .main-content .error-description {
            font-size: 16px;
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 35px;
        }

        .error-reasons {
            /* background: white; */
            /* border: 2px solid #ffe8e0; */
            /* border-radius: 16px; */
            /* padding: 28px; */
            /* margin-bottom: 35px; */
            /* box-shadow: 0 4px 20px rgba(255, 107, 53, 0.08); */
        }

        .error-reasons h3 {
            /* color: #ff6b35; */
            /* font-size: 16px; */
            /* font-weight: 700; */
            /* margin-bottom: 18px; */
            /* text-transform: uppercase; */
            /* letter-spacing: 1px; */
        }

        .error-reasons ul {
            /* list-style: none; */
            /* display: grid; */
            /* gap: 14px; */
        }

        .error-reasons li {
            /* color: #4a5568; */
            /* font-size: 15px; */
            /* padding-left: 28px; */
            /* position: relative; */
            /* line-height: 1.6; */
        }

        .error-reasons li::before {
            /* content: '→'; */
            /* position: absolute; */
            /* left: 0; */
            /* color: #ff6b35; */
            /* font-weight: bold; */
            /* font-size: 18px; */
        }

        .button-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 10px 25px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ff6b35, #ff8c42);
            color: white;
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
        }

         .main-content  .btn-primary:hover {
            transform: translateY(-3px);background: #f58220;
    color: #FFFFFF;
    border-color: #f58220;
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
        }

       .main-content .btn-secondary {
            background: white;
            color: #ff6b35;
            border: 2px solid #ff6b35;
        }

       .main-content .btn-secondary:hover {
           background: white;
    color: #ff6b35;
    border: 2px solid #ff6b35;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.15);
        }

        .footer-links {
            /* padding: 30px 5%; */
            /* background: white; */
            /* border-top: 2px solid #f0f0f0; */
            /* display: flex; */
            /* justify-content: space-between; */
            /* align-items: center; */
            /* flex-wrap: wrap; */
            /* gap: 20px; */
        }

        .quick-links {
            /* display: flex; */
            /* gap: 30px; */
            /* flex-wrap: wrap; */
        }

        .quick-links a {
            /* color: #4a5568; */
            /* text-decoration: none; */
            /* font-size: 14px; */
            /* font-weight: 500; */
            /* transition: color 0.3s; */
        }

        .quick-links a:hover {
            color: #ff6b35;
        }

        .footer-text {
            /* color: #718096; */
            /* font-size: 14px; */
        }

        .decorative-dots {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .dot {
            position: absolute;
            width: 8px;
            height: 8px;
            background: #ff6b35;
            border-radius: 50%;
            opacity: 0.2;
            animation: pulse-dot 3s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { transform: scale(1); opacity: 0.2; }
            50% { transform: scale(1.5); opacity: 0.4; }
        }

        @media (max-width: 1024px) {
            .content-wrapper {
                flex-direction: column;
                text-align: center;
                gap: 50px;
            }

            .error-visual {
                display: flex;
                justify-content: center;
            }

            .robot-svg {
                display: none;
            }

            .nav-menu {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .error-number {
                font-size: 140px;
            }

            .error-visual::before {
                font-size: 140px;
            }

            .error-title {
                font-size: 36px;
            }

            .error-description {
                font-size: 16px;
            }

            .button-group {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        section.ps-contect-head-view, section.ps-contect-info-view {
    display: none;
}