.nav-links a {
    color: #666;
}

.book-now-btn a {
    color: #333;
}

.book-now-btn {
    border: 1px solid #333;
}

.blog-nav-container {
    width: 100%;
    /* background-color: #000; */
    padding: 0 150px;
}

        /* Main Container */
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 40px;
        }
        
        .hero-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
            color: #1a1a1a;
        }
        
        .meta-info {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }

        .avatar img {
            width: 100%;
            border-radius: 50%;
            height: 100%;
        }
        
        .author-info {
            display: flex;
            flex-direction: column;
        }
        
        .author-label {
            font-size: 12px;
            color: #999;
            font-weight: 500;
        }
        
        .author-name {
            font-size: 14px;
            color: #1a1a1a;
            font-weight: 600;
        }
        
        .badges {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        .badge {
            padding: 6px 14px;
            border: 1px solid #e0e0e0;
            border-radius: 20px;
            font-size: 12px;
            color: #666;
            background: #fafafa;
        }
        
        .hero-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #e0e7ff 0%, #f0f4ff 100%);
            border-radius: 12px;
            margin: 50px 0;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0052cc;
            font-size: 14px;
            font-weight: 500;
        }
        
        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .intro-text {
            font-size: 16px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 30px;
        }
        
        .section {
            margin-bottom: 45px;
        }
        
        .section h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a1a1a;
        }
        
        .section p {
            font-size: 15px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 15px;
        }
        
        .numbered-section {
            margin-bottom: 40px;
        }
        
        .numbered-section h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1a1a1a;
        }
        
        .numbered-section p {
            font-size: 15px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 12px;
        }
        
        .highlight-box {
            background: #f8f9ff;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
            border-left: 4px solid #0052cc;
        }
        
        .highlight-box strong {
            color: #0052cc;
        }

        @media (max-width: 1024px) {
            .blog-nav-container {
                padding: 0 2rem;
            }
        }
        
        @media (max-width: 768px) {

            .blog-nav-container {
    background-color: #000;

            }
            
            .nav-links {
                display: none;
            }
            
            .container {
                padding: 40px 20px;
            }
            
            .hero-title {
                font-size: 28px;
            }
            
            .meta-info {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .hero-image {
                height: 300px;
            }
        }

        @media  (max-width:430px) {
                    blog-nav-container {
                padding: 0 1rem;
            }
        }
