 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-image: url('factory.jpg'); 
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: #333;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow-x: hidden;
            padding: 20px 10px;
        }

       
        body::before {
            content: "";
            position: fixed;
            top: -10px;      
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: inherit;
            background-attachment: fixed;
            filter: blur(8px);
            z-index: -1;
        }

      
        .container {
            display: flex;
            width: 100%;
            max-width: 1200px;
            min-height: 80vh;
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

      
        .left-side {
            flex: 1;
            background: #1a2a6c; 
            color: #ffffff;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

       
        .logo-wrapper {
            display: flex;
            align-items: center;
            gap: 15px; 
            margin-bottom: 40px;
        }

      
        .logo-circle {
            width: 70px;
            height: 70px;
            background: #ffffff; 
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #000000;  
            flex-shrink: 0; 
        }

        
        .logo-circle span {
            color: #1a2a6c;
            font-weight: 800;
            font-size: 1.2rem;
            letter-spacing: -0.5px;
        }

       
        .logo-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

      
        .logo-text {
            font-size: 1.3rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: #ffffff;
        }

        .left-side h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .left-side p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #e0e0e0;
            margin-bottom: 20px;
        }

        
        .right-side {
            flex: 1;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #ffffff;
        }

        .right-side h2 {
            font-size: 2rem;
            color: #1a2a6c;
            margin-bottom: 30px;
        }

        .contact-method {
            margin-bottom: 25px;
        }

        .contact-method h3 {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #777;
            margin-bottom: 5px;
        }

        .contact-method p, .contact-method a {
            font-size: 1.1rem;
            color: #222;
            text-decoration: none;
            transition: color 0.2s;
        }

        .contact-method a:hover {
            color: #f4a261;
        }

        .status-footer {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.6);
            color: #ffffff;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            backdrop-filter: blur(5px);
            text-align: center;
            white-space: nowrap;
            z-index: 10;
        }

        @media (max-width: 768px) {
            body {
                justify-content: flex-start;
            }

            .container {
                flex-direction: column;
                min-height: auto;
                margin: 0 0 20px 0;
            }

            .left-side, .right-side {
                padding: 40px 24px;
            }

            .left-side h1 {
                font-size: 2rem;
            }

            .right-side h2 {
                font-size: 1.75rem;
            }

            .status-footer {
                position: relative;
                bottom: auto;
                left: auto;
                transform: none;
                margin: 10px auto 20px auto;
                white-space: normal;
                width: 90%;
                max-width: 340px;
            }
        }