
    /* SCOPED CSS FOR FUJI SUPER F2 PAGE */
    #fuji-super-f2-page {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* CONTAINER ALIGNMENT */
    #fuji-super-f2-page .content-container {
        width: 100%;
        max-width: 100%; /* Force full width alignment */
        margin: 0;
        padding: 0; /* Remove top padding */
    }

    /* TYPOGRAPHY */
    #fuji-super-f2-page h2 {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        border-bottom: 2px solid #ddd;
        padding-bottom: 8px;
        margin-top: 30px;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    /* FIX: Remove top margin from the very first heading */
    #fuji-super-f2-page h2:first-of-type {
        margin-top: 0;
    }

    #fuji-super-f2-page h3 {
        font-size: 18px;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 8px;
        color: #333;
    }

    #fuji-super-f2-page p {
        margin-bottom: 15px;
        text-align: justify;
    }

    /* IMAGE STYLING */
    #fuji-super-f2-page .img-wrapper {
        text-align: center;
        margin: 25px 0;
        width: 100%;
    }

    #fuji-super-f2-page img {
        max-width: 600px; /* Restrict all images to 600px */
        width: 100%;
        height: auto;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        border: 1px solid #eee;
        display: inline-block;
    }

    /* LISTS */
    #fuji-super-f2-page ul {
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
    }

    #fuji-super-f2-page li {
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
    }

    #fuji-super-f2-page .check-icon {
        color: #ba372a;
        position: absolute;
        left: 0;
        font-weight: bold;
    }

    /* TABLES */
    #fuji-super-f2-page table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
        border: 1px solid #eee;
        font-size: 15px;
    }

    #fuji-super-f2-page th, 
    #fuji-super-f2-page td {
        padding: 10px 12px;
        border: 1px solid #ddd;
        text-align: left;
    }

    #fuji-super-f2-page th {
        background-color: #f5f5f5;
        font-weight: bold;
        color: #ba372a;
        width: 35%;
    }

    /* BOXES */
    #fuji-super-f2-page .app-box {
        flex: 1;
        min-width: 280px;
        background: #f9f9f9;
        padding: 15px;
        border-left: 4px solid #ba372a;
        margin-bottom: 10px;
    }

    #fuji-super-f2-page .safety-box {
        background-color: #fff8e1;
        border: 1px solid #ffe0b2;
        padding: 20px;
        margin-top: 30px;
        border-radius: 4px;
    }

    /* LINKS & BUTTONS */
    #fuji-super-f2-page a {
        color: #ba372a;
        text-decoration: underline;
    }

    #fuji-super-f2-page .btn {
        display: inline-block;
        padding: 12px 24px;
        background-color: #ba372a;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        font-weight: bold;
        margin-top: 20px;
    }

    /* MOBILE OPTIMIZATION */
    @media (max-width: 768px) {
        #fuji-super-f2-page .app-box { min-width: 100%; margin-bottom: 15px; }
        #fuji-super-f2-page table { display: block; overflow-x: auto; }
        #fuji-super-f2-page th, #fuji-super-f2-page td { min-width: 120px; }
    }
