
    /* Global Styles & Reset */
    .fuji-product-container {
        font-family: Verdana, Geneva, sans-serif;
        font-size: 16px;
        line-height: 1.5; /* Tightened line height */
        color: #333;
        max-width: 1200px; /* Wider display for PC */
        margin: 0 auto;
        padding: 0 15px 20px 15px; /* Removed top padding */
        box-sizing: border-box;
    }

    /* Headings */
    .fuji-product-container h2 {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        border-bottom: 2px solid #ddd;
        padding-bottom: 8px;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    /* Remove margin for the very first heading */
    .fuji-product-container h2:first-of-type {
        margin-top: 0;
    }

    .fuji-product-container h3 {
        font-size: 18px;
        font-weight: 600;
        color: #444;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    /* Text & Lists */
    .fuji-product-container p {
        margin-bottom: 12px;
        text-align: justify;
    }

    .fuji-product-container ul {
        margin-bottom: 15px;
        padding-left: 20px;
    }

    .fuji-product-container li {
        margin-bottom: 8px;
    }

    /* Responsive Images */
    .fuji-product-container img {
        max-width: 100%;
        width: auto;
        height: auto;
        display: block;
        margin: 15px auto;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    /* Flex Layout for PC */
    .fuji-flex-row {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        align-items: center;
        margin-bottom: 20px;
    }

    .fuji-flex-col {
        flex: 1;
        min-width: 300px;
    }

    /* Feature Cards */
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-bottom: 20px;
    }

    .feature-card {
        background: #f9f9f9;
        padding: 15px;
        border-left: 4px solid #333;
        border-radius: 4px;
    }

    /* Links */
    .fuji-link {
        color: #0056b3;
        text-decoration: underline;
        font-weight: bold;
    }

    /* FAQ Section */
    .faq-item {
        margin-bottom: 10px;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }
    .faq-question {
        font-weight: bold;
        color: #000;
        display: block;
        margin-bottom: 5px;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .fuji-product-container {
            padding: 10px;
        }
        .feature-grid {
            grid-template-columns: 1fr;
        }
        .fuji-flex-row {
            flex-direction: column;
        }
        .fuji-product-container h2 {
            margin-top: 20px;
        }
    }
