.gov-section-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
    font-family: inherit;
}

.gov-left-col {
    flex: 1;
    min-width: 0;
}

.gov-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.gov-right-col {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.gov-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.gov-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gov-box {
    padding: 24px;
    border-radius: 8px;
    background-color: #f9f9f9;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.gov-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.gov-box-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.gov-box-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

@media (max-width: 768px) {
    .gov-section-wrapper {
        flex-direction: column;
    }
    .gov-grid {
        grid-template-columns: 1fr;
    }
}
