
    /* Scoped CSS for Fuji Blog - Safety Focus */
    .fuji-safety-container {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    /* Headings - Distinct Style */
    .fuji-safety-container h2 {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        margin-top: 35px;
        margin-bottom: 20px;
        border-left: 5px solid #e60012; /* Fuji Red Brand Color */
        padding-left: 15px;
    }

    .fuji-safety-container h3 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 25px;
        margin-bottom: 15px;
        color: #333;
    }

    /* Text elements */
    .fuji-safety-container p { margin-bottom: 15px; text-align: justify; }
    .fuji-safety-container ul { margin-bottom: 20px; padding-left: 20px; }
    .fuji-safety-container li { margin-bottom: 10px; }

    /* Images */
    .fuji-safety-container img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 25px auto;
        border-radius: 4px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    /* Safety & Comparison Tables */
    .safety-table-wrapper {
        overflow-x: auto;
        margin: 25px 0;
        border: 1px solid #ddd;
        border-radius: 4px;
    }
    .safety-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
        font-size: 15px;
    }
    .safety-table th, .safety-table td {
        padding: 12px;
        border: 1px solid #ddd;
        text-align: left;
    }
    .safety-table th {
        background-color: #333;
        color: #fff;
        font-weight: bold;
    }
    .safety-table tr:nth-child(even) { background-color: #f9f9f9; }

    /* Feature Boxes */
    .safety-alert-box {
        background-color: #fff3cd;
        border-left: 5px solid #ffc107;
        padding: 20px;
        margin: 25px 0;
        border-radius: 4px;
        color: #856404;
    }
    .tech-insight-box {
        background-color: #e8f5e9;
        border-left: 5px solid #2e7d32;
        padding: 20px;
        margin: 25px 0;
        border-radius: 4px;
        color: #155724;
    }
    
    /* Links */
    .fuji-safety-container a { color: #e60012; text-decoration: underline; font-weight: bold; }

    /* FAQ */
    .faq-wrapper {
        background: #f8f8f8;
        padding: 20px;
        border-radius: 8px;
        margin-top: 30px;
    }
    .faq-q { font-weight: bold; display: block; margin-bottom: 5px; color: #000; font-size: 17px; }

    /* Remove top margin */
    .fuji-safety-container > *:first-child { margin-top: 0; }
