
        /* Base Reset & Typography */
        *, *::before, *::after {
            box-sizing: border-box;
        }
        body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
            color: #1e293b;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Container Blueprint - Transparent/White Base */
        .fj-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 15px;
            background-color: #ffffff;
        }

        /* Section Global Layout - Clean White Style */
        .fj-section {
            background-color: #ffffff;
            border-radius: 8px;
            border: 1px solid #f1f5f9;
            margin-bottom: 30px;
            padding: 30px 25px;
            display: block;
            overflow: hidden;
        }

        /* Section Headings Styling */
        .fj-section-title {
            font-size: 20px;
            font-weight: 700;
            color: #0f172a;
            margin-top: 0;
            margin-bottom: 20px;
            padding-left: 12px;
            border-left: 5px solid #e11d48; /* Ruby Red Accent */
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* -----------------------------------------
           1. HERO BANNER SECTION (Intro)
        -------------------------------------------- */
        .fj-hero-banner {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #ffffff;
            border-radius: 8px;
            padding: 40px 30px;
            margin-bottom: 30px;
            display: block;
        }
        .fj-hero-left {
            width: 65%;
            float: left;
            padding-right: 20px;
        }
        .fj-hero-right {
            width: 35%;
            float: left;
            text-align: center;
        }
        .fj-hero-right img {
            width: 100%;
            max-width: 280px;
            height: auto;
            border-radius: 6px;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }
        .fj-hero-tag {
            background-color: #e11d48;
            color: #ffffff;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 12px;
            text-transform: uppercase;
        }
        .fj-hero-banner h1 {
            font-size: 28px;
            font-weight: 800;
            margin: 0 0 15px 0;
            color: #ffffff;
            line-height: 1.2;
        }
        .fj-hero-banner p {
            font-size: 14px;
            color: #cbd5e1;
            margin: 0 0 20px 0;
        }
        .fj-clearfix::after {
            content: "";
            clear: both;
            display: table;
        }

        /* -----------------------------------------
           2. KEY FEATURES SECTION (Cards layout)
        -------------------------------------------- */
        .fj-feature-row {
            margin-left: -10px;
            margin-right: -10px;
        }
        .fj-feature-card {
            width: 33.333%;
            float: left;
            padding: 0 10px;
            margin-bottom: 20px;
        }
        .fj-card-inner {
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            padding: 20px;
            height: 100%;
            min-height: 180px;
        }
        .fj-card-icon {
            width: 40px;
            height: 40px;
            margin-bottom: 12px;
            display: block;
        }
        .fj-card-inner h3 {
            font-size: 16px;
            font-weight: 700;
            color: #0f172a;
            margin: 0 0 10px 0;
        }
        .fj-card-inner p {
            font-size: 13px;
            color: #475569;
            margin: 0;
        }

        /* -----------------------------------------
           3. TECHNICAL SPECIFICATIONS (Table style)
        -------------------------------------------- */
        .fj-spec-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }
        .fj-spec-table th, .fj-spec-table td {
            padding: 12px 15px;
            text-align: left;
            font-size: 14px;
        }
        .fj-spec-table th {
            background-color: #f8fafc;
            color: #334155;
            font-weight: 600;
            width: 30%;
            border-bottom: 1px solid #e2e8f0;
        }
        .fj-spec-table td {
            color: #0f172a;
            border-bottom: 1px solid #e2e8f0;
        }
        .fj-spec-table tr:last-child th, .fj-spec-table tr:last-child td {
            border-bottom: none;
        }

        /* -----------------------------------------
           4. INDUSTRIAL APPLICATIONS
        -------------------------------------------- */
        .fj-app-col-text {
            width: 55%;
            float: left;
            padding-right: 20px;
        }
        .fj-app-col-img {
            width: 45%;
            float: left;
        }
        .fj-app-col-img img {
            width: 100%;
            height: auto;
            border-radius: 6px;
            display: block;
        }
        .fj-app-list {
            margin: 0;
            padding: 0 0 0 18px;
        }
        .fj-app-list li {
            font-size: 14px;
            color: #334155;
            margin-bottom: 10px;
            line-height: 1.5;
        }

        /* -----------------------------------------
           RESPONSIVE MEDIA QUERIES (Mobile-first adapt)
        -------------------------------------------- */
        @media (max-width: 768px) {
            .fj-container {
                padding: 10px 5px;
            }
            .fj-hero-left {
                width: 100%;
                float: none;
                padding-right: 0;
                margin-bottom: 25px;
                text-align: center;
            }
            .fj-hero-right {
                width: 100%;
                float: none;
                text-align: center;
            }
            .fj-hero-banner h1 {
                font-size: 22px;
            }
            .fj-feature-card {
                width: 100%;
                float: none;
                padding: 0;
            }
            .fj-card-inner {
                min-height: auto;
            }
            .fj-spec-table th {
                width: 40%;
                font-size: 13px;
                padding: 10px;
            }
            .fj-spec-table td {
                font-size: 13px;
                padding: 10px;
            }
            .fj-app-col-text {
                width: 100%;
                float: none;
                padding-right: 0;
                margin-bottom: 20px;
            }
            .fj-app-col-img {
                width: 100%;
                float: none;
            }
        }
