
        /* CSS Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Noto Serif Bengali', serif;
            line-height: 1.6;
            color: #333;
            background-color: #f0f5ff;
        }
        
        .container {
            width: 95%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 10px 0;
            border-bottom: 3px solid #0d2a5c;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255,255,255,0.3);
        }
        
        .logo {
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .date {
            font-size: 1.1rem;
            background-color: rgba(255,255,255,0.2);
            padding: 5px 10px;
            border-radius: 4px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        nav li {
            margin: 0 8px;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 3px;
            transition: background-color 0.3s;
            font-size: 1.1rem;
        }
        
        nav a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        
        /* Breaking News */
        .breaking-news {
            background: linear-gradient(to right, #4a90e2, #357abd);
            color: white;
            padding: 8px 0;
            margin: 10px 0;
            font-weight: 600;
            border-top: 2px solid #2a5f9e;
            border-bottom: 2px solid #2a5f9e;
        }
        
        .breaking-news-content {
            display: flex;
            align-items: center;
        }
        
        .breaking-label {
            background-color: #0d2a5c;
            color: white;
            padding: 4px 10px;
            border-radius: 3px;
            margin-right: 15px;
            font-weight: 700;
            white-space: nowrap;
        }
        
        /* Main Content Styles */
        .main-content {
            display: flex;
            margin: 20px 0;
            gap: 20px;
        }
        
        .main-article {
            flex: 2;
            background-color: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-top: 4px solid #1e3c72;
        }
        
        .main-article img {
            width: 100%;
            height: auto;
            margin-bottom: 15px;
            border-radius: 5px;
        }
        
        .main-article h2 {
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 1.8rem;
            color: #1e3c72;
            margin-bottom: 10px;
            border-bottom: 2px solid #4a90e2;
            padding-bottom: 5px;
        }
        
        .main-article p {
            margin-bottom: 15px;
            text-align: justify;
            font-size: 1.1rem;
        }
        
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
            border-top: 1px solid #eee;
            padding-top: 10px;
        }
        
        .sidebar {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .news-box {
            background-color: white;
            padding: 15px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-top: 4px solid #2a5298;
        }
        
        .news-box h3 {
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 1.4rem;
            color: #1e3c72;
            margin-bottom: 10px;
            border-bottom: 2px solid #4a90e2;
            padding-bottom: 5px;
        }
        
        .news-item {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .news-item h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        /* Featured News Section */
        .featured-news {
            margin: 30px 0;
        }
        
        .featured-news h2 {
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 1.8rem;
            color: #1e3c72;
            margin-bottom: 20px;
            border-bottom: 2px solid #4a90e2;
            padding-bottom: 5px;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .news-card {
            background-color: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid #2a5298;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .news-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .news-card-content {
            padding: 15px;
        }
        
        .news-card h3 {
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #1e3c72;
        }
        
        /* Footer Styles */
        footer {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 30px 0;
            margin-top: 30px;
            border-top: 5px solid #0d2a5c;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
        }
        
        .footer-section {
            flex: 1;
            padding: 0 15px;
        }
        
        .footer-section h3 {
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 1.4rem;
            margin-bottom: 15px;
            border-bottom: 2px solid #4a90e2;
            padding-bottom: 5px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section li {
            margin-bottom: 8px;
        }
        
        .footer-section a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 15px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        
        /* Utility Classes */
        .text-center {
            text-align: center;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #4a90e2, #357abd);
            color: white;
            padding: 8px 15px;
            border-radius: 3px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            font-family: 'Hind Siliguri', sans-serif;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .btn:hover {
            background: linear-gradient(to right, #357abd, #2a5f9e);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        
        .category-tag {
            display: inline-block;
            background: linear-gradient(to right, #4a90e2, #357abd);
            color: white;
            padding: 3px 8px;
            border-radius: 3px;
            font-size: 0.8rem;
            margin-right: 5px;
            font-family: 'Hind Siliguri', sans-serif;
        }
        
        .weather-box {
            background: linear-gradient(135deg, #e6f0ff, #c9dfff);
            padding: 15px;
            border-radius: 5px;
            border-left: 4px solid #4a90e2;
        }
        
        .market-box {
            background: linear-gradient(135deg, #e6f0ff, #c9dfff);
            padding: 15px;
            border-radius: 5px;
            border-left: 4px solid #4a90e2;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .main-content {
                flex-direction: column;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-section {
                margin-bottom: 20px;
            }
            
            nav ul {
                flex-wrap: wrap;
            }
            
            nav li {
                margin: 5px 10px;
            }
            
            .header-top {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                font-size: 2.2rem;
                margin-bottom: 10px;
            }
            
            .breaking-news-content {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .breaking-label {
                margin-bottom: 5px;
            }
        }
 