
    /* Global Styles & PC Optimization */
    .fuji-content-wrapper {
        font-family: 'Segoe UI', Verdana, sans-serif;
        font-size: 16px; /* Base text size 16px */
        line-height: 1.6;
        color: #333;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Headings */
    .fuji-section-title {
        font-size: 24px; /* Scaled proportionally for 16px base */
        font-weight: bold;
        color: #000;
        border-bottom: 2px solid #ddd;
        padding-bottom: 10px;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .fuji-section-title.first {
        margin-top: 0;
    }

    /* Paragraphs & Lists */
    .fuji-content-wrapper p {
        margin-bottom: 16px;
    }
    .fuji-content-wrapper ul {
        margin-top: 0;
        margin-bottom: 16px;
    }

    /* Image & Video Responsive Control */
    .fuji-content-wrapper img, 
    .fuji-content-wrapper video {
        max-width: 100%;
        height: auto !important;
        display: block;
        margin: 20px auto;
        border-radius: 4px;
    }
    .fuji-img-shadow {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    /* Table Styles */
    .fuji-tech-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        min-width: 300px;
        font-size: 15px; /* Slightly smaller for tabular data */
    }
    .fuji-tech-table th {
        background-color: #f5f5f5;
        font-weight: bold;
        width: 35%;
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }
    .fuji-tech-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }

    /* Comparison Box Styles */
    .comparison-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    .compare-card {
        padding: 20px;
        border-radius: 8px;
    }
    .compare-card h3 {
        font-size: 20px;
        margin-top: 0;
        margin-bottom: 15px;
    }
    .compare-bad {
        background-color: #fff5f5;
        border: 1px solid #ffcccc;
    }
    .compare-good {
        background-color: #f0fff4;
        border: 1px solid #c3e6cb;
    }

    /* FAQ Styles */
    .fuji-faq-container {
        margin-top: 30px;
        background-color: #fafafa;
        padding: 20px;
        border-radius: 8px;
    }
    .fuji-faq-item {
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
    .fuji-faq-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .fuji-faq-q {
        font-weight: bold;
        color: #000;
        font-size: 17px;
        margin-bottom: 8px;
        display: block;
    }
    .fuji-faq-a {
        color: #444;
        font-size: 16px;
        margin: 0;
    }

    /* Bottom Text Link Section */
    .fuji-explore-text {
        margin-top: 40px;
        margin-bottom: 30px;
        padding-top: 20px;
        text-align: center;
        background-color: #f9f9f9;
        padding: 30px 20px;
        border-radius: 6px;
        border: 1px solid #eee;
    }
    .fuji-explore-text h3 {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 20px;
        color: #333;
    }
    .fuji-explore-text p {
        font-size: 16px;
        color: #555;
        margin: 0;
    }
    .fuji-text-link {
        color: #C41230; /* Brand Red */
        font-weight: bold;
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: border-bottom 0.2s ease;
    }
    .fuji-text-link:hover {
        border-bottom: 1px solid #C41230;
    }

    /* Info Boxes */
    .pro-tip-box {
        background-color: #e3f2fd; 
        padding: 20px; 
        border-left: 5px solid #2196f3; 
        border-radius: 4px; 
        margin: 30px 0;
    }
    .warning-box {
        background-color: #fff8e1; 
        border: 1px solid #ffe0b2; 
        padding: 20px; 
        border-radius: 6px;
        margin-bottom: 30px;
    }

    /* Mobile Responsive Adjustments */
    @media (max-width: 768px) {
        .fuji-content-wrapper {
            font-size: 15px; /* Slightly scaled down for mobile screens */
        }
        .fuji-section-title {
            font-size: 20px;
            margin-top: 30px;
        }
        .comparison-grid { 
            grid-template-columns: 1fr; 
            gap: 15px;
        }
        .compare-card h3 {
            font-size: 18px;
        }
        .fuji-faq-q {
            font-size: 16px;
        }
        .fuji-faq-a {
            font-size: 15px;
        }
        .fuji-explore-text h3 {
            font-size: 18px;
        }
        .fuji-explore-text p {
            font-size: 15px;
        }
        .fuji-tech-table {
            font-size: 14px;
        }
    }
