
    /* Global Styles for Blog Post */
    .blog-container {
        font-family: Verdana, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333333;
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Headings */
    .blog-container h2 {
        font-size: 20px;
        font-weight: 700;
        color: #000000;
        margin-top: 40px;
        margin-bottom: 12px;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 8px;
        scroll-margin-top: 100px; 
    }
    
    .blog-container h3 {
        font-size: 18px;
        font-weight: 600;
        color: #444444;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    
    /* Paragraphs */
    .blog-container p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    /* Links */
    .blog-container a {
        color: #d32f2f;
        text-decoration: underline;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    .blog-container a:hover {
        color: #b71c1c;
    }

    /* Lists */
    .blog-container ul {
        margin-bottom: 20px;
        padding-left: 25px;
    }
    
    .blog-container li {
        margin-bottom: 8px;
    }

    /* Images */
    .blog-img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 25px auto;
        border-radius: 6px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

    /* Spec Table */
    .spec-table {
        width: 100%;
        border-collapse: collapse;
        margin: 25px 0;
        font-size: 15px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    .spec-table th, .spec-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }
    .spec-table th {
        background-color: #f8f9fa;
        font-weight: bold;
        width: 35%;
        color: #333;
    }
    .spec-table tr:hover {
        background-color: #f1f1f1;
    }

    /* Highlight Box */
    .highlight-box {
        background-color: #fff9c4;
        border-left: 4px solid #fbc02d;
        padding: 15px;
        margin: 20px 0;
        font-style: italic;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .blog-container {
            padding: 0 15px;
        }
        .blog-container h2 {
            font-size: 18px;
            margin-top: 30px;
        }
        .blog-container p {
            margin-bottom: 12px; 
            text-align: left;
        }
        .spec-table {
            font-size: 14px;
        }
        .spec-table th, .spec-table td {
            padding: 8px;
        }
    }
