
    /* SCOPED CSS: Fuji Nattoku Detail Page */
    #fuji-nattoku-detail {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        line-height: 1.5; /* Tighter line height */
        color: #333;
        font-size: 16px;
        width: 100%;
        margin: 0 auto;
    }

    /* HEADINGS */
    #fuji-nattoku-detail h2 {
        font-size: 20px;
        color: #000;
        border-bottom: 2px solid #ba372a;
        padding-bottom: 5px;
        margin-top: 25px; /* Reduced from 30px */
        margin-bottom: 12px;
        font-weight: 700;
        text-transform: uppercase;
    }

    /* Remove space for the very first heading */
    #fuji-nattoku-detail h2:first-of-type {
        margin-top: 0;
    }

    #fuji-nattoku-detail h3 {
        font-size: 16px;
        color: #333;
        margin-top: 0;
        margin-bottom: 8px;
        font-weight: 700;
    }

    /* TEXT & LISTS */
    #fuji-nattoku-detail p {
        margin-bottom: 10px; /* Reduced from 15px */
        text-align: justify;
    }

    #fuji-nattoku-detail ul {
        margin-bottom: 10px;
        padding-left: 20px;
        margin-top: 0;
    }

    #fuji-nattoku-detail li {
        margin-bottom: 5px; /* Tighter list items */
    }

    /* GRID SYSTEM FOR ADVANTAGES (2x2 Layout) */
    #fuji-nattoku-detail .advantages-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 Columns */
        gap: 15px; /* Gap between boxes */
        margin-bottom: 20px;
    }

    #fuji-nattoku-detail .feature-box {
        background-color: #f9f9f9;
        border-left: 4px solid #ba372a;
        padding: 12px;
        height: 100%; /* Ensure equal height */
        box-sizing: border-box;
    }

    /* COMPACT TABLE */
    #fuji-nattoku-detail .table-wrapper {
        overflow-x: auto;
        margin-bottom: 15px;
    }

    #fuji-nattoku-detail .spec-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 14px; /* Slightly smaller for data */
    }

    #fuji-nattoku-detail .spec-table th, 
    #fuji-nattoku-detail .spec-table td {
        border: 1px solid #ddd;
        padding: 6px 8px; /* Compressed padding */
        text-align: center;
    }

    #fuji-nattoku-detail .spec-table th {
        background-color: #f8f8f8;
        font-weight: bold;
        color: #000;
    }

    /* COMPACT FAQ */
    #fuji-nattoku-detail .faq-item {
        background-color: #fff;
        border-bottom: 1px solid #eee; /* Cleaner look than full border */
        padding: 8px 0;
        margin-bottom: 5px;
    }

    #fuji-nattoku-detail .faq-question {
        font-weight: bold;
        display: block;
        margin-bottom: 3px;
        color: #ba372a;
        font-size: 16px;
    }
    
    #fuji-nattoku-detail .faq-item p {
        margin-bottom: 0; /* Remove bottom margin inside FAQ */
        font-size: 15px;
    }

    /* IMAGES */
    #fuji-nattoku-detail img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 15px auto;
        border-radius: 4px;
    }

    /* FOOTER BOX */
    #fuji-nattoku-detail .footer-box {
        background-color: #f4f4f4; 
        padding: 20px; 
        border-radius: 8px; 
        margin-top: 20px;
    }

    #fuji-nattoku-detail .cta-link {
        color: #ba372a;
        font-weight: bold;
        text-decoration: underline;
    }

    /* MOBILE OPTIMIZATION */
    @media (max-width: 768px) {
        #fuji-nattoku-detail .advantages-grid {
            grid-template-columns: 1fr; /* Stack to 1 column */
            gap: 10px;
        }
        #fuji-nattoku-detail h2 {
            font-size: 18px;
            margin-top: 20px;
        }
    }
