.min-height-container-blog {
    min-height: calc(100vh - 50px);
}

.blog-post-header {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: 50% 50%;
    background-attachment: fixed;
}

.blog-header-overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 0 20px;
}

.blog-content-section {
    background: #fff;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

.blog-footer {
    background: #343a40;
    color: #fff;
    width: 100%;
    z-index: 10;
}

.footer-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-style: italic;
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2.5rem;
    }
    .blog-text {
        font-size: 1.1rem;
    }
}