/* Blog Page Styles */
.blog-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 20px;
    min-height: 100%;
}

.blog-post {
    margin-top: 40px;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff5252;
    margin-bottom: 20px;
}

.blog-meta {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 20px;
}

.blog-meta p {
    margin: 5px 0;
}

.highlight {
    color: #f5f5f5;
    font-weight: bold;
}

.blog-intro {
    font-size: 1.1rem;
    color: #cccc;
    margin: 20px 0;
    line-height: 1.6;
}

.blog-body {
    font-size: 1rem;
    color: #ccc;
    margin-top: 20px;
    line-height: 1.8;
    text-align: justify;
}

.blog-body p {
    margin-bottom: 15px;
}

.blog-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.blog-body a {
    color: #ff5252;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.blog-body a:hover {
    color: #ff7575;
    text-decoration: underline;
}