/* Blog Index Styles */
.blog-index {
    padding: 60px 0;
    background: #f8f9fa;
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-header h1 {
    font-size: 2.5rem;
    color: #2d3436;
}

.blog-header p {
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.blog-rating {
    color: #fdcb6e;
    font-weight: bold;
}

.blog-card h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.blog-card h2 a {
    color: #2d3436;
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: #6c5ce7;
}

.blog-excerpt {
    color: #636e72;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 15px 0;
}

.read-more-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #6c5ce7;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.read-more-btn:hover {
    background: #5649c0;
}

/* Blog Post Styles */
.blog-post {
    padding: 60px 0;
}

.blog-post-header {
    margin-bottom: 40px;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.breadcrumbs a {
    color: #6c5ce7;
    text-decoration: none;
}

.blog-post-header h1 {
    font-size: 2.2rem;
    color: #2d3436;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    color: #7f8c8d;
    font-size: 0.9rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #dfe6e9;
}

.blog-post-rating {
    color: #fdcb6e;
    font-weight: bold;
}

.blog-post-image {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 8px;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-content h2 {
    font-size: 1.6rem;
    color: #2d3436;
    margin: 30px 0 15px;
}

.blog-post-content p {
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 20px;
}

.blog-post-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-post-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.download-cta {
    background: #f1f2f6;
    padding: 25px;
    border-radius: 10px;
    margin: 40px 0;
    border-left: 4px solid #6c5ce7;
}

.download-cta h3 {
    margin-top: 0;
    color: #2d3436;
}

.download-btn {
    display: block;
    text-align: center;
    padding: 15px;
    background: #6c5ce7;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    margin: 25px 0;
    transition: background 0.3s;
}

.download-btn:hover {
    background: #5649c0;
}

.download-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.steps {
    margin: 30px 0;
}

.step {
    display: flex;
    margin-bottom: 25px;
}

.step-number {
    flex: 0 0 40px;
    height: 40px;
    background: #6c5ce7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
}

.step-content h3 {
    margin: 0 0 8px;
    color: #2d3436;
}

.user-reviews {
    margin: 40px 0;
}

.user-review {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.user-review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.user-name {
    font-weight: bold;
    color: #2d3436;
}

.user-rating {
    color: #fdcb6e;
}

.user-review-meta {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-top: 10px;
}

/* Blog Sidebar */
.blog-sidebar {
    margin-top: 40px;
}

.sidebar-widget {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #2d3436;
    padding-bottom: 10px;
    border-bottom: 1px solid #dfe6e9;
}

.popular-downloads {
    list-style: none;
    padding: 0;
}

.popular-downloads li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #dfe6e9;
}

.popular-downloads li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-downloads a {
    color: #636e72;
    text-decoration: none;
    transition: color 0.3s;
}

.popular-downloads a:hover {
    color: #6c5ce7;
}

.update-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #dfe6e9;
}

.update-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.update-date {
    display: inline-block;
    width: 50px;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.update-item a {
    color: #636e72;
    text-decoration: none;
    transition: color 0.3s;
}

.update-item a:hover {
    color: #6c5ce7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
}

/* Responsive */
@media (min-width: 992px) {
    .blog-post .container {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
    
    .blog-sidebar {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card-image {
        height: 250px;
    }
    
    .blog-post-header h1 {
        font-size: 1.8rem;
    }
}
/* Blog Post Styles */
.blog-post {
    padding: 40px 0;
    line-height: 1.6;
    color: #333;
}

.blog-post-header {
    margin-bottom: 30px;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.breadcrumbs a {
    color: #6c5ce7;
    text-decoration: none;
}

.blog-post h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2d3436;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.rating {
    color: #f39c12;
    font-weight: bold;
}

.featured-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.content {
    max-width: 800px;
    margin: 0 auto;
}

.content h2 {
    font-size: 1.6rem;
    margin: 30px 0 15px;
    color: #2d3436;
}

.content p, .content ul {
    margin-bottom: 20px;
}

.content ul {
    padding-left: 20px;
}

.content li {
    margin-bottom: 8px;
}

/* CTA Box */
.cta-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #6c5ce7;
}

.cta-box h3 {
    margin-top: 0;
    color: #2d3436;
}

.download-btn {
    display: block;
    text-align: center;
    padding: 15px;
    background: #6c5ce7;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    margin: 20px 0;
    transition: background 0.3s;
}

.download-btn:hover {
    background: #5649c0;
}

.file-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
}

/* Steps */
.steps {
    margin: 30px 0;
}

.step {
    display: flex;
    margin-bottom: 20px;
}

.step-number {
    flex: 0 0 40px;
    height: 40px;
    background: #6c5ce7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
}

.step-content h3 {
    margin: 0 0 8px;
    color: #2d3436;
}

/* Testimonials */
.testimonials {
    margin: 40px 0;
}

.testimonial {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.user-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.name {
    font-weight: bold;
}

.stars {
    color: #f39c12;
}

/* Warning Box */
.warning-box {
    background: #fff8e1;
    padding: 15px;
    border-left: 4px solid #ffc107;
    margin: 20px 0;
}

/* Tables */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.comparison-table th, .comparison-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.comparison-table th {
    background: #f8f9fa;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-post h1 {
        font-size: 1.8rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
    }
    
    .rating {
        margin-top: 5px;
    }
}