
    /* SCOPED CSS for FUJI Mounted Wheels Page */
    #fuji-mounted-detail {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px 40px 15px;
    }

    /* Headings */
    #fuji-mounted-detail h2 {
        font-size: 20px; 
        color: #000;
        border-bottom: 2px solid #d32f2f; 
        padding-bottom: 10px;
        margin-top: 40px;
        margin-bottom: 20px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    #fuji-mounted-detail h2:first-of-type { margin-top: 0; }

    #fuji-mounted-detail h3 {
        font-size: 18px;
        color: #444;
        margin-top: 25px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    /* Text & Lists */
    #fuji-mounted-detail p { margin-bottom: 15px; text-align: justify; }
    #fuji-mounted-detail ul { margin-bottom: 20px; padding-left: 20px; list-style-type: square; }
    #fuji-mounted-detail li { margin-bottom: 8px; }

    /* Grid Layout for Features (PC: 2 columns, Mobile: 1 column) */
    .fuji-feature-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 30px;
        align-items: start;
    }

    .fuji-feature-box {
        background: #f9f9f9;
        padding: 20px;
        border-radius: 4px;
        border-left: 4px solid #d32f2f;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    /* Images */
    #fuji-mounted-detail img {
        display: block;
        max-width: 100%;
        height: auto;
        border-radius: 4px;
        margin: 20px auto;
    }

    /* Technical Table */
    .fuji-tech-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 25px;
        font-size: 15px;
    }
    .fuji-tech-table th, .fuji-tech-table td {
        border: 1px solid #ddd;
        padding: 10px;
        text-align: left;
    }
    .fuji-tech-table th {
        background-color: #f2f2f2;
        font-weight: bold;
        width: 30%;
    }

    /* Grinder Showcase */
    .fuji-grinder-showcase {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    
    .fuji-grinder-card {
        border: 1px solid #e0e0e0;
        padding: 20px;
        border-radius: 5px;
        background-color: #fff;
        transition: box-shadow 0.3s ease;
    }

    .fuji-grinder-card:hover {
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    /* FAQ Section */
    .fuji-faq-item {
        border-bottom: 1px solid #eee;
        padding: 15px 0;
    }
    .fuji-faq-question {
        font-weight: bold;
        color: #d32f2f;
        display: block;
        margin-bottom: 5px;
    }
    .fuji-faq-answer {
        color: #555;
        font-size: 15px;
    }

    /* Internal Links Section */
    .fuji-related-links {
        background-color: #e3f2fd;
        padding: 15px;
        border-radius: 5px;
        margin-top: 20px;
    }
    .fuji-link {
        color: #0277bd;
        text-decoration: underline;
        font-weight: bold;
    }

    /* Call to Action */
    .fuji-cta-block {
        background-color: #2c3e50;
        color: #ffffff;
        text-align: center;
        padding: 30px 20px;
        border-radius: 6px;
        margin-top: 40px;
    }

    .fuji-cta-block h3 {
        color: #ffffff;
        margin-top: 0;
        font-size: 22px;
    }

    .fuji-cta-block p {
        text-align: center;
        font-size: 16px;
        margin-bottom: 20px;
    }

    .fuji-cta-btn {
        display: inline-block;
        background-color: #d32f2f;
        color: #ffffff;
        padding: 12px 30px;
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        border-radius: 4px;
        transition: background-color 0.3s;
    }

    .fuji-cta-btn:hover {
        background-color: #b71c1c;
        color: #ffffff;
    }

    /* Mobile Media Query */
    @media (max-width: 768px) {
        .fuji-feature-grid, .fuji-grinder-showcase { grid-template-columns: 1fr; }
        #fuji-mounted-detail { padding: 0 10px 30px 10px; }
        .fuji-tech-table { font-size: 14px; }
    }
