
    /* SCOPED CSS: E-E-A-T Optimized, Responsive, No Top Spacing */
    #fuji-jitan-detail {
        font-family: 'Verdana', 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
        font-size: 16px; /* Strict 16px base font */
        background-color: #fff;
        width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    /* Headings strictly limited to max 20px */
    #fuji-jitan-detail h2 {
        font-size: 20px; 
        font-weight: bold;
        color: #006400;
        border-bottom: 2px solid #006400;
        padding-bottom: 8px;
        margin-top: 35px;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    /* Absolute zero space for the very first heading */
    #fuji-jitan-detail h2:first-of-type {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    #fuji-jitan-detail h3 {
        font-size: 18px;
        font-weight: bold;
        color: #006400;
        margin-top: 25px;
        margin-bottom: 12px;
        border-left: 4px solid #006400;
        padding-left: 10px;
    }

    #fuji-jitan-detail p {
        margin-bottom: 15px;
        text-align: justify;
    }

    #fuji-jitan-detail ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }

    #fuji-jitan-detail li {
        margin-bottom: 10px;
    }

    #fuji-jitan-detail a {
        color: #006400;
        text-decoration: none;
        font-weight: bold;
        border-bottom: 1px dotted #006400;
        transition: color 0.3s ease;
    }
    
    #fuji-jitan-detail a:hover {
        color: #004d00;
        border-bottom-style: solid;
    }

    /* Highlight Boxes */
    #fuji-jitan-detail .expert-insight-box {
        background-color: #f0f8f0;
        border-left: 5px solid #006400;
        padding: 18px 20px;
        margin-bottom: 25px;
        border-radius: 4px;
    }

    #fuji-jitan-detail .tech-box {
        background-color: #fafafa;
        border: 1px solid #eee;
        padding: 20px;
        border-radius: 6px;
        margin-bottom: 25px;
        margin-top: 25px;
    }

    /* Responsive Video Container - UPDATED FOR BETTER PC/MOBILE VISUALS */
    #fuji-jitan-detail .video-wrapper {
        max-width: 650px; /* Limits max width on PC */
        margin: 35px auto; /* Centers video and provides spacing above/below */
    }

    #fuji-jitan-detail .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 ratio */
        height: 0;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    #fuji-jitan-detail .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* Grids */
    #fuji-jitan-detail .feature-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 25px;
    }

    #fuji-jitan-detail .feature-card {
        background: #fafafa;
        border: 1px solid #e0e0e0;
        padding: 20px;
        border-radius: 6px;
    }

    /* Images */
    #fuji-jitan-detail img {
        max-width: 600px;
        width: 100%;
        height: auto;
        display: block;
        margin: 20px auto;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    #fuji-jitan-detail .img-caption {
        text-align: center;
        font-size: 14px;
        color: #666;
        margin-top: -10px;
        margin-bottom: 25px;
        font-style: italic;
    }

    /* Tables */
    #fuji-jitan-detail .table-wrapper {
        overflow-x: auto;
        margin-bottom: 30px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
    }

    #fuji-jitan-detail table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }

    #fuji-jitan-detail th, 
    #fuji-jitan-detail td {
        padding: 14px;
        border: 1px solid #eee;
        text-align: center;
    }

    #fuji-jitan-detail th {
        background-color: #006400;
        color: #ffffff;
    }

    /* FAQ */
    #fuji-jitan-detail .faq-item {
        margin-bottom: 15px;
        background: #fdfdfd;
        border: 1px solid #eee;
        padding: 18px;
        border-radius: 5px;
    }

    #fuji-jitan-detail .faq-q {
        font-weight: bold;
        color: #006400;
        margin-bottom: 8px;
        display: block;
    }

    /* CTA */
    #fuji-jitan-detail .cta-section {
        background-color: #f4f9f4;
        text-align: center;
        margin-top: 40px;
        padding: 30px 20px;
        border-radius: 6px;
        border: 1px solid #e0e0e0;
    }

    #fuji-jitan-detail .btn {
        display: inline-block;
        background-color: #006400;
        color: #ffffff !important;
        padding: 14px 28px;
        text-decoration: none;
        border-radius: 4px;
        font-weight: bold;
        border: none;
        margin: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    #fuji-jitan-detail .btn-outline {
        background-color: #fff;
        color: #006400 !important;
        border: 2px solid #006400;
    }

    /* Mobile */
    @media (max-width: 768px) {
        #fuji-jitan-detail .feature-grid { grid-template-columns: 1fr; gap: 15px; }
        #fuji-jitan-detail h2 { font-size: 18px; }
        #fuji-jitan-detail h3 { font-size: 17px; }
        #fuji-jitan-detail .video-wrapper { margin: 25px auto; }
    }
