 .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}



/* Main Content Styles */
.main {
    padding: 10rem 0 2rem;
}

.blog-title {
    color: #012035;
    margin-bottom: 30px;
    font-size: 36px;
}

.blog-title span {
    color: #FF6404;
}

/* Blog Post Styles */
.blog-post {
    margin-bottom: 50px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.blog-post img {
    max-width: 100%;
}

.post-title {
    color: #012035;
    font-size: 28px;
    margin-bottom: 10px;
}

.post-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.post-meta span {
    color: #FF6404;
}

.post-excerpt {
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    background-color: #FF6404;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.read-more:hover {
    background-color: #e05a03;
}
.text-hide {
    display: none;
}
/* Sidebar Styles */
.sidebar {
    margin-top: 40px;
}

.sidebar h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin: 1rem;
}

.sidebar-widget {
    background-color: #f5f5f5;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.widget-title {
    color: #012035;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF6404;
}


/* Responsive Layout */
@media (min-width: 768px) {
    .main-content {
        display: flex;
        justify-content: space-between;
    }

    .blog-posts {
        width: 65%;
    }

    .sidebar {
        width: 30%;
        margin-top: 0;
    }
