/* Blog Post Specific Styles */
.blog-post-header {
    padding: 60px 0;
    background: #fdfdfd;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}

.blog-post-badge {
    background: #f59e0b;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-post-title {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-post-meta {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

.blog-post-meta i {
    color: #8b5cf6;
    margin-right: 5px;
}

.blog-post-container {
    max-width: 840px;
    margin: 0 auto;
    padding: 50px 15px;
}

.blog-post-featured-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.blog-post-content {
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
}

.blog-post-content h2 {
    font-size: 28px;
    color: #111827;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-post-content h3 {
    font-size: 22px;
    color: #1f2937;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-post-content p {
    margin-bottom: 24px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.blog-post-content li {
    margin-bottom: 10px;
}

.blog-post-content a {
    color: #8b5cf6;
    text-decoration: underline;
    font-weight: 600;
}

.blog-post-content a:hover {
    color: #7c3aed;
}

/* Call to Action Section */
.blog-cta-box {
    background: #f9fafb;
    border-left: 5px solid #8b5cf6;
    padding: 35px;
    margin: 50px 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.blog-cta-box h3 {
    margin-top: 0;
    font-size: 24px;
    color: #111827;
    margin-bottom: 15px;
}

.blog-cta-box p {
    margin-bottom: 25px;
    color: #4b5563;
}

.blog-cta-btn {
    display: inline-block;
    background: #8b5cf6;
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.3s ease;
}

.blog-cta-btn:hover {
    background: #7c3aed;
}

/* FAQs Section */
.blog-faq-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eaeaea;
}

.blog-faq-title {
    font-size: 28px;
    color: #111827;
    margin-bottom: 30px;
    font-weight: 700;
}

.blog-faq-item {
    margin-bottom: 25px;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.blog-faq-question {
    font-size: 19px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.blog-faq-answer {
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}