
    /* Global Container Styles */
    .fuji-article-container {
        font-family: 'Segoe UI', Verdana, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.8;
        color: #333;
        max-width: 1100px; /* Wide layout for PC */
        margin: 0 auto;
        padding: 30px 20px;
        box-sizing: border-box;
        background-color: #fff;
    }

    /* Headings */
    .fuji-article-container h2 {
        font-size: 24px; 
        font-weight: 700;
        color: #e60012; /* Fuji Red */
        margin-top: 45px;
        margin-bottom: 20px;
        border-bottom: 2px solid #f1f1f1;
        padding-bottom: 10px;
    }

    .fuji-article-container h3 {
        font-size: 20px;
        font-weight: 600;
        color: #003366;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    /* Text & Links */
    .fuji-article-container p {
        margin-bottom: 18px;
        text-align: justify;
    }

    .fuji-article-container a {
        color: #e60012;
        text-decoration: underline;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .fuji-article-container a:hover {
        color: #990000;
    }

    /* Responsive Images */
    .fuji-responsive-img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 25px auto;
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .img-caption {
        text-align: center;
        font-size: 0.9em;
        color: #666;
        margin-top: -15px;
        margin-bottom: 25px;
        font-style: italic;
    }

    /* Comparison Table Styling */
    .table-wrapper {
        overflow-x: auto;
        margin: 30px 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .fuji-data-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
        background-color: #fff;
        min-width: 600px;
    }
    .fuji-data-table th, .fuji-data-table td {
        border: 1px solid #dee2e6;
        padding: 14px;
        text-align: left;
    }
    .fuji-data-table th {
        background-color: #333;
        color: #fff;
        font-weight: 600;
    }
    .fuji-data-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    /* Highlight Boxes */
    .fuji-highlight-box {
        background-color: #f8f9fa;
        border-left: 5px solid #e60012;
        padding: 25px;
        margin: 30px 0;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.04);
    }
    
    .fuji-authority-box {
        background-color: #eef2f5;
        border: 1px solid #d1d9e0;
        padding: 30px;
        margin: 40px 0;
        border-radius: 8px;
    }

    /* Lists */
    .fuji-article-container ul {
        background: #fcfcfc;
        padding: 20px 20px 20px 40px;
        border-radius: 6px;
        border-left: 4px solid #ddd;
        margin-bottom: 25px;
    }
    .fuji-article-container li {
        margin-bottom: 10px;
    }

    /* Contact Card / CTA */
    .fuji-contact-card {
        background: #2c3e50;
        color: #fff;
        padding: 30px;
        border-radius: 8px;
        margin-top: 40px;
        border-left: 6px solid #e60012;
    }
    .fuji-contact-card h3 {
        color: #fff;
        margin-top: 0;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 10px;
    }
    .fuji-contact-card a {
        color: #ffcc00;
    }
    .cta-button {
        display: inline-block;
        background-color: #e60012;
        color: #fff !important;
        padding: 12px 25px;
        text-decoration: none !important;
        border-radius: 4px;
        font-weight: bold;
        margin-top: 15px;
        text-transform: uppercase;
    }
    .cta-button:hover {
        background-color: #cc0010;
    }

    /* Mobile Optimization */
    @media screen and (max-width: 768px) {
        .fuji-article-container { padding: 15px; }
        .fuji-article-container h2 { font-size: 22px; margin-top: 30px; }
        .fuji-authority-box, .fuji-highlight-box { padding: 15px; }
    }
