
    /* --- Main Container Styling (Responsive) --- */
    .fuji-product-container {
        font-family: Verdana, sans-serif;
        color: #333;
        line-height: 1.6;
        font-size: 16px; 
        max-width: 100%;
        overflow-x: hidden; 
    }

    /* --- Industrial Style Headings (Bold H3) --- */
    .fuji-h3-title {
        font-weight: bold;          /* Kept Bold for hierarchy */
        font-size: 20px; 
        border-left: 6px solid #E60012; /* Red accent line remains for brand identity */
        background-color: #f9f9f9;
        padding: 12px 18px;
        margin-top: 35px;
        margin-bottom: 15px;
        color: #000;
    }

    /* --- List Styling for Readability --- */
    .fuji-list {
        margin-bottom: 20px;
        padding-left: 20px;
    }
    .fuji-list li {
        margin-bottom: 8px;
    }

    /* --- CTA Button Styling (Green) --- */
    .fuji-cta-button {
        display: inline-block;
        padding: 12px 30px;
        background-color: #28a745;  /* Updated to Green */
        color: #fff !important;
        text-decoration: none;
        font-weight: bold;
        border-radius: 4px;
        font-size: 16px;
        transition: background-color 0.3s ease;
        margin-top: 20px;
    }
    
    .fuji-cta-button:hover {
        background-color: #1e7e34; /* Darker green on hover */
        text-decoration: none;
    }

    /* --- Mobile Optimization (<768px) --- */
    @media screen and (max-width: 768px) {
        .fuji-product-container {
            font-size: 14px !important; 
            line-height: 1.5;
        }
        .fuji-h3-title {
            font-size: 17px !important; 
            border-left-width: 4px;     
            padding: 8px 12px;          
            margin-top: 25px;
        }
        .fuji-cta-button {
            width: 100%;            /* Full width button on mobile */
            text-align: center;
            box-sizing: border-box;
        }
    }
