
    /* Scoped CSS for Content Isolation */
    .fuji-guide-deep-content {
        font-family: Verdana, sans-serif;
        font-size: 16px;
        color: #333;
        line-height: 1.8;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
        padding: 10px;
    }

    /* Headings */
    .fuji-guide-deep-content h2 {
        font-size: 22px;
        color: #000;
        border-left: 5px solid #c00;
        padding-left: 15px;
        margin-top: 40px;
        background: #f9f9f9;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .fuji-guide-deep-content h3 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 30px;
        margin-bottom: 15px;
        color: #444;
    }

    /* Links */
    .fuji-guide-deep-content a {
        color: #c00;
        text-decoration: underline;
        font-weight: bold;
    }

    /* Paragraphs & Lists */
    .fuji-guide-deep-content p {
        margin-bottom: 20px;
    }
    .fuji-guide-deep-content ul {
        padding-left: 20px;
        margin-bottom: 20px;
    }
    .fuji-guide-deep-content li {
        margin-bottom: 10px;
    }

    /* Table Styling */
    .tech-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 14px;
        margin-bottom: 25px;
    }
    .tech-table th {
        padding: 12px;
        border: 1px solid #ddd;
        text-align: center;
        font-weight: bold;
        background-color: #eeeeee;
        color: #000;
    }
    .tech-table td {
        padding: 12px;
        border: 1px solid #ddd;
        text-align: center;
    }
    /* Scrollable container for complex tables on mobile */
    .table-container {
        width: 100%;
        overflow-x: auto;
        margin-bottom: 25px;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    /* Info Boxes */
    .warning-box {
        background-color: #fff3cd;
        padding: 15px 20px;
        border-left: 6px solid #ffc107;
        margin: 25px 0;
        border-radius: 4px;
    }
    .code-box {
        background-color: #f4f4f4;
        padding: 10px 15px;
        border-radius: 4px;
        font-family: "Courier New", Courier, monospace;
        display: inline-block;
        margin-bottom: 20px;
    }

    /* FAQ Styling */
    .faq-item {
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
    .faq-q {
        font-weight: bold;
        display: block;
        margin-bottom: 8px;
        color: #000;
    }

    /* General Responsive Images */
    .fuji-guide-deep-content img {
        max-width: 100%;
        height: auto;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        display: block;
        margin: 25px auto;
    }
