
        
        
        
       
        
       
       
    
        
        
        /* Hero Section */
        .hero {
            /* background: linear-gradient(135deg, #4a6cf7, #6a8aff); */
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 60px;
        }
        
        .hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Blog Content */
        .blog-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .blog-posts {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        .blog-post {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .blog-post:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .post-image {
            height: 200px;
            width: 100%;
            background-color: #e9ecef;
            background-size: cover;
            background-position: center;
        }
        
        .post-content {
            padding: 25px;
        }
        
        .post-meta {
            display: flex;
            margin-bottom: 15px;
            font-size: 14px;
            color: #6c757d;
        }
        
        .post-date {
            margin-right: 20px;
        }
        
        .post-category {
            color: #4a6cf7;
        }
        
        .post-title {
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        .post-title a {
            text-decoration: none;
            color: #333;
            transition: color 0.3s;
        }
        
        .post-title a:hover {
            color: #4a6cf7;
        }
        
        .post-excerpt {
            color: #6c757d;
            margin-bottom: 20px;
        }
        
        .read-more {
            display: inline-block;
            color: #4a6cf7;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .read-more:hover {
            text-decoration: underline;
        }
        
        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .sidebar-widget {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .widget-title {
            font-size: 18px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e9ecef;
        }
        
        .categories-list {
            list-style: none;
        }
        
        .categories-list li {
            margin-bottom: 12px;
        }
        
        .categories-list a {
            text-decoration: none;
            color: #333;
            transition: color 0.3s;
            display: flex;
            justify-content: space-between;
        }
        
        .categories-list a:hover {
            color: #4a6cf7;
        }
        
        .categories-list span {
            background-color: #f1f3f9;
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 12px;
        }
        
        .recent-posts {
            list-style: none;
        }
        
        .recent-post {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f1f3f9;
        }
        
        .recent-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .recent-post-image {
            width: 70px;
            height: 70px;
            background-color: #e9ecef;
            border-radius: 4px;
            margin-right: 15px;
            flex-shrink: 0;
            background-size: cover;
            background-position: center;
        }
        
        .recent-post-content h4 {
            font-size: 15px;
            margin-bottom: 5px;
        }
        
        .recent-post-content h4 a {
            text-decoration: none;
            color: #333;
            transition: color 0.3s;
        }
        
        .recent-post-content h4 a:hover {
            color: #4a6cf7;
        }
        
        .recent-post-content .post-date {
            font-size: 13px;
            color: #6c757d;
        }
        
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tag {
            background-color: #f1f3f9;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            text-decoration: none;
            color: #333;
            transition: all 0.3s;
        }
        
        .tag:hover {
            background-color: #4a6cf7;
            color: white;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin-bottom: 60px;
        }
        
        .pagination a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 4px;
            margin: 0 5px;
            text-decoration: none;
            color: #333;
            background-color: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }
        
        .pagination a:hover, .pagination a.active {
            background-color: #4a6cf7;
            color: white;
        }
        
        /* Footer */
        footer {
            background-color: #1d2144;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: #4a6cf7;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            text-decoration: none;
            color: #a9adb8;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #4a6cf7;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2a2f55;
            color: #a9adb8;
            font-size: 14px;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .blog-content {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }