
    /* Global Container Settings */
    .fuji-blog-wrapper {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.7;
        color: #333;
        max-width: 1100px; 
        margin: 0 auto;
        padding: 20px;
        background-color: #fff;
    }

    /* Remove top spacing */
    .fuji-blog-wrapper > *:first-child {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Headings */
    .fuji-blog-wrapper h2 {
        font-size: 24px;
        font-weight: 700;
        color: #e60012; /* Fuji Red */
        margin-top: 45px;
        margin-bottom: 25px;
        border-bottom: 2px solid #e60012;
        padding-bottom: 10px;
    }

    .fuji-blog-wrapper h3 {
        font-size: 20px;
        font-weight: 600;
        color: #2c3e50;
        margin-top: 35px;
        margin-bottom: 15px;
    }

    /* Text & Links */
    .fuji-blog-wrapper p {
        margin-bottom: 18px;
        text-align: justify;
    }

    .fuji-blog-wrapper a {
        color: #e60012;
        text-decoration: underline;
        font-weight: 600;
    }

    /* Lists */
    .fuji-blog-wrapper ul {
        background: #fcfcfc;
        padding: 25px 25px 25px 45px;
        border-radius: 6px;
        border-left: 5px solid #ddd;
        margin-bottom: 25px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .fuji-blog-wrapper li {
        margin-bottom: 12px;
    }

    /* Video Container */
    .video-wrapper {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 */
        height: 0;
        margin-bottom: 35px;
        background: #000;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* Tech Feature Cards */
    .tech-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 35px;
    }
    .tech-item {
        flex: 1 1 300px; /* Base width */
        background: #fff;
        border: 1px solid #eee;
        padding: 25px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        border-top: 4px solid #e60012;
        transition: transform 0.2s;
    }
    .tech-item:hover {
        transform: translateY(-2px);
    }
    .tech-item strong {
        display: block;
        font-size: 18px;
        margin-bottom: 12px;
        color: #e60012;
    }

    /* Info Box */
    .info-box {
        background-color: #eef2f5;
        border-left: 5px solid #2c3e50;
        padding: 20px;
        margin: 30px 0;
        font-style: italic;
    }

    /* Table Styling */
    .table-responsive {
        overflow-x: auto;
        margin: 30px 0;
    }
    .test-result-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }
    .test-result-table th, .test-result-table td {
        border: 1px solid #ddd;
        padding: 14px;
        text-align: center;
    }
    .test-result-table th {
        background-color: #333;
        color: #fff;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    .test-result-table tr:nth-child(even) { background-color: #f9f9f9; }
    .test-result-table tr:hover { background-color: #f1f1f1; }

    /* Contact Box */
    .contact-box {
        background-color: #fff5f5;
        padding: 25px;
        border-radius: 6px;
        border: 1px solid #ffcccc;
        border-left: 6px solid #e60012;
        margin-top: 40px;
    }

    /* FAQ Styling */
    .faq-item {
        background: #fafafa;
        border: 1px solid #eee;
        padding: 18px;
        margin-bottom: 15px;
        border-radius: 4px;
    }
    .faq-q {
        font-weight: bold;
        color: #000;
        display: block;
        margin-bottom: 8px;
        font-size: 17px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .tech-item { flex: 1 1 100%; }
        .fuji-blog-wrapper { padding: 15px; }
    }
