
    /* --- GLOBAL STYLES --- */
    .fuji-details-container {
        font-family: 'Verdana', sans-serif;
        font-size: 16px; /* Base Text Size */
        line-height: 1.7; 
        color: #333;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
        box-sizing: border-box;
    }

    /* --- COLORS --- */
    :root {
        --fuji-red: #C41230; /* Professional Industrial Red */
        --fuji-bg-light: #f8f9fa;
        --fuji-border: #e9ecef;
    }

    /* --- TYPOGRAPHY (Strict Size Limits) --- */
    .fuji-h2 {
        color: var(--fuji-red);
        font-size: 20px; /* Max Limit set to 20px */
        font-weight: 700;
        border-bottom: 2px solid var(--fuji-border);
        padding-bottom: 8px;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .fuji-h3 {
        color: #222;
        font-size: 18px; /* Hierarchically smaller than H2 */
        font-weight: 700;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .fuji-text-link {
        color: var(--fuji-red);
        text-decoration: underline;
        font-weight: bold;
    }
    .fuji-text-link:hover {
        color: #8a0b20;
    }

    /* --- IMAGES & LAYOUT --- */
    .fuji-img-responsive {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 25px auto;
        border-radius: 4px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    }

    /* Feature List Box */
    .feature-box {
        background-color: var(--fuji-bg-light);
        padding: 20px;
        border-radius: 5px;
        margin-bottom: 20px;
    }
    .feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .feature-list li {
        margin-bottom: 15px;
        padding-left: 20px;
        position: relative;
    }
    .feature-list li::before {
        content: '■';
        color: var(--fuji-red);
        font-size: 12px;
        position: absolute;
        left: 0;
        top: 5px;
    }

    /* Tables */
    .fuji-spec-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        font-size: 15px;
    }
    .fuji-spec-table th {
        background-color: #444;
        color: white;
        padding: 12px 15px;
        text-align: left;
        width: 35%;
    }
    .fuji-spec-table td {
        border: 1px solid var(--fuji-border);
        padding: 12px 15px;
        vertical-align: middle;
    }
    .fuji-spec-table tr:nth-child(even) {
        background-color: #fcfcfc;
    }

    /* Special Sections */
    .expiration-box {
        background-color: #e3f2fd;
        border-left: 5px solid #2196f3;
        padding: 20px;
        margin: 25px 0;
    }
    .review-section {
        border: 1px solid #ddd;
        background-color: #fff;
        padding: 25px;
        margin-top: 40px;
        text-align: center;
    }

    /* FAQ Styling */
    .faq-item {
        margin-bottom: 20px;
    }
    .faq-q {
        font-weight: bold;
        color: var(--fuji-red);
        display: block;
        margin-bottom: 5px;
    }

    /* CTA Button */
    .fuji-cta-container {
        text-align: center;
        margin-top: 50px;
        margin-bottom: 40px;
        padding: 30px;
        background-color: var(--fuji-bg-light);
        border-radius: 8px;
    }
    .fuji-cta-btn {
        display: inline-block;
        background-color: var(--fuji-red);
        color: #fff !important;
        padding: 14px 30px;
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        border-radius: 4px;
        transition: background 0.3s ease;
    }
    .fuji-cta-btn:hover {
        background-color: #a00e26;
    }

    @media (max-width: 600px) {
        .fuji-spec-table th, .fuji-spec-table td {
            display: block; width: 100%;
        }
        .fuji-spec-table th { text-align: center; background-color: #555; }
    }
