
    /* Global Reset and Layout */
    .fuji-report-container {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.65;
        color: #2c3e50;
        background-color: #f7f9fa; /* Light, clean background color */
        max-width: 900px;
        margin: 0 auto;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    }

    /* Force no top spacing for the first element */
    .fuji-report-container > *:first-child {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Typography Limits (No larger than 20px) */
    .fuji-report-container h2 {
        font-size: 20px;
        font-weight: 700;
        color: #d32f2f; /* Fuji Red */
        margin-top: 40px;
        margin-bottom: 15px;
        border-bottom: 2px solid #eaeaea;
        padding-bottom: 8px;
    }

    .fuji-report-container h3 {
        font-size: 18px;
        font-weight: 600;
        color: #34495e;
        margin-top: 30px;
        margin-bottom: 12px;
    }

    .fuji-report-container p {
        margin-bottom: 20px;
    }

    .fuji-report-container strong {
        color: #1a252f;
    }

    .fuji-report-container a {
        color: #d32f2f;
        text-decoration: underline;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .fuji-report-container a:hover {
        color: #b71c1c;
    }

    /* Lists */
    .fuji-report-container ul, 
    .fuji-report-container ol {
        background-color: #ffffff;
        padding: 20px 20px 20px 40px;
        border-radius: 6px;
        border: 1px solid #e0e0e0;
        margin-bottom: 25px;
    }

    .fuji-report-container li {
        margin-bottom: 10px;
    }

    .fuji-report-container li:last-child {
        margin-bottom: 0;
    }

    /* Image Styling */
    .fuji-report-container img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 25px auto;
        border-radius: 6px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    /* Call to Action Box */
    .fuji-cta-box {
        background-color: #ffffff;
        border-left: 4px solid #d32f2f;
        padding: 20px;
        margin-top: 40px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    /* Responsive adjustments for mobile */
    @media (max-width: 600px) {
        .fuji-report-container {
            padding: 15px;
        }
        .fuji-report-container h2 {
            font-size: 18px;
        }
        .fuji-report-container h3 {
            font-size: 16px;
        }
    }
