
    /* --- RESET & BASE STYLES --- */
    .product-template-container {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .product-template-container * {
        box-sizing: border-box;
    }

    /* --- TYPOGRAPHY --- */
    .product-title {
        font-family: 'Cambria', 'Georgia', serif; /* Serif for title distinction */
        color: #003366;
        font-size: 28px;
        margin-bottom: 20px;
        border-bottom: 2px solid #e67e23;
        padding-bottom: 15px;
    }

    .section-title {
        font-size: 22px;
        color: #003366;
        margin-top: 40px;
        margin-bottom: 15px;
        font-weight: bold;
    }

    p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    /* --- FEATURE GRID (Replaces Bullet Points) --- */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }

    .feature-card {
        background: #f9fbfd;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 20px;
        border-left: 4px solid #003366;
        transition: transform 0.2s;
    }

    .feature-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .feature-title {
        font-weight: bold;
        color: #003366;
        display: block;
        margin-bottom: 8px;
        font-size: 17px;
    }

    /* --- TABLE STYLES --- */
    .table-wrapper {
        width: 100%;
        overflow-x: auto; /* Ensures horizontal scroll on mobile */
        margin-bottom: 30px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        border-radius: 8px;
        border: 1px solid #ddd;
    }

    .styled-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px; /* Forces scroll on small screens */
        background-color: #fff;
    }

    .styled-table thead tr {
        background-color: #003366;
        color: #ffffff;
        text-align: center;
    }

    .styled-table th, .styled-table td {
        padding: 12px 15px;
        border-bottom: 1px solid #dddddd;
        text-align: center;
        font-size: 16px;
    }

    .styled-table tbody tr:nth-of-type(even) {
        background-color: #f3f3f3;
    }

    .styled-table tbody tr:last-of-type {
        border-bottom: 3px solid #003366;
    }

    /* Tags inside tables */
    .tag {
        display: inline-block;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: bold;
    }
    .tag-heavy { background-color: #e8f5e9; color: #2e7d32; }
    .tag-std { background-color: #fff3e0; color: #e65100; }

    /* --- RELATED PRODUCTS GRID --- */
    .related-products-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
    }

    .product-card {
        flex: 1 1 calc(25% - 20px); /* 4 per row */
        max-width: calc(25% - 20px);
        border: 1px solid #eee;
        border-radius: 6px;
        overflow: hidden;
        text-align: center;
        padding-bottom: 15px;
        transition: box-shadow 0.3s ease;
    }

    .product-card:hover {
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .product-card img {
        width: 100%;
        height: auto;
        display: block;
        margin-bottom: 10px;
    }

    .product-card a {
        text-decoration: none;
        color: #333;
        font-weight: bold;
        font-size: 15px;
        padding: 0 10px;
        display: block;
    }

    .product-card a:hover {
        color: #e67e23;
    }

    /* --- RESPONSIVE MEDIA QUERIES --- */
    @media screen and (max-width: 992px) {
        .product-card {
            flex: 1 1 calc(33.333% - 20px); /* 3 per row on laptops */
            max-width: calc(33.333% - 20px);
        }
    }

    @media screen and (max-width: 768px) {
        .product-card {
            flex: 1 1 calc(50% - 20px); /* 2 per row on tablets */
            max-width: calc(50% - 20px);
        }
        .product-title {
            font-size: 24px;
        }
    }

    @media screen and (max-width: 480px) {
        .product-card {
            flex: 1 1 100%; /* 1 per row on mobile */
            max-width: 100%;
        }
        .features-grid {
            grid-template-columns: 1fr;
        }
    }
