/* Blog Section Styles */
.blog-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.blog-post {
    background-color: white;
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--secondary-color);
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--dark-color);
    font-weight: 500;
}

.post-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.post-meta {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-meta i {
    color: var(--primary-color);
    margin-right: 0.3rem;
}

.post-thumbnail {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.post-thumbnail:hover img {
    transform: scale(1.02);
}

.img-caption {
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-align: center;
    padding: 0.5rem 0;
    font-style: italic;
}

.post-content {
    line-height: 1.8;
    color: var(--dark-color);
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul, 
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.post-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.post-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--dark-color);
}

.feature-box {
    background: rgba(74, 175, 70, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(74, 175, 70, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 1.5rem;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blockquote {
    border-left: 4px solid var(--primary-color);
    background: rgba(74, 175, 70, 0.05);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.blockquote h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.blockquote ul {
    padding-left: 1rem;
}

.blockquote li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.blockquote li:before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .blog-section {
        padding: 3rem 0;
    }
    
    .blog-post {
        padding: 2rem;
    }
    
    .post-title {
        font-size: 1.8rem;
    }
    
    .post-content h2 {
        font-size: 1.5rem;
    }
    
    .post-content h3 {
        font-size: 1.2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}