
    /* SCOPED CSS: Fuji Super F2 Aluminum Theme */
    #fuji-alum-content {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        line-height: 1.5;
        color: #333;
        font-size: 16px;
        background-color: #fff;
        width: 100%;
    }

    /* Full Width Container */
    #fuji-alum-content .article-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0; /* Removed top padding entirely */
        box-sizing: border-box;
    }

    /* Typography - Fuji Red Theme */
    #fuji-alum-content h2 {
        font-size: 22px;
        color: #b22222; /* Fuji Industrial Red */
        border-bottom: 2px solid #b22222;
        padding-bottom: 8px;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 700;
        text-transform: uppercase;
        text-align: left;
    }

    /* First heading adjustment */
    #fuji-alum-content h2:first-of-type {
        margin-top: 10px; /* Minimal top margin */
    }

    #fuji-alum-content h3 {
        font-size: 18px;
        color: #333;
        margin-top: 25px;
        margin-bottom: 10px;
        font-weight: 600;
        border-left: 4px solid #b22222;
        padding-left: 10px;
        text-align: left;
    }

    #fuji-alum-content p {
        margin-bottom: 12px;
        text-align: justify;
    }

    #fuji-alum-content ul {
        margin-bottom: 15px;
        padding-left: 20px;
        text-align: left;
    }

    #fuji-alum-content li {
        margin-bottom: 6px;
    }

    #fuji-alum-content a {
        color: #b22222;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted #b22222;
    }

    /* IMAGE STYLING */
    #fuji-alum-content .media-wrapper {
        display: block;
        text-align: center;
        margin: 20px 0;
        width: 100%;
    }

    #fuji-alum-content img {
        height: auto;
        border-radius: 4px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        border: 1px solid #eee;
        display: inline-block;
    }

    /* Size Classes for Responsiveness */
    #fuji-alum-content .img-std { 
        max-width: 500px; 
        width: 100%; 
    }
    
    #fuji-alum-content .img-tall { 
        max-width: 400px; /* Slightly narrower for portrait images */
        width: 100%; 
    }

    /* Highlight Box */
    #fuji-alum-content .highlight-box {
        background-color: #fff5f5; 
        border-left: 5px solid #b22222;
        padding: 15px;
        margin: 20px 0;
        color: #550000;
    }

    /* Feature Grid (2 Columns on PC) */
    #fuji-alum-content .feature-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 25px;
    }

    #fuji-alum-content .feature-item {
        background: #fdfdfd;
        padding: 15px;
        border: 1px solid #eee;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.02);
        text-align: left;
    }

    #fuji-alum-content .feature-item h4 {
        margin-top: 0;
        color: #b22222;
        font-size: 16px;
        font-weight: 700;
        display: flex;
        align-items: center;
        margin-bottom: 8px;
    }

    /* Data Table */
    #fuji-alum-content .spec-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        font-size: 15px;
        border: 1px solid #ddd;
    }

    #fuji-alum-content .spec-table th, 
    #fuji-alum-content .spec-table td {
        padding: 10px;
        border: 1px solid #ddd;
        text-align: center;
    }

    #fuji-alum-content .spec-table th {
        background-color: #f4f4f4;
        color: #b22222;
        font-weight: 700;
    }

    /* FAQ Section */
    #fuji-alum-content .faq-item {
        margin-bottom: 10px;
        border: 1px solid #eee;
        padding: 12px;
        border-radius: 4px;
        background: #fff;
    }

    #fuji-alum-content .faq-question {
        font-weight: 700;
        color: #b22222;
        display: block;
        margin-bottom: 5px;
    }

    /* Related Links */
    #fuji-alum-content .related-links {
        background-color: #f9f9f9;
        padding: 20px;
        margin-top: 30px;
        border-radius: 4px;
        border-top: 3px solid #b22222;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        #fuji-alum-content .feature-grid { grid-template-columns: 1fr; gap: 15px; }
        #fuji-alum-content .img-std, #fuji-alum-content .img-tall { max-width: 100%; margin: 10px auto; }
        #fuji-alum-content h2 { margin-top: 25px; font-size: 20px; }
    }
