
body.significance-page {
    /* Replace the old image with your new one */
    background-image: url('../images/hdfc.svg');

    /* You can customize it further if needed */
    background-size: cover;
    background-position: center center;
    background-attachment: scroll; /* Use 'scroll' instead of 'fixed' if you don't want it to be fixed */
}

/* General Body & Font Setup */
body {
    background-color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

/* Main Two-Column Layout Container */
.article-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Main Content Area (Left Column) */
.main-content {
    flex: 2; /* Takes up 2/3 of the space */
    min-width: 0; /* Prevents flex items from overflowing */
}

.main-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e2a3b;
    line-height: 1.3;
    margin-bottom: 30px;
}

.main-content .subtitle {
    font-size: 1.1rem;
    color: #5a677d;
    line-height: 1.6;
    margin-bottom: 20px;
    border-left: 3px solid #1abc9c; /* Accent color */
    padding-left: 15px;
}

.meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.meta-info .share-icon {
    color: #888;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.meta-info .share-icon:hover {
    color: #1abc9c;
}

.main-image img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 30px;
}

.article-body h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1e2a3b;
    margin-top: 40px;
    margin-bottom: 15px;
}

.article-body p,
.article-body li {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.article-body ul,
.article-body ol {
    padding-left: 25px;
}

/* Sidebar (Right Column) */
.sidebar {
    flex: 1; /* Takes up 1/3 of the space */
    padding-left: 30px;
    border-left: 1px solid #e0e7ff;
}

.sidebar h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e2a3b;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e7ff;
}

.popular-articles-list {
    list-style: none;
    padding-left: 0;
}

.popular-articles-list li {
    margin-bottom: 25px;
}

.popular-articles-list a {
    text-decoration: none;
    display: block;
}

.popular-articles-list a span {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.popular-articles-list a small {
    font-size: 0.85rem;
    color: #7f8c8d;
}

.popular-articles-list a:hover span {
    color: #1abc9c;
}

/* Responsive Design for Tablets and Mobiles */
@media (max-width: 992px) {
    .article-container {
        flex-direction: column;
    }
    .sidebar {
        border-left: none;
        padding-left: 0;
        margin-top: 50px;
        padding-top: 30px;
        border-top: 1px solid #e0e7ff;
    }
}
.recent-articles-section {
    background-color: #f8f9fa; /* A very light grey background */
    padding: 70px 0;
    margin-top: 60px; /* Space above this new section */
    border-top: 1px solid #e0e7ff;
}

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

.recent-articles-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e2a3b;
    margin-bottom: 40px;
}

.recent-articles-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* 2/3 for articles, 1/3 for sidebar */
    gap: 40px;
}

/* Article Cards (Left Column) */
.recent-article-card {
    background-color: #ffffff;
    border: 1px solid #e0e7ff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    transition: box-shadow 0.3s ease;
}

.recent-article-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.07);
}

.recent-article-card .card-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5a677d;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.recent-article-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e2a3b;
    margin-bottom: 10px;
}

.recent-article-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.recent-article-card .card-date {
    font-size: 0.85rem;
    color: #888;
}

/* Categories Sidebar (Right Column) */
.categories-sidebar h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e2a3b;
    margin-bottom: 20px;
}

.category-links {
    list-style: none;
    padding: 0;
}

.category-links li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    transition: color 0.3s ease;
}

.category-links li a:hover {
    color: #1abc9c;
}

.category-links li a::after {
    content: '>';
    font-size: 1rem;
    font-weight: bold;
    color: #aaa;
    transition: transform 0.3s ease;
}

.category-links li a:hover::after {
    transform: translateX(5px);
}

/* === RESPONSIVE STYLES FOR NEW SECTION === */

@media (max-width: 992px) {
    .recent-articles-layout {
        grid-template-columns: 1fr; /* Stack columns on tablets */
    }
}