.eng-typing-blogs {
    padding: 20px;
    background-color: #f2f2f2; /* Slightly darker background for contrast */
    color: #333;
    font-family: 'Arial', sans-serif;
    max-width: 1800px; /* Centered container for large screens */
    margin: 0 auto; /* Center alignment */
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-title {
    font-size: 2.5em; /* Larger title for emphasis */
    color: #222; /* Darker color for better contrast */
    margin: 0;
    line-height: 1.2; /* Improved readability */
}

.blog-creator,
.blog-date {
    font-size: 1em;
    color: #888; /* Lighter color for metadata */
}

.blog-content {
    background-color: #fff;
    border-radius: 12px; /* More rounded corners */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow effect */
    padding: 30px; /* Increased padding for better spacing */
    margin-bottom: 40px;
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effects */
}

.blog-content:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.blog-content h2 {
    border-bottom: 3px solid #000; /* Thicker border for emphasis */
    padding-bottom: 15px;
    margin-bottom: 25px;
    color: #333;
    font-size: 1.5em; /* Adjusted font size for headings */
    font-weight: 600; /* Stronger font weight */
}

.blog-image {
    width: 100%;
    height: auto;
    border-radius: 12px; /* Rounded corners matching the container */
    margin: 20px 0;
}

.instructions-section ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.instructions-section li {
    margin-bottom: 15px; /* More space between list items */
    font-size: 1.1em; /* Larger text for better readability */
}

.typing-interface-section,
.script-overview,
.detailed-explanation {
    margin-bottom: 40px;
}

.typing-interface-section img,
.script-overview img,
.detailed-explanation img {
    max-width: 100%;
    border-radius: 12px; /* Consistent with other elements */
}

.detailed-explanation h3 {
    color: #222; /* Darker color for subheadings */
    font-size: 1.3em; /* Slightly larger subheadings */
    font-weight: 500; /* Medium font weight */
    margin-bottom: 15px;
}

.detailed-explanation p {
    margin-bottom: 20px; /* More space between paragraphs */
    line-height: 1.6; /* Improved readability */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2em; /* Adjust title size for smaller screens */
    }

    .blog-content {
        padding: 20px; /* Adjust padding for smaller screens */
    }
}

@media (max-width: 480px) {
    .blog-title {
        font-size: 1.5em; /* Further adjust title size */
    }

    .blog-content h2 {
        font-size: 1.2em; /* Adjust heading size */
    }

    .instructions-section ul {
        padding-left: 15px; /* Adjust padding for small screens */
    }
}
