body {
    background-color: #fafbfc;
    overflow-x: hidden;
}

.blog-section {
    padding: 40px 20px 80px;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.header-section {
    text-align: center;
    margin-bottom: 50px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #E8F5E9;
    color: #118B33;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.header-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1A1A1A;
}

.header-section h2 span {
    color: #118B33;
}

.header-section p {
    color: #666666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

.blog-divider {
    width: 50px;
    height: 3px;
    background-color: #118B33;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image-wrapper {
    position: relative;
    height: 220px;
    padding: 15px;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.blog-card-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: #118B33;
    fill: none;
}

.blog-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 13px;
}

.blog-category {
    background-color: #F0FDF4;
    color: #118B33;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 500;
}

.blog-date {
    color: #666666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card-description {
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.blog-read-more {
    color: #118B33;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-read-more:hover {
    text-decoration: underline;
}

.footer-action {
    text-align: center;
}

.btn-primary {
    background-color: #118B33;
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #0d7028;
}

.hero-bg-shape {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(15%, -50%);
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #e0f2fe 0%, #dcfce7 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
}

.clip-circle {
    clip-path: circle(40%);
}

@media (max-width: 768px) {
    .header-section h2 {
        font-size: 32px;
    }
}