body {
    background-color: #f8f9fa;
    color: #343a40;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.container-blog {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid #010101;
}

.blog-image {
    width: 50%;
    max-width: 50%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px;
    margin: 20px auto; /* Center the image */
    display: block; /* Center the image */
    object-fit: contain; /* Ensure the entire image is visible */
}

.heading {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #902bf5;
    text-align: center;
    text-transform: uppercase;
}

.blog-subheading {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #1a1463;
    text-transform: uppercase;
    border-bottom: 2px solid #902bf5;
    padding-bottom: 5px;
}

.blog-section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fefefe;
    border-left: 5px solid #902bf5;
    border-radius: 8px;
}

.blog-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #6c6c6c;
}

a {
    color: #902bf5;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin: 20px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 5px solid #1a1463;
    border-radius: 8px;
    color: #6c6c6c;
}

.blog-timestamp {
    font-size: 1rem;
    color: #6c6c6c;
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container-blog {
        width: 95%;
        margin: 20px auto;
        padding: 10px;
    }

    .heading {
        font-size: 2.5rem;
    }

    .blog-subheading {
        font-size: 1.5rem;
    }

    .blog-section p {
        font-size: 1rem;
    }

    blockquote {
        font-size: 1.2rem;
    }

    .blog-image {
        max-width: 80%; /* Ensure the image takes up full width on smaller screens */
        object-fit: contain; /* Ensure the entire image is visible */
    }
}
