body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f2;
    color: #333;
}

.blog-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #4b6b2d;
}

.blog-header p {
    font-size: 1rem;
    color: #777;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.org-blog-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.org-blog-card img {
    width: 100%!important;
    height: 200px!important;
    object-fit: cover!important;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #4b6b2d;
}

.blog-content p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}

.blog-content a {
    text-decoration: none;
    color: #4b6b2d;
    font-weight: bold;
    transition: color 0.3s;
}

.blog-content a:hover {
    color: #88a364;
}

@media (max-width: 600px) {
    .blog-content h3 {
        font-size: 1.1rem;
    }

    .blog-content p {
        font-size: 0.85rem;
    }
}