 .blog-hero {
            background: #002166;
            color: white;
            padding: 7rem 0 3rem 0;
            margin-bottom: 3rem;
        }

        .blog-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
            color:#fff;
        }

        .blog-meta {
            display: flex;
            gap: 1.5rem;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            margin-top: 1.5rem;
        }

        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Main Content */
        .blog-content {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 3rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .blog-section {
            margin-bottom: 2.5rem;
        }

        .blog-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            border-bottom: 3px solid var(--primary);
            padding-bottom: 0.75rem;
        }

        .blog-section h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
        }

        .blog-section p {
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .blog-section ul, .blog-section ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .blog-section li {
            margin-bottom: 0.75rem;
            color: var(--text-muted);
        }

        /* Sidebar */
        .sidebar-sticky {
            position: sticky;
            top: 98px;
        }

        .cta-card {
            background: linear-gradient(135deg, #2c323d 0%, var(--primary-dark) 100%);
            color: white;
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
            margin-bottom: 2rem;
        }

        .cta-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: white;
        }

        .cta-card p {
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .cta-btn {
            background-color: var(--success);
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-btn:hover {
            background-color: #059669;
            transform: translateY(-2px);
            color: white;
        }

        /* Related Posts */
        .related-posts-section {
            border-top: 2px solid var(--border-light);
        }

        .related-posts-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--secondary);
        }

        .post-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .post-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .post-card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            background-color: var(--light-bg);
        }

        .post-card-body {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .post-category {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            width: fit-content;
        }

        .post-card-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .post-card-meta {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .post-card-excerpt {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
            flex-grow: 1;
            margin-bottom: 1rem;
        }

        .post-read-more {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
            align-self: flex-start;
        }

        .post-read-more:hover {
            color: var(--primary-dark);
        }

    

        @media (max-width: 991px) {
            .blog-content{
                padding: 0rem!important; 
                box-shadow: none!important;
            }
            .blog-title {
                font-size: 1.8rem;
            }

            .post-card-image {
                height: 150px;
            }

            .sidebar-sticky {
                position: relative;
                top: 0;
            }
        }

            .blog-section table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 15px;
}

.blog-section th,
.blog-section td {
  padding: 12px 10px;
  border: 1px solid #e5e5e5;
  text-align: left;
}

.blog-section th {
  background-color: #d4d7df;
  font-weight: 600;
}

.blog-section tr:nth-child(even) td {
  background-color: #fafafa;
}
