/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.blog-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.blog-title {
    font-size: 2em;
    margin-bottom: 10px;
}

.blog-date {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 20px;
}

.blog-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.blog-description {
    font-size: 1em;
    margin-bottom: 30px;
}

/* Comments Section */
.comments-section {
    margin-top: 40px;
}

.comments-section h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.comment {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-left: 4px solid #ccc;
}

.comment-author {
    font-weight: bold;
    margin: 0;
}

.comment-date {
    font-size: 0.8em;
    color: #777;
    margin: 5px 0;
}

.comment-text {
    margin: 10px 0 0;
}

.reply {
    margin-left: 30px;
    margin-top: 10px;
    padding: 10px;
    background: #e9e9e9;
    border-left: 3px solid #999;
}

/* Comment Form */
.comment-form {
    margin-top: 40px;
}

.comment-form h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.comment-form input[type="text"],
.comment-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.comment-form button {
    padding: 10px 20px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.comment-form button:hover {
    background: #555;
}

@media(max-width: 576px){
    .blog-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}
}