
    /* SCOPED CSS: Strictly affects only content inside .content-wrapper */

    .content-wrapper {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #333;
        line-height: 1.7; 
        background-color: #fff;
        max-width: 1300px; 
        margin: 0 auto !important; /* Forced no top space */
        padding: 0 20px 20px 20px !important; /* Forced no top padding */
        box-sizing: border-box;
    }

    /* Scoped Typography Constraints */
    .content-wrapper p, 
    .content-wrapper li, 
    .content-wrapper td, 
    .content-wrapper th, 
    .content-wrapper span {
        font-size: 16px;
    }

    .content-wrapper h2 {
        font-size: 20px; /* Maximum allowed heading size */
        font-weight: 700;
        color: #222;
        margin-top: 35px;
        margin-bottom: 15px;
        background-color: #f9f9f9;
        padding: 10px 15px;
        border-left: 4px solid #d32f2f;
        text-transform: uppercase;
    }

    .content-wrapper h3 {
        font-size: 18px;
        font-weight: 600;
        color: #444;
        margin-top: 25px;
        margin-bottom: 12px;
        border-bottom: 2px solid #eee;
        padding-bottom: 5px;
    }

    .content-wrapper p {
        margin-bottom: 18px;
        text-align: justify;
    }

    .content-wrapper ul {
        margin-bottom: 22px;
        padding-left: 20px;
    }

    .content-wrapper li {
        margin-bottom: 8px;
    }

    /* Scoped Links */
    .content-wrapper a {
        color: #d32f2f;
        text-decoration: underline;
        font-weight: 600;
        transition: opacity 0.2s;
    }
    .content-wrapper a:hover {
        opacity: 0.8;
    }

    /* Scoped Images */
    .content-wrapper img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 30px auto;
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    /* Highlight Boxes */
    .tech-box {
        background-color: #f4f6f8;
        border: 2px solid #d32f2f;
        padding: 20px;
        margin: 30px 0;
        border-radius: 6px;
    }
    .tech-box strong {
        color: #d32f2f;
        font-size: 17px;
        display: block;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    /* Scoped Technical Table */
    .content-wrapper .tech-table {
        width: 100%;
        border-collapse: collapse;
        margin: 25px 0;
    }
    .content-wrapper .tech-table th, 
    .content-wrapper .tech-table td {
        border: 1px solid #e0e0e0;
        padding: 14px 15px;
        text-align: left;
    }
    .content-wrapper .tech-table th {
        background-color: #333;
        width: 35%;
        color: #fff;
        font-weight: 600;
    }
    .content-wrapper .tech-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    /* Scoped FAQ Section */
    .content-wrapper .faq-item {
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
    .content-wrapper .faq-question {
        font-weight: 700;
        color: #000;
        display: block;
        margin-bottom: 8px;
        font-size: 17px;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .content-wrapper {
            padding: 0 15px 15px 15px !important;
            width: 100%;
        }
        .content-wrapper .tech-table th, 
        .content-wrapper .tech-table td {
            padding: 10px;
            font-size: 15px;
            display: block;
            width: 100%;
        }
        .content-wrapper .tech-table th {
            margin-top: 10px;
        }
        .content-wrapper p, .content-wrapper li {
            text-align: left; 
        }
    }
